Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-03 08:57:54

0001 // Copyright (c) ONNX Project Contributors
0002 
0003 /*
0004  * SPDX-License-Identifier: Apache-2.0
0005  */
0006 
0007 // Adapter indicating compatibility of op between opsets with separate
0008 // definitions
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 } // namespace version_conversion
0030 } // namespace ONNX_NAMESPACE