13 if (nodeproto.input_size() != 1 || nodeproto.output_size() != 1)
14 std::runtime_error(
"TMVA::SOFIE ONNX Parser Not op has invalid input or output size ");
16 std::string input_name = nodeproto.input(0);
21 throw std::runtime_error(
"TMVA::SOFIE ONNX Parser Not op has invalid input type " +
ConvertTypeToString(input_type));
24 std::runtime_error(
"TMVA::SOFIE ONNX Parser Not op has input tensor " + input_name +
25 " but its type is not yet registered");
28 std::string output_name = nodeproto.output(0);
29 std::unique_ptr<ROperator> op(
new ROperator_Not(input_name, output_name));