Commit 9e95b233 authored by umangyadav's avatar umangyadav
Browse files

formatting

parent 80e61fe2
...@@ -287,10 +287,12 @@ struct miopen_convolution ...@@ -287,10 +287,12 @@ struct miopen_convolution
solution_ptr = miopen_solution{ptr}; solution_ptr = miopen_solution{ptr};
if(status != miopenStatusSuccess) if(status != miopenStatusSuccess)
MIGRAPHX_THROW("MIOpen " + op.name() + ": loading convolution solution failed"); MIGRAPHX_THROW("MIOpen " + op.name() + ": loading convolution solution failed");
if(enabled(MIGRAPHX_ENABLE_TUNING_WARNINGS{})) { if(enabled(MIGRAPHX_ENABLE_TUNING_WARNINGS{}))
{
if(status == miopenStatusVersionMismatch) if(status == miopenStatusVersionMismatch)
{ {
std::clog << "MIOpen convolution was compiled with different MIOpen version. " std::clog
<< "MIOpen convolution was compiled with different MIOpen version. "
"But this machine has MIOpen version: " "But this machine has MIOpen version: "
<< get_miopen_version() << ", Performance may suffer.\ << get_miopen_version() << ", Performance may suffer.\
Consider re-compiling the model with environment variable MIOPEN_FIND_ENFORCE=3 to re-tune the model." Consider re-compiling the model with environment variable MIOPEN_FIND_ENFORCE=3 to re-tune the model."
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment