#pragma once #include #include #include namespace torch::jit { const int ONNX_OPSET_9 = 9; const int ONNX_OPSET_10 = 10; const int ONNX_OPSET_11 = 11; const int ONNX_OPSET_12 = 12; const int ONNX_OPSET_13 = 13; const int ONNX_OPSET_14 = 14; namespace onnx_constant_fold { at::Tensor IntToTensor(int64_t value); std::optional runTorchBackendForOnnx( const Node* node, std::vector& inputTensorValues, int opset_version); } // namespace onnx_constant_fold void ConstantFoldONNX( std::shared_ptr& g, std::map& paramDict, int opset_version); } // namespace torch::jit