Skip to content

Commit eae424b

Browse files
committed
Fix int types for heevx
1 parent 013c518 commit eae424b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ext/MatrixAlgebraKitAMDGPUExt/yarocsolver.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -569,10 +569,10 @@ for (heevd, heev, heevx, heevj, elty, relty) in
569569
end
570570
dh = rocBLAS.handle()
571571
abstol = -one($relty)
572-
m = Ref{BlasInt}()
572+
m = Ref{Cint}()
573573
ldv = max(1, stride(V, 2))
574574
work = ROCVector{$relty}(undef, n)
575-
ifail = ROCVector{BlasInt}(undef, n)
575+
ifail = ROCVector{Cint}(undef, n)
576576
dev_info = ROCVector{Cint}(undef, 1)
577577
roc_uplo = convert(rocSOLVER.rocblas_fill, uplo)
578578
$heevx(dh, jobz, range, roc_uplo, n, A, lda, vl, vu, il, iu, abstol, m, W, V, ldv, ifail, dev_info)

0 commit comments

Comments
 (0)