JuliaGPU/AMDGPU.jl

i get error when i call AMDGPU.rocBLAS.gemm_strided_batched!

radudiaconu0 opened this issue · 0 comments

i get ERROR: UndefVarError: rocblas_sgemmStridedBatched not defined when calling
AMDGPU.rocBLAS.gemm_strided_batched!

C1= 'N'
C2= 'N'
alpha::Float32 = 1.0

a = randn(3, 3, 3) |> gpu
B = rand(Float32, 3,3,3) |> gpu
beta::Float32 = 0.0
C =  rand(Float32, 3, 3, 3) |> gpu

AMDGPU.rocBLAS.gemm_strided_batched!(C1, C2, alpha, a, B, beta, C)

Why is that? A bug in rocBlas