Skip to content

Commit 6bb8fe2

Browse files
committed
Add CUSOLVERRF tests to GPU test suite
Include CUSOLVERRF tests in the GPU test suite when the package is available. The tests are conditionally included to avoid failures when CUSOLVERRF.jl is not installed. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 35073d8 commit 6bb8fe2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test/gpu/cuda.jl

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,3 +106,10 @@ end
106106
prob = LinearProblem(A_gpu_csr, b_gpu)
107107
sol = solve(prob)
108108
end
109+
110+
# Include CUSOLVERRF tests if available
111+
if Base.find_package("CUSOLVERRF") !== nothing
112+
@testset "CUSOLVERRF" begin
113+
include("cusolverrf.jl")
114+
end
115+
end

0 commit comments

Comments
 (0)