From 9476b2107bbcac8e53c5c27e7658cc46e76173a6 Mon Sep 17 00:00:00 2001 From: Alexis Montoison Date: Tue, 28 Nov 2023 00:01:05 -0600 Subject: [PATCH] More fixes --- ext/CUDA/operators.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/CUDA/operators.jl b/ext/CUDA/operators.jl index 7fb8258..f5fee4a 100644 --- a/ext/CUDA/operators.jl +++ b/ext/CUDA/operators.jl @@ -13,7 +13,7 @@ size(A::CUDA_KrylovOperator) = (A.m, A.n) for (SparseMatrixType, BlasType) in ((:(CuSparseMatrixCSR{T}), :BlasFloat), (:(CuSparseMatrixCSC{T}), :BlasFloat), - (:(CuSparseMatrixCOO{T}), :BlasFloat))) + (:(CuSparseMatrixCOO{T}), :BlasFloat)) @eval begin function KP.KrylovOperator(A::$SparseMatrixType; nrhs::Int=1, transa::Char='N') where T <: $BlasType m,n = size(A)