Skip to content

Commit e04b8a0

Browse files
committed
Fix number of nodes in benchmark
1 parent d2d71bc commit e04b8a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

benchmark/benchmarks.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function benchmark_utilities()
9292
samples=300,
9393
seconds=10.0,
9494
setup=(
95-
n=rand(5:30);
95+
n=20;
9696
tree=gen_random_tree_fixed_size(n, $options, $nfeatures, Float32)
9797
)
9898
)
@@ -103,7 +103,7 @@ function benchmark_utilities()
103103
samples=300,
104104
seconds=10.0,
105105
setup=(
106-
n=rand(5:30);
106+
n=20;
107107
tree=gen_random_tree_fixed_size(n, $options, $nfeatures, Float32)
108108
)
109109
)

0 commit comments

Comments
 (0)