aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/array_small_or.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/array_small_or.yml')
-rw-r--r--benchmark/array_small_or.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/benchmark/array_small_or.yml b/benchmark/array_small_or.yml
new file mode 100644
index 0000000000..9338bd5dbd
--- /dev/null
+++ b/benchmark/array_small_or.yml
@@ -0,0 +1,20 @@
+benchmark:
+ array_small_or: |
+ MIN_SIZE = ENV.fetch('SMALL_ARRAY_MIN', 0).to_i
+ MAX_SIZE = ENV.fetch('SMALL_ARRAY_MAX', 16).to_i
+ ITERATIONS = ENV.fetch('SMALL_ARRAY_ITERATIONS', 100).to_i
+
+ ARRAYS = (MIN_SIZE..MAX_SIZE).map do |size1|
+ (MIN_SIZE..MAX_SIZE).map do |size2|
+ [Array.new(size1) { rand(MAX_SIZE) }, Array.new(size2) { rand(MAX_SIZE) }]
+ end
+ end
+
+ ITERATIONS.times do
+ ARRAYS.each do |group|
+ group.each do |arr1, arr2|
+ arr1 | arr2
+ end
+ end
+ end
+loop_count: 1