We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21d1b0a commit 72bb031Copy full SHA for 72bb031
ext/LinearSolveCUDAExt.jl
@@ -12,7 +12,7 @@ function SciMLBase.solve!(cache::LinearSolve.LinearCache, alg::CudaOffloadFactor
12
cache.cacheval = fact
13
cache.isfresh = false
14
end
15
- y = Array(ldiv!(cache.u, cache.cacheval, CUDA.CuArray(cache.u)))
+ y = Array(ldiv!(CUDA.CuArray(cache.u), cache.cacheval, CUDA.CuArray(cache.b)))
16
SciMLBase.build_linear_solution(alg, y, nothing, cache)
17
18
0 commit comments