File tree 1 file changed +3
-3
lines changed
onnxruntime/core/providers/migraphx
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1007,14 +1007,14 @@ Status MIGraphXExecutionProvider::Compile(const std::vector<FusedNodeAndGraph>&
1007
1007
model_proto->SerializeToString (onnx_string_buffer);
1008
1008
1009
1009
if (dump_model_ops_) {
1010
- std::string onnx_name = fused_node-> Name () + " .onnx" ;
1010
+ std::string onnx_name = fused_node. Name () + " .onnx" ;
1011
1011
std::ofstream ofs (onnx_name);
1012
1012
ofs.write (onnx_string_buffer.data (), onnx_string_buffer.size ());
1013
1013
ofs.close ();
1014
1014
}
1015
1015
1016
1016
std::vector<std::string> input_names, output_names;
1017
- no_input_shape = no_input_shape or get_input_output_names (* graph_body_viewer, input_names, output_names);
1017
+ no_input_shape = no_input_shape or get_input_output_names (graph_body_viewer, input_names, output_names);
1018
1018
1019
1019
// by parsing the model_proto, create a program corresponding to
1020
1020
// the input fused_node
@@ -1208,4 +1208,4 @@ Status MIGraphXExecutionProvider::Compile(const std::vector<FusedNodeAndGraph>&
1208
1208
return Status::OK ();
1209
1209
}
1210
1210
1211
- } // namespace onnxruntime
1211
+ } // namespace onnxruntime
You can’t perform that action at this time.
0 commit comments