@@ -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
7172void symm (sycl::queue& queue, oneapi::math::side left_right, oneapi::math::uplo upper_lower,
0 commit comments