Skip to content

Commit 579888f

Browse files
Merge pull request #538 from SciML/ChrisRackauckas-patch-3
Remove rand from precompilation workloads
2 parents 9a4c573 + 2c6390b commit 579888f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/precompilation.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ using PrecompileTools
33
@setup_workload begin
44
@compile_workload begin
55
# VectorOfArray with Vector{Float64}
6-
u_vec = [rand(3) for _ in 1:5]
6+
u_vec = [ones(3) for _ in 1:5]
77
va = VectorOfArray(u_vec)
88

99
# Basic indexing operations

0 commit comments

Comments
 (0)