Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
d6b0684
1
Parent(s):
d2d05bb
Remove deprecated benchmarks
Browse files- benchmark.jl +0 -32
- benchmark.sh +0 -1
- benchmarktimes.txt +0 -9
benchmark.jl
DELETED
@@ -1,32 +0,0 @@
|
|
1 |
-
include("paralleleureqa.jl")
|
2 |
-
using BenchmarkTools
|
3 |
-
|
4 |
-
fullRun(3,
|
5 |
-
npop=100,
|
6 |
-
annealing=true,
|
7 |
-
ncyclesperiteration=100,
|
8 |
-
fractionReplaced=0.1f0,
|
9 |
-
verbosity=0,
|
10 |
-
topn=10
|
11 |
-
)
|
12 |
-
|
13 |
-
t = @benchmark(fullRun(3,
|
14 |
-
npop=100,
|
15 |
-
annealing=true,
|
16 |
-
ncyclesperiteration=100,
|
17 |
-
fractionReplaced=0.1f0,
|
18 |
-
verbosity=0,
|
19 |
-
topn=10
|
20 |
-
), evals=10)
|
21 |
-
|
22 |
-
tnoanneal = @benchmark(fullRun(3,
|
23 |
-
npop=100,
|
24 |
-
annealing=false,
|
25 |
-
ncyclesperiteration=100,
|
26 |
-
fractionReplaced=0.1f0,
|
27 |
-
verbosity=0,
|
28 |
-
topn=10
|
29 |
-
), evals=10)
|
30 |
-
|
31 |
-
println("The median time is $(median(t)) with annealing, $(median(tnoanneal)) without")
|
32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
benchmark.sh
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
julia --threads 8 -O3 benchmark.jl
|
|
|
|
benchmarktimes.txt
DELETED
@@ -1,9 +0,0 @@
|
|
1 |
-
The median time is TrialEstimate(3.136 s)
|
2 |
-
The median time is TrialEstimate(435.125 ms)
|
3 |
-
The median time is TrialEstimate(422.519 ms) with annealing, TrialEstimate(361.631 ms) without
|
4 |
-
The median time is TrialEstimate(985.015 ms) with annealing, TrialEstimate(857.946 ms) without
|
5 |
-
The median time is TrialEstimate(690.542 ms) with annealing, TrialEstimate(581.777 ms) without
|
6 |
-
The median time is TrialEstimate(298.679 ms) with annealing, TrialEstimate(327.586 ms) without
|
7 |
-
The median time is TrialEstimate(336.991 ms) with annealing, TrialEstimate(341.092 ms) without
|
8 |
-
The median time is TrialEstimate(302.600 ms) with annealing, TrialEstimate(308.811 ms) without
|
9 |
-
The median time is TrialEstimate(421.741 ms) with annealing, TrialEstimate(425.692 ms) without
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|