Skip to content

Commit 3a7733f

Browse files
committed
Apply clang-format
1 parent 55352fe commit 3a7733f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/blas/backends/generic/generic_level3.cxx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ void gemm(sycl::queue& queue, oneapi::math::transpose transa, oneapi::math::tran
3232
sycl::buffer<std::complex<real_t>, 1>& a, std::int64_t lda,
3333
sycl::buffer<std::complex<real_t>, 1>& b, std::int64_t ldb, std::complex<real_t> beta,
3434
sycl::buffer<std::complex<real_t>, 1>& c, std::int64_t ldc) {
35-
#ifndef BLAS_ENABLE_COMPLEX
36-
throw unimplemented("blas", "onemath_sycl_blas gemm with complex data type", "- unsupported compiler");
37-
#else
35+
#ifndef BLAS_ENABLE_COMPLEX
36+
throw unimplemented("blas", "onemath_sycl_blas gemm with complex data type",
37+
"- unsupported compiler");
38+
#else
3839
using sycl_complex_real_t = sycl::ext::oneapi::experimental::complex<real_t>;
3940
if (transa == oneapi::math::transpose::conjtrans ||
4041
transb == oneapi::math::transpose::conjtrans) {
@@ -65,7 +66,7 @@ void gemm(sycl::queue& queue, oneapi::math::transpose transa, oneapi::math::tran
6566
sycl::accessor<std::complex<real_t>, 1, sycl::access::mode::write> out_acc(c);
6667
sycl::accessor<sycl_complex_real_t, 1, sycl::access::mode::read> out_pb_acc(c_pb);
6768
queue.copy(out_pb_acc, out_acc);
68-
#endif
69+
#endif
6970
}
7071

7172
void symm(sycl::queue& queue, oneapi::math::side left_right, oneapi::math::uplo upper_lower,

0 commit comments

Comments
 (0)