13 std::vector<std::string> inputs;
14 size_t size = nodeproto.input_size();
16 for (
int i = 0; i < nodeproto.input_size(); ++i) {
17 auto input_name = nodeproto.input(i);
24 throw std::runtime_error(
"TMVA::SOFIE ONNX Parser Max op has input tensor" + input_name +
25 " but its type is not yet registered");
27 inputs.emplace_back(input_name);
30 std::unique_ptr<ROperator> op;
31 std::string output_name = nodeproto.output(0);
36 throw std::runtime_error(
"TMVA::SOFIE - Unsupported - Operator Max does not yet support input type " +
ConvertTypeToString(input_type));