Skip to content

Commit 2988f49

Browse files
committed
1 parent 2687750 commit 2988f49

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/blas/wrappers.jl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -716,10 +716,10 @@ end
716716

717717
## (GE) general matrix-matrix multiplication strided batched
718718
for (fname, elty) in
719-
((:rocblas_dgemmStridedBatched,:Float64),
720-
(:rocblas_sgemmStridedBatched,:Float32),
721-
(:rocblas_zgemmStridedBatched,:ComplexF64),
722-
(:rocblas_cgemmStridedBatched,:ComplexF32))
719+
((:rocblas_dgemm_strided_batched,:Float64),
720+
(:rocblas_sgemm_strided_batched,:Float32),
721+
(:rocblas_zgemm_strided_batched,:ComplexF64),
722+
(:rocblas_cgemm_strided_batched,:ComplexF32))
723723
@eval begin
724724
function gemm_strided_batched!(
725725
transA::Char, transB::Char, alpha::($elty),
@@ -1020,10 +1020,10 @@ end
10201020

10211021
## (TR) triangular triangular matrix solution batched
10221022
for (fname, elty) in
1023-
((:rocblas_dtrsmBatched,:Float64),
1024-
(:rocblas_strsmBatched,:Float32),
1025-
(:rocblas_ztrsmBatched,:ComplexF64),
1026-
(:rocblas_ctrsmBatched,:ComplexF32))
1023+
((:rocblas_dtrsm_batched,:Float64),
1024+
(:rocblas_strsm_batched,:Float32),
1025+
(:rocblas_ztrsm_batched,:ComplexF64),
1026+
(:rocblas_ctrsm_batched,:ComplexF32))
10271027
@eval begin
10281028
function trsm_batched!(
10291029
side::Char, uplo::Char, transa::Char, diag::Char, alpha::($elty),

0 commit comments

Comments
 (0)