MilesCranmer commited on
Commit
af8beb1
1 Parent(s): 5eeffc0

Update benchmark with more measurements

Browse files
Files changed (2) hide show
  1. README.md +1 -0
  2. benchmark.jl +9 -7
README.md CHANGED
@@ -81,6 +81,7 @@ weights = [8, 1, 1, 1, 2]
81
  - [ ] Create a benchmark for accuracy
82
  - [ ] Record hall of fame
83
  - [ ] Optionally (with hyperparameter) migrate the hall of fame, rather than current bests
 
84
  - [ ] Create struct to pass through all hyperparameters, instead of treating as constants
85
  - Make sure doesn't affect performance
86
  - [ ] Hyperparameter tune
 
81
  - [ ] Create a benchmark for accuracy
82
  - [ ] Record hall of fame
83
  - [ ] Optionally (with hyperparameter) migrate the hall of fame, rather than current bests
84
+ - [ ] Test performance of reduced precision integers
85
  - [ ] Create struct to pass through all hyperparameters, instead of treating as constants
86
  - Make sure doesn't affect performance
87
  - [ ] Hyperparameter tune
benchmark.jl CHANGED
@@ -5,10 +5,12 @@ fullRun(1,
5
  ncyclesperiteration=1000,
6
  fractionReplaced=0.1f0,
7
  verbosity=0)
8
- @time fullRun(3,
9
- npop=100,
10
- annealing=true,
11
- ncyclesperiteration=1000,
12
- fractionReplaced=0.1f0,
13
- verbosity=0
14
- )
 
 
 
5
  ncyclesperiteration=1000,
6
  fractionReplaced=0.1f0,
7
  verbosity=0)
8
+ @time for i=1:5
9
+ fullRun(3,
10
+ npop=100,
11
+ annealing=true,
12
+ ncyclesperiteration=100,
13
+ fractionReplaced=0.1f0,
14
+ verbosity=0
15
+ )
16
+ end