summaryrefslogtreecommitdiff
path: root/benchmark/array_shift.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/array_shift.yml')
-rw-r--r--benchmark/array_shift.yml17
1 files changed, 0 insertions, 17 deletions
diff --git a/benchmark/array_shift.yml b/benchmark/array_shift.yml
deleted file mode 100644
index 713c542024..0000000000
--- a/benchmark/array_shift.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-benchmark:
- array_shift: |
- require 'benchmark'
-
- Benchmark.bm do |x|
- [10_000,1_000_000,100_000_000].each do |n|
- ary = Array.new(n,0)
- GC.start
- x.report("#{n}:shift"){ ary.shift }
- (0..4).each do |i|
- ary = Array.new(n,0)
- GC.start
- x.report("#{n}:shift(#{i})"){ ary.shift(i) }
- end
- end
- end
-loop_count: 1