File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
sycl/include/sycl/ext/oneapi/matrix Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -513,9 +513,10 @@ void joint_matrix_load(
513
513
(void )res;
514
514
(void )src;
515
515
(void )stride;
516
- throw runtime_error (" When using SYCL_EXT_ONEAPI_MATRIX=3 joint_matrix_load is "
517
- " only supported by CUDA devices" ,
518
- PI_INVALID_DEVICE);
516
+ throw runtime_error (
517
+ " When using SYCL_EXT_ONEAPI_MATRIX=3 joint_matrix_load is "
518
+ " only supported by CUDA devices" ,
519
+ PI_INVALID_DEVICE);
519
520
#endif // defined(__SYCL_DEVICE_ONLY__) && defined(__NVPTX__)
520
521
}
521
522
@@ -534,9 +535,10 @@ void joint_matrix_store(Group sg,
534
535
(void )src;
535
536
(void )dst;
536
537
(void )stride;
537
- throw runtime_error (" When using SYCL_EXT_ONEAPI_MATRIX=3 joint_matrix_store is "
538
- " only supported by CUDA devices" ,
539
- PI_INVALID_DEVICE);
538
+ throw runtime_error (
539
+ " When using SYCL_EXT_ONEAPI_MATRIX=3 joint_matrix_store is "
540
+ " only supported by CUDA devices" ,
541
+ PI_INVALID_DEVICE);
540
542
#endif // defined(__SYCL_DEVICE_ONLY__) && defined(__NVPTX__)
541
543
}
542
544
You can’t perform that action at this time.
0 commit comments