"src/git@developer.sourcefind.cn:gaoqiong/migraphx.git" did not exist on "1e0d45517be6c6548c86d31fdd98d5f1cbbd3a2b"
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 ...@@ -144,10 +144,9 @@ shape miopen_convolution::find(context& ctx, const shape& output_shape, std::vec
if(status != miopenStatusSuccess) if(status != miopenStatusSuccess)
MIGRAPHX_THROW("MIOpen Convolution: get solution failed"); MIGRAPHX_THROW("MIOpen Convolution: get solution failed");
const auto& best_solution = solutions.front(); const auto& best_solution = solutions.front();
solution_id = best_solution.solution_id; solution_id = best_solution.solution_id;
algo = best_solution.algorithm; algo = best_solution.algorithm;
return shape{shape::int8_type, {best_solution.workspace_size}}; 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 ...@@ -145,8 +145,8 @@ shape miopen_deconvolution::find(context& ctx, const shape& output_shape, std::v
MIGRAPHX_THROW("MIOpen Deconvolution: get solution failed"); MIGRAPHX_THROW("MIOpen Deconvolution: get solution failed");
const auto& best_solution = solutions.front(); const auto& best_solution = solutions.front();
solution_id = best_solution.solution_id; solution_id = best_solution.solution_id;
algo = best_solution.algorithm; algo = best_solution.algorithm;
return shape{shape::int8_type, {best_solution.workspace_size}}; 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