Skip to content

Commit d66023e

Browse files
Update highlevel.jl to include strided for potrf
1 parent 87de2f9 commit d66023e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solver/highlevel.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ end
630630

631631
for elty in (:Float32, :Float64, :ComplexF32, :ComplexF64)
632632
@eval begin
633-
LinearAlgebra.LAPACK.potrf!(uplo::Char, A::ROCMatrix{$elty}) = rocSOLVER.potrf!(uplo, A)
633+
LinearAlgebra.LAPACK.potrf!(uplo::Char, A::StridedROCMatrix{$elty}) = rocSOLVER.potrf!(uplo, A)
634634
LinearAlgebra.LAPACK.potrs!(uplo::Char, A::ROCMatrix{$elty}, B::ROCVecOrMat{$elty}) = rocSOLVER.potrs!(uplo, A, B)
635635
LinearAlgebra.LAPACK.sytrf!(uplo::Char, A::ROCMatrix{$elty}) = rocSOLVER.sytrf!(uplo, A)
636636
LinearAlgebra.LAPACK.sytrf!(uplo::Char, A::ROCMatrix{$elty}, ipiv::ROCVector{Cint}) = rocSOLVER.sytrf!(uplo, A, ipiv)

0 commit comments

Comments
 (0)