"benchmark/git@developer.sourcefind.cn:change/sglang.git" did not exist on "8ff870bf3e6a87d2b12d4d01820c0e86de194664"
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