Commit f6d77130 authored by Shucai Xiao's avatar Shucai Xiao
Browse files

clang format

parent 8b3bf2fe
...@@ -454,7 +454,7 @@ argument miopen_gemm::compute(context& ctx, ...@@ -454,7 +454,7 @@ argument miopen_gemm::compute(context& ctx,
auto to_pointer = [&](auto&& arg, std::size_t offset = 0) { auto to_pointer = [&](auto&& arg, std::size_t offset = 0) {
return to_rocblas_type(as.from(arg.data() + offset)); return to_rocblas_type(as.from(arg.data() + offset));
}; };
if (num_matrices > 1) if(num_matrices > 1)
{ {
generic_rocblas_batched_gemm( generic_rocblas_batched_gemm(
as, as,
...@@ -495,9 +495,9 @@ argument miopen_gemm::compute(context& ctx, ...@@ -495,9 +495,9 @@ argument miopen_gemm::compute(context& ctx,
lda, lda,
&beta_r, &beta_r,
to_pointer(args[2], m * n * num_matrices * out_ind), to_pointer(args[2], m * n * num_matrices * out_ind),
ldc); ldc);
} }
}); });
}); });
} }
......
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