File: thread_pool_bench.ml

package info (click to toggle)
ocaml-dune 3.20.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 33,564 kB
  • sloc: ml: 175,178; asm: 28,570; ansic: 5,251; sh: 1,096; lisp: 625; makefile: 148; python: 125; cpp: 48; javascript: 10
file content (47 lines) | stat: -rw-r--r-- 1,028 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
open Dune_thread_pool

let spawn_thread f = ignore (Thread.create f ())

let%bench "almost no-op" =
  let tp = Thread_pool.create ~min_workers:10 ~max_workers:50 ~spawn_thread in
  let tasks = 50_000 in
  let counter = Atomic.make tasks in
  let f () = Atomic.decr counter in
  for _ = 0 to tasks - 1 do
    Thread_pool.task tp ~f
  done;
  while Atomic.get counter > 0 do
    Thread.yield ()
  done
;;

let%bench "syscall" =
  let tp = Thread_pool.create ~min_workers:10 ~max_workers:50 ~spawn_thread in
  let tasks = 50_000 in
  let counter = Atomic.make tasks in
  let f () =
    Unix.sleepf 0.0;
    Atomic.decr counter
  in
  for _ = 0 to tasks - 1 do
    Thread_pool.task tp ~f
  done;
  while Atomic.get counter > 0 do
    Thread.yield ()
  done
;;

let%bench "syscall - no background" =
  let tasks = 50_000 in
  let counter = Atomic.make tasks in
  let f () =
    Unix.sleepf 0.0;
    Atomic.decr counter
  in
  for _ = 0 to tasks - 1 do
    f ()
  done;
  while Atomic.get counter > 0 do
    Thread.yield ()
  done
;;