From 362896e5cc423caf8d043bbf39c35c221e90544e Mon Sep 17 00:00:00 2001 From: Alexis Montoison <35051714+amontoison@users.noreply.github.com> Date: Fri, 19 Apr 2024 17:06:00 -0400 Subject: [PATCH] Update generic.jl --- src/generic.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/generic.jl b/src/generic.jl index a8a258a..e4b6927 100644 --- a/src/generic.jl +++ b/src/generic.jl @@ -66,8 +66,8 @@ function LinearAlgebra.ldlt(A::CuSparseMatrixCSR{T,Cint}; view::Char='F', check return solver end -LinearAlgebra.ldlt(A::Symmetric{T,<:CuSparseMatrixCSR{T,Cint}}) where T <: BlasReal = LinearAlgebra.ldlt(A.data, view=A.uplo) -LinearAlgebra.ldlt(A::Hermitian{T,<:CuSparseMatrixCSR{T,Cint}}) where T <: BlasFloat = LinearAlgebra.ldlt(A.data, view=A.uplo) +LinearAlgebra.ldlt(A::Symmetric{T,<:CuSparseMatrixCSR{T,Cint}}; check = false) where T <: BlasReal = LinearAlgebra.ldlt(A.data, view=A.uplo) +LinearAlgebra.ldlt(A::Hermitian{T,<:CuSparseMatrixCSR{T,Cint}}; check = false) where T <: BlasFloat = LinearAlgebra.ldlt(A.data, view=A.uplo) """ solver = ldlt!(solver::CudssSolver{T}, A::CuSparseMatrixCSR{T,Cint})