Commit 214b313f authored by Paul's avatar Paul
Browse files

Print out guessed value

parent 97456425
...@@ -198,7 +198,9 @@ static std::size_t get_tuning_for(const std::vector<shape>& inputs) ...@@ -198,7 +198,9 @@ static std::size_t get_tuning_for(const std::vector<shape>& inputs)
std::size_t default_value = 4; std::size_t default_value = 4;
if(not w.empty()) if(not w.empty())
default_value = w.front().second; default_value = w.front().second;
return value_of(MIGRAPHX_CK_TUNING_VALUE{}, default_value); auto tuning_val = value_of(MIGRAPHX_CK_TUNING_VALUE{}, default_value);
std::cout << "*********** Warning: CK try tuning: " << tuning_val << std::endl;
return tuning_val;
} }
return it->second; return it->second;
} }
......
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