File indexing completed on 2025-04-03 08:57:54
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #pragma once
0011
0012 #include <memory>
0013 #include <string>
0014
0015 #include "onnx/version_converter/adapters/adapter.h"
0016
0017 namespace ONNX_NAMESPACE {
0018 namespace version_conversion {
0019
0020 struct CompatibleAdapter final : public Adapter {
0021 explicit CompatibleAdapter(const std::string& op_name, const OpSetID& initial, const OpSetID& target)
0022 : Adapter(op_name, initial, target) {}
0023
0024 Node* adapt(std::shared_ptr<Graph>, Node* node) const override {
0025 return node;
0026 }
0027 };
0028
0029 }
0030 }