Commit 6909fcc1 authored by umangyadav's avatar umangyadav
Browse files

formatting

parent fea5c55d
......@@ -144,10 +144,9 @@ shape miopen_convolution::find(context& ctx, const shape& output_shape, std::vec
if(status != miopenStatusSuccess)
MIGRAPHX_THROW("MIOpen Convolution: get solution failed");
const auto& best_solution = solutions.front();
solution_id = best_solution.solution_id;
algo = best_solution.algorithm;
solution_id = best_solution.solution_id;
algo = best_solution.algorithm;
return shape{shape::int8_type, {best_solution.workspace_size}};
}
......
......@@ -145,8 +145,8 @@ shape miopen_deconvolution::find(context& ctx, const shape& output_shape, std::v
MIGRAPHX_THROW("MIOpen Deconvolution: get solution failed");
const auto& best_solution = solutions.front();
solution_id = best_solution.solution_id;
algo = best_solution.algorithm;
solution_id = best_solution.solution_id;
algo = best_solution.algorithm;
return shape{shape::int8_type, {best_solution.workspace_size}};
}
......
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