File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
onnxruntime/core/providers/migraphx Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1152,7 +1152,7 @@ Status MIGraphXExecutionProvider::Compile(const std::vector<FusedNodeAndGraph>&
1152
1152
1153
1153
if (!no_input_shape) {
1154
1154
if (!load_precompiled_model (prog, load_compiled_model_, std::string{load_compiled_path_})) {
1155
- LOGS_DEFAULT (INFO) << " No Input shapes detected quantizing model" ;
1155
+ LOGS_DEFAULT (INFO) << " No input shapes detected quantizing model" ;
1156
1156
prog = migraphx::parse_onnx_buffer (onnx_string_buffer, options);
1157
1157
1158
1158
// Read in the calibration data and map it to an migraphx paramater map for the calibration ops
@@ -1293,7 +1293,7 @@ Status MIGraphXExecutionProvider::Compile(const std::vector<FusedNodeAndGraph>&
1293
1293
// re-compile the program
1294
1294
if (!input_shape_match) {
1295
1295
if (!load_precompiled_model (prog, load_compiled_model_, std::string{load_compiled_path_})) {
1296
- LOGS_DEFAULT (VERBOSE) << " No Input shapes mismatch detected. Recompiling" << std::endl;
1296
+ LOGS_DEFAULT (VERBOSE) << " Input shape mismatch detected. Recompiling" << std::endl;
1297
1297
#ifndef ENABLE_TRAINING_CORE
1298
1298
#if HIP_VERSION_MAJOR > 6 || (HIP_VERSION_MAJOR == 6 && HIP_VERSION_MINOR >= 2)
1299
1299
cmp_options.set_external_data_path (model_path_.has_parent_path () ? model_path_.parent_path ().string () : std::filesystem::current_path ().string ());
You can’t perform that action at this time.
0 commit comments