diff options
author | Ori Bernstein <ori@eigenstate.org> | 2014-09-07 22:44:20 -0400 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2014-09-07 22:44:20 -0400 |
commit | fa9a9dbefc8cf9cdae03303385121481d6e2dfb4 (patch) | |
tree | a28cafb0351b958aa91f20fe06b6055c315b8e3e /bench/intsort.myr | |
parent | 1bf649bb8a77d72a5333d6290776b436c86e3134 (diff) | |
download | mc-fa9a9dbefc8cf9cdae03303385121481d6e2dfb4.tar.gz |
More iterations on intsort.
It's fast enough to need them now.
Diffstat (limited to 'bench/intsort.myr')
-rw-r--r-- | bench/intsort.myr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/intsort.myr b/bench/intsort.myr index 008e6ba..1629985 100644 --- a/bench/intsort.myr +++ b/bench/intsort.myr @@ -6,7 +6,7 @@ const main = { var rng rng = std.mksrng(123) - a = std.slalloc(100_000) + a = std.slalloc(500_000) for i = 0; i < a.len; i++ a[i] = std.rand32(rng) ;; |