"src/vscode:/vscode.git/clone" did not exist on "b7045b1938cb58506a6f8dc8274c971f630d9105"
Commit 744f236c authored by Paul's avatar Paul
Browse files

Format

parent 5c2a9f2e
......@@ -412,11 +412,12 @@ struct ck_gemm_compiler : compiler<ck_gemm_compiler>
}};
}
optional<tuning_config> get_tuning_config(context& ctx, instruction_ref ins, const operation& op) const
optional<tuning_config>
get_tuning_config(context& ctx, instruction_ref ins, const operation& op) const
{
tuning_config tc;
auto shapes = to_shapes(ins->inputs());
auto problem = create_problem(shapes, create_settings(ins, op));
auto shapes = to_shapes(ins->inputs());
auto problem = create_problem(shapes, create_settings(ins, op));
auto solutions = problem.GetSolutions(ctx.get_current_device().get_gfx_name());
tc.solutions.resize(solutions.size());
std::iota(tc.solutions.begin(), tc.solutions.end(), 0);
......
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