Skip to content

Commit f1c31d5

Browse files
fix test combining
1 parent af4d43b commit f1c31d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/core_resizing.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ df1 = ForwardDiff.derivative(τ -> claytonsample!(stod, τ, 0.0), 0.3)
2525
@test size(randmat) == size(df1)
2626

2727
stod = FixedSizeDiffCache(sto)
28-
ForwardDiff.derivative-> claytonsample!(stod, τ), 0.3)
28+
ForwardDiff.derivative-> claytonsample!(stod, τ, 0.0), 0.3)
2929
@test size(randmat) == size(df1)
3030

3131
#calculating the jacobian of claytonsample! with respect to τ and α

test/gpu_all.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ prob = ODEProblem{true, SciMLBase.FullSpecialize}(foo, u0, (0.0f0, 1.0f0), (A, c
6060
sol = solve(prob, TRBDF2(chunk_size = chunk_size))
6161
@test sol.retcode == ReturnCode.Success
6262

63-
cache = FixedSizeDiffCache(cu(zeros(5, 5)), chunk_size)
63+
cache = FixedSizeDiffCache(cu(zeros(10, 10)), chunk_size)
6464
prob = ODEProblem{true, SciMLBase.FullSpecialize}(foo, u0, (0.0f0, 1.0f0), (A, cache))
6565
sol = solve(prob, TRBDF2(chunk_size = chunk_size))
6666
@test sol.retcode == ReturnCode.Success

0 commit comments

Comments
 (0)