aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/vm_thread_pass_flood.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/vm_thread_pass_flood.yml')
-rw-r--r--benchmark/vm_thread_pass_flood.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/benchmark/vm_thread_pass_flood.yml b/benchmark/vm_thread_pass_flood.yml
new file mode 100644
index 0000000000..953288ebe4
--- /dev/null
+++ b/benchmark/vm_thread_pass_flood.yml
@@ -0,0 +1,14 @@
+prelude: |
+ # n.b. this is a good test for GVL when pinned to a single CPU
+benchmark:
+ vm_thread_pass_flood: |
+
+ 1000.times{
+ Thread.new{loop{Thread.pass}}
+ }
+
+ i = 0
+ while i<10000
+ i += 1
+ end
+loop_count: 1