Spaces:
Sleeping
Sleeping
File size: 728 Bytes
dc2106c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
// Copyright (c) ONNX Project Contributors
/*
* SPDX-License-Identifier: Apache-2.0
*/
// Adapter indicating compatibility of op between opsets with separate
// definitions
#pragma once
#include <memory>
#include <string>
#include "onnx/version_converter/adapters/adapter.h"
namespace ONNX_NAMESPACE {
namespace version_conversion {
struct CompatibleAdapter final : public Adapter {
explicit CompatibleAdapter(const std::string& op_name, const OpSetID& initial, const OpSetID& target)
: Adapter(op_name, initial, target) {}
Node* adapt(std::shared_ptr<Graph>, Node* node) const override {
return node;
}
};
} // namespace version_conversion
} // namespace ONNX_NAMESPACE
|