diff options
author | Ori Bernstein <ori@eigenstate.org> | 2015-09-22 15:58:37 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2015-09-22 15:58:37 -0700 |
commit | 7b6d31689c011fd8505d1eb96c829e89688d89d2 (patch) | |
tree | 140b7b26500ed196fa2dc42cb6e66f9e2f935dc8 /bench | |
parent | 19d7fac9e6210af527ee1e72de4878d3951c41f6 (diff) | |
download | mc-7b6d31689c011fd8505d1eb96c829e89688d89d2.tar.gz |
Don't try to benchmark the benchmark program.
Diffstat (limited to 'bench')
-rw-r--r-- | bench/runbench.myr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/runbench.myr b/bench/runbench.myr index 74ddfa5..f30691e 100644 --- a/bench/runbench.myr +++ b/bench/runbench.myr @@ -7,7 +7,7 @@ const main = {args : byte[:][:] std.put("Running benchmarks: {} samples per binary\n", Nsamp); tot = 0.0; - for arg in args + for arg in args[1:] tot = tot + timeit(arg) ;; std.put("total:\t{}s\n", tot); |