summaryrefslogtreecommitdiff
path: root/benchmark/io_pipe_rw.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/io_pipe_rw.yml')
-rw-r--r--benchmark/io_pipe_rw.yml17
1 files changed, 0 insertions, 17 deletions
diff --git a/benchmark/io_pipe_rw.yml b/benchmark/io_pipe_rw.yml
deleted file mode 100644
index cd9e6c3826..0000000000
--- a/benchmark/io_pipe_rw.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-prelude: |
- # Measure uncontended GVL performance via read/write with 1:1 threading
- # If we switch to M:N threading, this will benchmark something else...
-benchmark:
- io_pipe_rw: |
- r, w = IO.pipe
- src = '0'.freeze
- dst = String.new
- i = 0
- while i < 1_000_000
- i += 1
- w.write(src)
- r.read(1, dst)
- end
- w.close
- r.close
-loop_count: 1