Skip to content

Commit

Permalink
Reduce probability of test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
devmotion committed Oct 17, 2023
1 parent f97fd0c commit 614fb44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/chol.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ using PDMats: chol_lower, chol_upper
@testset "allocations" begin
d = 100
A = rand(d, d)
C = A'A
C = A'A + I
invC = inv(C)
size_of_one_copy = sizeof(C)
@assert size_of_one_copy > d # ensure the matrix is large enough that few-byte allocations don't matter
Expand Down

0 comments on commit 614fb44

Please sign in to comment.