Organisationsocaml-multicorepicos43f8b9 ()freebsd-14.3-5.4_opam-2.4

freebsd-14.3-5.4_opam-2.4

Link Copied
Code Copied

Logs

2025-12-23 12:50.31: New job: test ocaml-multicore/picos https://github.com/ocaml-multicore/picos.git#refs/heads/add-fair-fifothread-scheduler (43f8b98f91679a1ca75ddf3c4c79ad8aec0b69e7) (freebsd-x86_64:freebsd-14.3-5.4_opam-2.4)
Base: freebsd-14.3-ocaml-5.4
Opam project build


To reproduce locally:


git clone --recursive "https://github.com/ocaml-multicore/picos.git" -b "add-fair-fifothread-scheduler" && cd "picos" && git reset --hard 43f8b98f
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM freebsd-14.3-ocaml-5.4
# freebsd-14.3-5.4_opam-2.4
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/local/bin/opam-2.4 /usr/local/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
WORKDIR /src
RUN sudo chown opam /src
RUN cd ~/opam-repository && (git cat-file -e 55b1099664cdc48c71e3d01d8fdaef4b376ade70 || git fetch origin master) && git reset -q --hard 55b1099664cdc48c71e3d01d8fdaef4b376ade70 && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 picos_std.opam picos_mux.opam picos_meta.opam picos_lwt.opam picos_io_cohttp.opam picos_io.opam picos_aux.opam picos.opam ./
RUN opam pin add -yn picos_std.dev './' && \
opam pin add -yn picos_mux.dev './' && \
opam pin add -yn picos_meta.dev './' && \
opam pin add -yn picos_lwt.dev './' && \
opam pin add -yn picos_io_cohttp.dev './' && \
opam pin add -yn picos_io.dev './' && \
opam pin add -yn picos_aux.dev './' && \
opam pin add -yn picos.dev './'
RUN echo '(lang dune 3.0)' > './dune-project'
ENV DEPS="alcotest.1.9.1 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 backoff.0.1.1 base.v0.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.2.1.0 cohttp.6.2.1 cohttp-lwt.6.2.1 cohttp-lwt-unix.6.2.1 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-npm.1 conf-pkg-config.4 containers.3.16 cppo.1.8.0 csexp.1.5.2 digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0 domain_shims.0.1.0 dscheck.0.5.0 dune.3.20.2 dune-configurator.3.20.2 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.2.1 ipaddr.5.6.1 ipaddr-sexp.5.6.1 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 kdf.1.0.0 logs.0.10.0 lwt.5.9.2 macaddr.5.6.1 magic-mime.1.3.1 mdx.2.5.1 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.3 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 oseq.0.5.1 ppx_derivers.1.2.1 ppx_sexp_conv.v0.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 psq.0.2.1 ptime.1.2.0 qcheck-core.0.90 qcheck-multicoretests-util.0.10 qcheck-stm.0.10 re.1.14.0 result.1.5 rresult.0.7.0 sedlex.3.7 seq.base sexplib0.v0.17.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.1.1 tsort.2.2.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.3.0.0 zarith.1.14"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.4 --depext-only -y picos_std.dev picos_mux.dev picos_meta.dev picos_lwt.dev picos_io_cohttp.dev picos_io.dev picos_aux.dev picos.dev $DEPS
RUN opam install $DEPS
COPY --chown=1000:1000 . /src
RUN opam exec -- dune build @install @check @runtest && rm -rf _build


END-OF-DOCKERFILE
docker build .
END-REPRO-BLOCK


2025-12-23 12:50.31: Using cache hint "ocaml-multicore/picos-freebsd-14.3-ocaml-5.4-freebsd-14.3-5.4_opam-2.4-389e1a8bf5f459d36f9f90f630d52d37"
2025-12-23 12:50.31: Using OBuilder spec:
((from freebsd-14.3-ocaml-5.4)
(comment freebsd-14.3-5.4_opam-2.4)
(user (uid 1000) (gid 1000))
(env CLICOLOR_FORCE 1)
(env OPAMCOLOR always)
(workdir /src)
(run (shell "sudo ln -f /usr/local/bin/opam-2.4 /usr/local/bin/opam"))
(run (shell "opam init --reinit -ni"))
(run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
(workdir /src)
(run (shell "sudo chown opam /src"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 55b1099664cdc48c71e3d01d8fdaef4b376ade70 || git fetch origin master) && git reset -q --hard 55b1099664cdc48c71e3d01d8fdaef4b376ade70 && git log --no-decorate -n1 --oneline && opam update -u"))
(copy (src picos_std.opam picos_mux.opam picos_meta.opam picos_lwt.opam picos_io_cohttp.opam picos_io.opam picos_aux.opam picos.opam)
(dst ./))
(run (network host)
(shell  "opam pin add -yn picos_std.dev './' && \
\nopam pin add -yn picos_mux.dev './' && \
\nopam pin add -yn picos_meta.dev './' && \
\nopam pin add -yn picos_lwt.dev './' && \
\nopam pin add -yn picos_io_cohttp.dev './' && \
\nopam pin add -yn picos_io.dev './' && \
\nopam pin add -yn picos_aux.dev './' && \
\nopam pin add -yn picos.dev './'"))
(run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
(env DEPS "alcotest.1.9.1 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 backoff.0.1.1 base.v0.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.2.1.0 cohttp.6.2.1 cohttp-lwt.6.2.1 cohttp-lwt-unix.6.2.1 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-npm.1 conf-pkg-config.4 containers.3.16 cppo.1.8.0 csexp.1.5.2 digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0 domain_shims.0.1.0 dscheck.0.5.0 dune.3.20.2 dune-configurator.3.20.2 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.2.1 ipaddr.5.6.1 ipaddr-sexp.5.6.1 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 kdf.1.0.0 logs.0.10.0 lwt.5.9.2 macaddr.5.6.1 magic-mime.1.3.1 mdx.2.5.1 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.3 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 oseq.0.5.1 ppx_derivers.1.2.1 ppx_sexp_conv.v0.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 psq.0.2.1 ptime.1.2.0 qcheck-core.0.90 qcheck-multicoretests-util.0.10 qcheck-stm.0.10 re.1.14.0 result.1.5 rresult.0.7.0 sedlex.3.7 seq.base sexplib0.v0.17.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.1.1 tsort.2.2.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.3.0.0 zarith.1.14")
(env CI true)
(env OCAMLCI true)
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update --depexts && opam install --cli=2.4 --depext-only -y picos_std.dev picos_mux.dev picos_meta.dev picos_lwt.dev picos_io_cohttp.dev picos_io.dev picos_aux.dev picos.dev $DEPS"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
(copy (src .) (dst /src))
(run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
)


2025-12-23 12:50.31: Waiting for resource in pool OCluster
2025-12-23 12:50.31: Waiting for worker…
2025-12-23 12:50.31: Got resource from pool OCluster
Building on rosemary
HEAD is now at c279920 Bench with fifothread
HEAD is now at 43f8b98 Bench with fifothread


(from freebsd-14.3-ocaml-5.4)
2025-12-23 12:47.49 ---> using "463e9b939b79b2568bf98b05cff00f85b3ec5717170cf88773a44ae3b08f11e7" from cache


/: (comment freebsd-14.3-5.4_opam-2.4)


/: (user (uid 1000) (gid 1000))


/: (env CLICOLOR_FORCE 1)


/: (env OPAMCOLOR always)


/: (workdir /src)


/src: (run (shell "sudo ln -f /usr/local/bin/opam-2.4 /usr/local/bin/opam"))
2025-12-23 12:47.49 ---> using "3a594302e099be4d1fe17d31961c678e53238e61e9f64fbe865d05a177bbd49f" from cache


/src: (run (shell "opam init --reinit -ni"))
No configuration file found, using built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.


This version of opam requires an update to the layout of /home/opam/.opam from version 2.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.


Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 1 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=1 --global
Format upgrade done.


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2025-12-23 12:47.50 ---> using "966aea62bfa80234ccffa3e603e9d2a2c27a29ab53d209038b434e38821f2fb7" from cache


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
FreeBSD 14.3-RELEASE-p3
The OCaml toplevel, version 5.4.0
2.4.1
2025-12-23 12:47.51 ---> using "901289cfc1072ebb5c56e6766d7e4b0939435c511aca0ca5e37a81de9f740bdb" from cache


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2025-12-23 12:47.51 ---> using "1dc6b19784012bf1d34b6ef08bc9997df686c93fa70b17674c490e435d82e9d9" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 55b1099664cdc48c71e3d01d8fdaef4b376ade70 || git fetch origin master) && git reset -q --hard 55b1099664cdc48c71e3d01d8fdaef4b376ade70 && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch                  master     -> FETCH_HEAD
24866eca47..173460ab35  master     -> origin/master
55b1099664 Merge pull request #29100 from samoht/release-cohttp-v6.2.1


<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from git+file:///home/opam/opam-repository


Already up-to-date.
Nothing to do.
2025-12-23 12:47.52 ---> using "3b7eecdda81eaa8fb68f31294235dd8e61010de2e9e55ac51afc960e78cb9a88" from cache


/src: (copy (src picos_std.opam picos_mux.opam picos_meta.opam picos_lwt.opam picos_io_cohttp.opam picos_io.opam picos_aux.opam picos.opam)
(dst ./))
2025-12-23 12:47.53 ---> using "40f9e61ad8065109dd9f35713369d8ecc30bbb0be6db41e7e9da03c4b1e7bf41" from cache


/src: (run (network host)
(shell  "opam pin add -yn picos_std.dev './' && \
\nopam pin add -yn picos_mux.dev './' && \
\nopam pin add -yn picos_meta.dev './' && \
\nopam pin add -yn picos_lwt.dev './' && \
\nopam pin add -yn picos_io_cohttp.dev './' && \
\nopam pin add -yn picos_io.dev './' && \
\nopam pin add -yn picos_aux.dev './' && \
\nopam pin add -yn picos.dev './'"))
[picos_std.dev] synchronised (file:///src)
picos_std is now pinned to file:///src (version dev)
[picos_mux.dev] synchronised (file:///src)
picos_mux is now pinned to file:///src (version dev)
[picos_meta.dev] synchronised (file:///src)
picos_meta is now pinned to file:///src (version dev)
[picos_lwt.dev] synchronised (file:///src)
picos_lwt is now pinned to file:///src (version dev)
[picos_io_cohttp.dev] synchronised (file:///src)
picos_io_cohttp is now pinned to file:///src (version dev)
[picos_io.dev] synchronised (file:///src)
picos_io is now pinned to file:///src (version dev)
[picos_aux.dev] synchronised (file:///src)
picos_aux is now pinned to file:///src (version dev)
[picos.dev] synchronised (file:///src)
picos is now pinned to file:///src (version dev)
2025-12-23 12:47.53 ---> using "b56cdab527df1530c5028e2c7de44aa7865435d8c452c03ddee01f190d1153d4" from cache


/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-12-23 12:47.55 ---> using "19eeb8bb146e1dc01819833c2437bc531642611b691c83dc2c4a22d373a8fa5f" from cache


/src: (env DEPS "alcotest.1.9.1 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 backoff.0.1.1 base.v0.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.2.1.0 cohttp.6.2.1 cohttp-lwt.6.2.1 cohttp-lwt-unix.6.2.1 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-npm.1 conf-pkg-config.4 containers.3.16 cppo.1.8.0 csexp.1.5.2 digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0 domain_shims.0.1.0 dscheck.0.5.0 dune.3.20.2 dune-configurator.3.20.2 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.2.1 ipaddr.5.6.1 ipaddr-sexp.5.6.1 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 kdf.1.0.0 logs.0.10.0 lwt.5.9.2 macaddr.5.6.1 magic-mime.1.3.1 mdx.2.5.1 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.3 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 oseq.0.5.1 ppx_derivers.1.2.1 ppx_sexp_conv.v0.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 psq.0.2.1 ptime.1.2.0 qcheck-core.0.90 qcheck-multicoretests-util.0.10 qcheck-stm.0.10 re.1.14.0 result.1.5 rresult.0.7.0 sedlex.3.7 seq.base sexplib0.v0.17.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.1.1 tsort.2.2.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.3.0.0 zarith.1.14")


/src: (env CI true)


/src: (env OCAMLCI true)


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update --depexts && opam install --cli=2.4 --depext-only -y picos_std.dev picos_mux.dev picos_meta.dev picos_lwt.dev picos_io_cohttp.dev picos_io.dev picos_aux.dev picos.dev $DEPS"))
[WARNING] Unknown update command for bsd, skipping system update


<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[picos_io.dev] synchronised (file:///src)
[picos_aux.dev] synchronised (file:///src)
[picos.dev] synchronised (file:///src)
[picos_lwt.dev] synchronised (file:///src)
[picos_io_cohttp.dev] synchronised (file:///src)
[picos_meta.dev] synchronised (file:///src)
[picos_mux.dev] synchronised (file:///src)
[picos_std.dev] synchronised (file:///src)


[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 3).
[NOTE] Package ocaml-compiler is already installed (current version is 5.4.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.4.0).
[NOTE] Package ocaml is already installed (current version is 5.4.0).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-effects is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).


The following system packages will first need to be installed:
ca_root_nss gmp npm


<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>


+ /usr/local/bin/sudo "pkg" "install" "-y" "ca_root_nss" "gmp" "npm"
- Updating FreeBSD repository catalogue...
- [rosemary] Fetching data.pkg: .
- ....
- ..... done
- Processing entries:
- ..
- .
- ..
- .
- .
- .
- .
- . done
- FreeBSD repository update completed. 36474 packages processed.
- Updating FreeBSD-kmods repository catalogue...
- [rosemary] Fetching data.pkg: ... done
- Processing entries: .......... done
- FreeBSD-kmods repository update completed. 245 packages processed.
- All repositories are up to date.
- The following 11 package(s) will be affected (of 0 checked):
- 
- New packages to be INSTALLED:
- 	c-ares: 1.34.5 [FreeBSD]
- 	ca_root_nss: 3.115_4 [FreeBSD]
- 	gmp: 6.3.0 [FreeBSD]
- 	icu: 76.1,1 [FreeBSD]
- 	libnghttp3: 1.11.0 [FreeBSD]
- 	libngtcp2: 1.15.1 [FreeBSD]
- 	libuv: 1.51.0 [FreeBSD]
- 	node22: 22.19.0_1 [FreeBSD]
- 	npm: 11.6.0 [FreeBSD]
- 	npm-node22: 11.6.0 [FreeBSD]
- 	simdjson: 4.0.7 [FreeBSD]
- 
- Number of packages to be installed: 11
- 
- The process will require 143 MiB more space.
- 31 MiB to be downloaded.
- [rosemary] [1/11] Fetching libngtcp2-1.15.1~a7f8b92dcd.pkg: .......... done
- [rosemary] [2/11] Fetching libnghttp3-1.11.0~7630712c88.pkg: ....... done
- [rosemary] [3/11] Fetching c-ares-1.34.5~6e4eb64ea7.pkg: .......... done
- [rosemary] [4/11] Fetching icu-76.1,1~5bf3ead0ae.pkg: ..
- .....
- ... done
- [rosemary] [5/11] Fetching node22-22.19.0_1~a93358133f.pkg:
- ....
- ...... done
- [rosemary] [6/11] Fetching npm-node22-11.6.0~914c5df930.pkg: .......... done
- [rosemary] [7/11] Fetching libuv-1.51.0~437990c9ce.pkg: ......... done
- [rosemary] [8/11] Fetching simdjson-4.0.7~98a2cc3fdf.pkg: .......... done
- [rosemary] [9/11] Fetching gmp-6.3.0~4dceecf750.pkg: .......... done
- [rosemary] [10/11] Fetching npm-11.6.0~a1acc3110d.pkg: . done
- [rosemary] [11/11] Fetching ca_root_nss-3.115_4~d631437f62.pkg: .......... done
- Checking integrity... done (0 conflicting)
- [rosemary] [1/11] Installing c-ares-1.34.5...
- [rosemary] [1/11] Extracting c-ares-1.34.5: .
- ......... done
- [rosemary] [2/11] Installing ca_root_nss-3.115_4...
- [rosemary] [2/11] Extracting ca_root_nss-3.115_4: ....... done
- [rosemary] [3/11] Installing gmp-6.3.0...
- [rosemary] [3/11] Extracting gmp-6.3.0: .......... done
- [rosemary] [4/11] Installing icu-76.1,1...
- [rosemary] [4/11] Extracting icu-76.1,1: .......... done
- [rosemary] [5/11] Installing libnghttp3-1.11.0...
- [rosemary] [5/11] Extracting libnghttp3-1.11.0: .......... done
- [rosemary] [6/11] Installing libngtcp2-1.15.1...
- [rosemary] [6/11] Extracting libngtcp2-1.15.1: .......... done
- [rosemary] [7/11] Installing libuv-1.51.0...
- [rosemary] [7/11] Extracting libuv-1.51.0: .......... done
- [rosemary] [8/11] Installing simdjson-4.0.7...
- [rosemary] [8/11] Extracting simdjson-4.0.7: .......... done
- [rosemary] [9/11] Installing node22-22.19.0_1...
- [rosemary] [9/11] Extracting node22-22.19.0_1:
- .......... done
- [rosemary] [10/11] Installing npm-node22-11.6.0...
- [rosemary] [10/11] Extracting npm-node22-11.6.0: .......... done
- [rosemary] [11/11] Installing npm-11.6.0...
- [rosemary] [11/11] Extracting npm-11.6.0: ... done
- =====
- Message from ca_root_nss-3.115_4:
- 
- --
- FreeBSD does not, and can not warrant that the certification authorities
- whose certificates are included in this package have in any way been
- audited for trustworthiness or RFC 3647 compliance.
- 
- Assessment and verification of trust is the complete responsibility of
- the system administrator.
- 
- This package installs symlinks to support root certificate discovery
- for software that either uses other cryptographic libraries than
- OpenSSL, or use OpenSSL but do not follow recommended practice.
- 
- If you prefer to do this manually, replace the following symlinks with
- either an empty file or your site-local certificate bundle.
- 
-   * /etc/ssl/cert.pem
-   * /usr/local/etc/ssl/cert.pem
-   * /usr/local/openssl/cert.pem
- =====
- Message from node22-22.19.0_1:
- 
- --
- Note: If you need npm (Node Package Manager), please install www/npm-node22.
2025-12-23 12:47.55 ---> using "7f762575de4db2b750bdf633437d6e33b8e2f2f39f3c831e54b44709b82cf9e7" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 3).
[NOTE] Package ocaml-compiler is already installed (current version is 5.4.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.4.0).
[NOTE] Package ocaml is already installed (current version is 5.4.0).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-effects is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 99 packages
 alcotest                   1.9.1
 angstrom                   0.16.1
 asn1-combinators           0.3.2
 astring                    0.8.5
 backoff                    0.1.1
 base                       v0.17.3
 base-bytes                 base
 base64                     3.5.2
 bigstringaf                0.10.0
 bos                        0.2.1
 ca-certs                   1.0.1
 camlp-streams              5.0.1
 cmdliner                   2.1.0
 cohttp                     6.2.1
 cohttp-lwt                 6.2.1
 cohttp-lwt-unix            6.2.1
 conduit                    8.0.0
 conduit-lwt                8.0.0
 conduit-lwt-unix           8.0.0
 conf-gmp                   5
 conf-gmp-powm-sec          4
 conf-npm                   1
 conf-pkg-config            4
 containers                 3.16
 cppo                       1.8.0
 csexp                      1.5.2
 digestif                   1.3.0
 domain-local-await         1.0.1
 domain-name                0.5.0
 domain_shims               0.1.0
 dscheck                    0.5.0
 dune                       3.20.2
 dune-configurator          3.20.2
 duration                   0.2.1
 either                     1.0.0
 eqaf                       0.10
 fmt                        0.11.0
 fpath                      0.7.3
 gen                        1.1
 gmap                       0.3.0
 http                       6.2.1
 ipaddr                     5.6.1
 ipaddr-sexp                5.6.1
 js_of_ocaml                6.2.0
 js_of_ocaml-compiler       6.2.0
 kdf                        1.0.0
 logs                       0.10.0
 lwt                        5.9.2
 macaddr                    5.6.1
 magic-mime                 1.3.1
 mdx                        2.5.1
 menhir                     20250912
 menhirCST                  20250912
 menhirLib                  20250912
 menhirSdk                  20250912
 mirage-crypto              2.0.2
 mirage-crypto-ec           2.0.2
 mirage-crypto-pk           2.0.2
 mirage-crypto-rng          2.0.2
 mtime                      2.1.0
 multicore-bench            0.1.7
 multicore-magic            2.3.1
 multicore-magic-dscheck    2.3.1
 ocaml-compiler-libs        v0.17.0
 ocaml-syntax-shims         1.0.0
 ocaml-version              4.0.3
 ocaml_intrinsics_kernel    v0.17.1
 ocamlbuild                 0.16.1
 ocamlfind                  1.9.8
 ocplib-endian              1.2
 ohex                       0.2.0
 oseq                       0.5.1
 ppx_derivers               1.2.1
 ppx_sexp_conv              v0.17.1
 ppxlib                     0.37.0
 ppxlib_jane                v0.17.4
 psq                        0.2.1
 ptime                      1.2.0
 qcheck-core                0.90
 qcheck-multicoretests-util 0.10
 qcheck-stm                 0.10
 re                         1.14.0
 result                     1.5
 rresult                    0.7.0
 sedlex                     3.7
 seq                        base
 sexplib0                   v0.17.0
 stdlib-shims               0.3.0
 stringext                  1.6.0
 thread-local-storage       0.2
 thread-table               1.0.0
 topkg                      1.1.1
 tsort                      2.2.0
 uri                        4.4.0
 uri-sexp                   4.4.0
 uutf                       1.0.4
 x509                       1.0.6
 yojson                     3.0.0
 zarith                     1.14


<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
 retrieved asn1-combinators.0.3.2  (cached)
 retrieved angstrom.0.16.1  (cached)
 retrieved alcotest.1.9.1  (cached)
 retrieved backoff.0.1.1  (cached)
 retrieved astring.0.8.5  (cached)
 retrieved base64.3.5.2  (cached)
 retrieved bigstringaf.0.10.0  (cached)
 retrieved base.v0.17.3  (cached)
 retrieved ca-certs.1.0.1  (cached)
 retrieved camlp-streams.5.0.1  (cached)
 retrieved cmdliner.2.1.0  (cached)
 retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0  (cached)
 retrieved conf-gmp.5  (cached)
 retrieved conf-gmp-powm-sec.4  (cached)
 retrieved cohttp.6.2.1, cohttp-lwt.6.2.1, cohttp-lwt-unix.6.2.1, http.6.2.1  (cached)
 installed conf-pkg-config.4
 installed conf-gmp.5
 retrieved cppo.1.8.0  (cached)
 installed conf-gmp-powm-sec.4
 installed conf-npm.1
 retrieved containers.3.16  (cached)
 retrieved csexp.1.5.2  (cached)
 retrieved bos.0.2.1  (cached)
 retrieved domain-local-await.1.0.1  (cached)
 retrieved domain-name.0.5.0  (cached)
 retrieved domain_shims.0.1.0  (cached)
 retrieved dscheck.0.5.0  (cached)
 retrieved duration.0.2.1  (cached)
 retrieved either.1.0.0  (cached)
 retrieved eqaf.0.10  (cached)
 retrieved fmt.0.11.0  (cached)
 retrieved fpath.0.7.3  (cached)
 retrieved gen.1.1  (cached)
 retrieved gmap.0.3.0  (cached)
 retrieved ipaddr.5.6.1, ipaddr-sexp.5.6.1, macaddr.5.6.1  (cached)
 retrieved digestif.1.3.0  (cached)
 retrieved kdf.1.0.0  (cached)
 retrieved logs.0.10.0  (cached)
 retrieved lwt.5.9.2  (cached)
 retrieved magic-mime.1.3.1  (cached)
 retrieved mdx.2.5.1  (cached)
 retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
 retrieved js_of_ocaml.6.2.0, js_of_ocaml-compiler.6.2.0  (cached)
 retrieved mirage-crypto.2.0.2, mirage-crypto-ec.2.0.2, mirage-crypto-pk.2.0.2, mirage-crypto-rng.2.0.2  (cached)
 retrieved mtime.2.1.0  (cached)
 retrieved multicore-bench.0.1.7  (cached)
 retrieved dune.3.20.2, dune-configurator.3.20.2  (cached)
 retrieved ocaml-syntax-shims.1.0.0  (cached)
 retrieved ocaml-compiler-libs.v0.17.0  (cached)
 retrieved multicore-magic.2.3.1, multicore-magic-dscheck.2.3.1  (cached)
 retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
 retrieved ocaml-version.4.0.3  (cached)
 retrieved ocamlfind.1.9.8  (cached)
 retrieved ohex.0.2.0  (cached)
 retrieved ocplib-endian.1.2  (cached)
 retrieved ocamlbuild.0.16.1  (cached)
 retrieved ppx_sexp_conv.v0.17.1  (cached)
 retrieved ppx_derivers.1.2.1  (cached)
 retrieved oseq.0.5.1  (cached)
 retrieved ppxlib_jane.v0.17.4  (cached)
 retrieved psq.0.2.1  (cached)
 retrieved qcheck-core.0.90  (cached)
 retrieved ptime.1.2.0  (cached)
 retrieved ppxlib.0.37.0  (cached)
 retrieved re.1.14.0  (cached)
 retrieved result.1.5  (cached)
 retrieved qcheck-multicoretests-util.0.10, qcheck-stm.0.10  (cached)
 retrieved seq.base  (cached)
 retrieved sedlex.3.7  (cached)
 retrieved sexplib0.v0.17.0  (cached)
 retrieved rresult.0.7.0  (cached)
 retrieved stringext.1.6.0  (cached)
 retrieved thread-local-storage.0.2  (cached)
 retrieved thread-table.1.0.0  (cached)
 retrieved stdlib-shims.0.3.0  (cached)
 retrieved tsort.2.2.0  (cached)
 retrieved uutf.1.0.4  (cached)
 retrieved topkg.1.1.1  (cached)
 retrieved uri.4.4.0, uri-sexp.4.4.0  (cached)
 retrieved yojson.3.0.0  (cached)
 retrieved zarith.1.14  (cached)
 retrieved x509.1.0.6  (cached)
 installed cmdliner.2.1.0
 installed seq.base
 installed ocamlfind.1.9.8
 installed base-bytes.base
 installed ocamlbuild.0.16.1
 installed zarith.1.14
 installed topkg.1.1.1
 installed rresult.0.7.0
 installed uutf.1.0.4
 installed mtime.2.1.0
 installed fmt.0.11.0
 installed ptime.1.2.0
 installed astring.0.8.5
 installed fpath.0.7.3
 installed dune.3.20.2
 installed menhirCST.20250912
 installed macaddr.5.6.1
 installed http.6.2.1
 installed gmap.0.3.0
 installed eqaf.0.10
 installed ppx_derivers.1.2.1
 installed ohex.0.2.0
 installed either.1.0.0
 installed ocaml-version.4.0.3
 installed duration.0.2.1
 installed stdlib-shims.0.3.0
 installed domain_shims.0.1.0
 installed domain-name.0.5.0
 installed stringext.1.6.0
 installed result.1.5
 installed psq.0.2.1
 installed csexp.1.5.2
 installed ipaddr.5.6.1
 installed tsort.2.2.0
 installed thread-table.1.0.0
 installed thread-local-storage.0.2
 installed digestif.1.3.0
 installed sexplib0.v0.17.0
 installed qcheck-core.0.90
 installed yojson.3.0.0
 installed oseq.0.5.1
 installed re.1.14.0
 installed domain-local-await.1.0.1
 installed ocaml_intrinsics_kernel.v0.17.1
 installed ocaml-syntax-shims.1.0.0
 installed ocaml-compiler-libs.v0.17.0
 installed multicore-magic.2.3.1
 installed menhirSdk.20250912
 installed menhirLib.20250912
 installed qcheck-multicoretests-util.0.10
 installed magic-mime.1.3.1
 installed gen.1.1
 installed cppo.1.8.0
 installed camlp-streams.5.0.1
 installed base64.3.5.2
 installed backoff.0.1.1
 installed asn1-combinators.0.3.2
 installed ocplib-endian.1.2
 installed qcheck-stm.0.10
 installed dune-configurator.3.20.2
 installed alcotest.1.9.1
 installed multicore-bench.0.1.7
 installed bigstringaf.0.10.0
 installed angstrom.0.16.1
 installed mirage-crypto.2.0.2
 installed kdf.1.0.0
 installed uri.4.4.0
 installed containers.3.16
 installed dscheck.0.5.0
 installed multicore-magic-dscheck.2.3.1
 installed lwt.5.9.2
 installed base.v0.17.3
 installed ppxlib.0.37.0
 installed ppxlib_jane.v0.17.4
 installed sedlex.3.7
 installed menhir.20250912
 installed ppx_sexp_conv.v0.17.1
 installed ipaddr-sexp.5.6.1
 installed uri-sexp.4.4.0
 installed js_of_ocaml-compiler.6.2.0
 installed logs.0.10.0
 installed mirage-crypto-rng.2.0.2
 installed conduit.8.0.0
 installed mirage-crypto-pk.2.0.2
 installed conduit-lwt.8.0.0
 installed cohttp.6.2.1
 installed mdx.2.5.1
 installed bos.0.2.1
 installed cohttp-lwt.6.2.1
 installed mirage-crypto-ec.2.0.2
 installed x509.1.0.6
 installed ca-certs.1.0.1
 installed conduit-lwt-unix.8.0.0
 installed cohttp-lwt-unix.6.2.1
 installed js_of_ocaml.6.2.0
Done.
2025-12-23 12:47.56 ---> using "5d4027c5e2d059d46b730c30322d8abd83ee7567e6926a7fc5012473731089ca" from cache


/src: (copy (src .) (dst /src))
2025-12-23 12:47.59 ---> saved as "3af581b68fa0996ccc729d8e5c86662200a3793ff70142d0da4537dea12d3b40"


/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
(cd _build/default/test && ./test_lwt_unix.exe)
Testing `Picos_lwt'.
This run has ID `MOAM7JKI'.


[OK]          Basics          0


Full test results in `/src/_build/default/test/_build/_tests/Picos_lwt'.
Test Successful in 0.051s. 1 test run.
(cd _build/default/test && ./test_picos_lwt_unix_with_cohttp.exe)
Uri: //127.0.0.1:8000/hello-lwt
Method: GET


host: 127.0.0.1:8000
user-agent: ocaml-cohttp/v6.2.1
content-length: 0


Body:
(cd _build/default/example && ./guards.exe)
Testing with scheduler: fifothreads ~quota:82
Ran guarded case statement examples.
(cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 0)
Testing `Picos_sync'.
This run has ID `NVDQFHEL'.


[OK]          Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.259s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 1)
Testing `Picos_sync'.
This run has ID `UHHL8FZ6'.


[SKIP]        Mutex and Condition                  0   basics.
[OK]          Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.006s. 1 test run.
(cd _build/default/test && ./test_finally.exe)
Testing `Picos_finally'.
This run has ID `FT5HGQ84'.


[OK]          move            0   is lazy.
[OK]          borrow          0   returns resource.


Full test results in `/src/_build/default/test/_build/_tests/Picos_finally'.
Test Successful in 0.042s. 2 tests run.
(cd _build/default/test && ./test_server_and_client.exe)
Using non-blocking sockets and fibers on OCaml 5:
Looping server running
Server listening
Client B running
Client B connected
Client B wrote 100
Server accepting
Server accepted client
Server accepting
Server read 100
Server wrote 50
Client B read 50
Client A running
Client A connected
Client A wrote 100
Server accepted client
Server accepting
Server read 100
Server wrote 50
Client A read 50
Server and Client test: OK
(cd _build/default/test && ./test_io.exe)
Testing `Picos_io'.
This run has ID `Y0IYJUN6'.


[OK]          Unix          0   openfile and read.
[OK]          Unix          1   sleepf.
[OK]          Unix          2   select empty timeout.
[OK]          Unix          3   select empty ∞.
[OK]          Unix          4   select.
[OK]          Unix          5   system.


Full test results in `/src/_build/default/test/_build/_tests/Picos_io'.
Test Successful in 1.903s. 6 tests run.
(cd _build/default/test && ./test_io_with_lwt.exe)
Testing `Picos_io_with_lwt'.
This run has ID `KI7SRJ8K'.


[OK]          Unix          0   system.


Full test results in `/src/_build/default/test/_build/_tests/Picos_io_with_lwt'.
Test Successful in 2.355s. 1 test run.
(cd _build/default/test && ./test_structured.exe)
Testing `Picos_structured'.
This run has ID `2XHG9IUP'.


[OK]          Bundle          0   fork after terminate.
[OK]          Bundle          1   fork after escape.
[OK]          Bundle          2   exception in child terminates.
[OK]          Bundle          3   cancelation awaits children.
[OK]          Bundle          4   block raises when forbidden.
[OK]          Bundle          5   block raises Sys_error when fiber finishes.
[OK]          Bundle          6   termination nests.
[OK]          Bundle          7   promise cancelation does not terminate.
[OK]          Bundle          8   error in promise terminates.
[OK]          Bundle          9   can wait promises.
[OK]          Bundle         10   can select promises.
[OK]          Run             0   any and all errors.
[OK]          Run             1   any and all returns.
[OK]          Run             2   race any.


Full test results in `/src/_build/default/test/_build/_tests/Picos_structured'.
Test Successful in 3.676s. 14 tests run.
(cd _build/default/test && ./test_io_cohttp.exe)
Uri: //127.0.0.1:14859/hello-io-cohttp
Method: POST


host: 127.0.0.1:14859
user-agent: ocaml-cohttp/v6.2.1
content-length: 17


Body: It's-a-Me, Picos!
(cd _build/default/test && ./test_picos_dscheck.exe)
Testing `Picos DSCheck'.
This run has ID `EF8QH0RI'.


[OK]          Trigger              0   basic contract.
[OK]          Computation          0   basic contract.
[OK]          Computation          1   removes triggers.


Full test results in `/src/_build/default/test/_build/_tests/Picos DSCheck'.
Test Successful in 0.948s. 3 tests run.
(cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 2)
Testing `Picos_sync'.
This run has ID `S2G9V1YX'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[OK]          Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 5.265s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 0)
Testing `Picos_sync'.
This run has ID `O39SE9B6'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[OK]          Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.181s. 1 test run.
(cd _build/default/test && ./test_mpmcq_dscheck.exe)
Testing `Picos_mpmcq DSCheck'.
This run has ID `7J0HW26G'.


[OK]          Multiple pushes and pops          0


Full test results in `/src/_build/default/test/_build/_tests/Picos_mpmcq DSCheck'.
Test Successful in 3.055s. 1 test run.
(cd _build/default/test && /usr/local/bin/node test_js_of_ocaml.bc.js)
Hello, from js_of_ocaml with Picos!
(cd _build/default/bench && ./main.exe -brief 'Picos Computation')
Picos Computation:
attach detach pairs over time/1 worker:
1.24 M/s
attach detach pairs over time/2 workers:
1.28 M/s
attach detach pairs over time/4 workers:
1.49 M/s
attach detach pairs over time/trivial:
8.62 M/s
time per attach detach pair/1 worker:
804.28 ns
time per attach detach pair/2 workers:
1559.49 ns
time per attach detach pair/4 workers:
2681.38 ns
time per attach detach pair/trivial:
116.00 ns
(cd _build/default/test && ./test_select.exe)
Testing `Picos_select'.
This run has ID `Q5E3LP68'.


[OK]          Intr          0


Full test results in `/src/_build/default/test/_build/_tests/Picos_select'.
Test Successful in 16.091s. 1 test run.
(cd _build/default/bench && ./main.exe -brief 'Picos Current')
Picos Current:
ops over time/1 worker:
15.56 M/s
ops over time/2 workers:
30.49 M/s
ops over time/4 workers:
51.69 M/s
time per op/1 worker:
64.27 ns
time per op/2 workers:
65.60 ns
time per op/4 workers:
77.38 ns
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 1)
Testing `Picos_sync'.
This run has ID `754OMB4M'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[OK]          Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 21.588s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 2)
Testing `Picos_sync'.
This run has ID `7F540RYF'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[OK]          Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.003s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 3)
Testing `Picos_sync'.
This run has ID `A0B6IW4A'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[OK]          Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.002s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 0)
Testing `Picos_sync'.
This run has ID `2W9XECHZ'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[OK]          Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.103s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 1)
Testing `Picos_sync'.
This run has ID `KQPM7VXT'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[OK]          Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.261s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 2)
Testing `Picos_sync'.
This run has ID `SSKFCU2Y'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[OK]          Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.004s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 3)
Testing `Picos_sync'.
This run has ID `PNHMGLJ4'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[OK]          Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.001s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 4)
Testing `Picos_sync'.
This run has ID `F3T7JVN7'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[OK]          Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.001s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 5)
Testing `Picos_sync'.
This run has ID `8HXCTLQ5'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[OK]          Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.002s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 6)
Testing `Picos_sync'.
This run has ID `0JVKYUJA'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[OK]          Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.103s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Semaphore$ 0)
Testing `Picos_sync'.
This run has ID `RWPR6RWA'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[OK]          Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.001s. 1 test run.
(cd _build/default/test && ./test_picos.exe)
Testing `Picos'.
This run has ID `YBNNWJW0'.


[OK]          Trigger               0   basics.
[OK]          Computation           0   basics.
[OK]          Computation           1   tx.
[OK]          Computation           2   signals in order.
[OK]          Fiber.FLS             0   basics.
[OK]          Cancel                0
[OK]          Cancel after          0


Full test results in `/src/_build/default/test/_build/_tests/Picos'.
Test Successful in 28.771s. 7 tests run.
(cd _build/default/bench && ./main.exe -brief 'Picos FLS (excluding Current)')
Picos FLS (excluding Current):
gets over time/1 worker:
116.48 M/s
gets over time/2 workers:
228.07 M/s
gets over time/4 workers:
440.68 M/s
sets over time/1 worker:
63.80 M/s
sets over time/2 workers:
124.13 M/s
sets over time/4 workers:
236.93 M/s
time per get/1 worker:
8.59 ns
time per get/2 workers:
8.77 ns
time per get/4 workers:
9.08 ns
time per set/1 worker:
15.67 ns
time per set/2 workers:
16.11 ns
time per set/4 workers:
16.88 ns
(cd _build/default/test && ./test_sync.exe -- ^Semaphore$ 1)
Testing `Picos_sync'.
This run has ID `IWLUH40E'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[OK]          Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.209s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 0)
Testing `Picos_sync'.
This run has ID `QFMUW18D'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[OK]          Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.103s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 1)
Testing `Picos_sync'.
This run has ID `R4SGACDZ'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[OK]          Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.279s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 2)
Testing `Picos_sync'.
This run has ID `3BQ1HVSV'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[OK]          Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.001s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 3)
Testing `Picos_sync'.
This run has ID `JX7MO9Q2'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[OK]          Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.002s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Lazy$ 0)
Testing `Picos_sync'.
This run has ID `YI4GV9L5'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[OK]          Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.004s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Lazy$ 1)
Testing `Picos_sync'.
This run has ID `JVW1C6N5'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[OK]          Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.105s. 1 test run.
(cd _build/default/bench && ./main.exe -brief 'Picos TLS')
Picos TLS:
gets over time/1 worker:
74.37 M/s
gets over time/2 workers:
145.54 M/s
gets over time/4 workers:
291.05 M/s
sets over time/1 worker:
38.72 M/s
sets over time/2 workers:
71.11 M/s
sets over time/4 workers:
152.92 M/s
time per get/1 worker:
13.45 ns
time per get/2 workers:
13.74 ns
time per get/4 workers:
13.74 ns
time per set/1 worker:
25.83 ns
time per set/2 workers:
28.12 ns
time per set/4 workers:
26.16 ns
(cd _build/default/test && ./test_sync.exe -- ^Event$ 0)
Testing `Picos_sync'.
This run has ID `3DE2OW84'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[OK]          Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.103s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Barrier$ 0)
Testing `Picos_sync'.
This run has ID `E8LD4L8N'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[OK]          Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.190s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Barrier$ 1)
Testing `Picos_sync'.
This run has ID `89D3TGGH'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[OK]          Barrier                              1   poisoning.
[SKIP]        Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.158s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Non-cancelable ops$' 0)
Testing `Picos_sync'.
This run has ID `66677O0U'.


[SKIP]        Mutex and Condition                  0   basics.
[SKIP]        Mutex and Condition                  1   errors.
[SKIP]        Mutex and Condition                  2   cancelation.
[SKIP]        Lock and Lock.Condition              0   basics.
[SKIP]        Lock and Lock.Condition              1   cancelation.
[SKIP]        Lock and Lock.Condition              2   poisoning.
[SKIP]        Lock and Lock.Condition              3   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          0   basics.
[SKIP]        Rwlock and Rwlock.Condition          1   cancelation.
[SKIP]        Rwlock and Rwlock.Condition          2   poisoning.
[SKIP]        Rwlock and Rwlock.Condition          3   freezing.
[SKIP]        Rwlock and Rwlock.Condition          4   try_acquire.
[SKIP]        Rwlock and Rwlock.Condition          5   try_acquire_shared.
[SKIP]        Rwlock and Rwlock.Condition          6   sharing.
[SKIP]        Semaphore                            0   basics.
[SKIP]        Semaphore                            1   stress.
[SKIP]        Sem                                  0   basics.
[SKIP]        Sem                                  1   stress.
[SKIP]        Sem                                  2   poisoning.
[SKIP]        Sem                                  3   try_acquire.
[SKIP]        Lazy                                 0   basics.
[SKIP]        Lazy                                 1   cancelation.
[SKIP]        Event                                0   basics.
[SKIP]        Barrier                              0   basics.
[SKIP]        Barrier                              1   poisoning.
[OK]          Non-cancelable ops                   0   are not canceled.


Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.006s. 1 test run.
(cd _build/default/bench && ./main.exe -brief 'Picos DLS')
Picos DLS:
gets over time/1 worker:
83.09 M/s
gets over time/2 workers:
156.18 M/s
gets over time/4 workers:
300.03 M/s
sets over time/1 worker:
49.70 M/s
sets over time/2 workers:
96.17 M/s
sets over time/4 workers:
124.06 M/s
time per get/1 worker:
12.04 ns
time per get/2 workers:
12.81 ns
time per get/4 workers:
13.33 ns
time per set/1 worker:
20.12 ns
time per set/2 workers:
20.80 ns
time per set/4 workers:
32.24 ns
(cd _build/default/bench && ./main.exe -brief 'Yield with Picos_std_sync')
Yield with Picos_std_sync:
locked yields over time/1024 fibers with Lock:
0.68 M/s
locked yields over time/1024 fibers with Rwlock:
0.56 M/s
locked yields over time/1024 fibers with Sem:
0.64 M/s
locked yields over time/1024 fibers with Sem 2:
1.06 M/s
locked yields over time/1024 fibers with Sem 3:
0.90 M/s
locked yields over time/1024 fibers with Sem 4:
0.61 M/s
locked yields over time/1 fiber with Lock:
3.67 M/s
locked yields over time/1 fiber with Rwlock:
3.75 M/s
locked yields over time/1 fiber with Sem:
3.75 M/s
locked yields over time/1 fiber with Sem 2:
3.69 M/s
locked yields over time/1 fiber with Sem 3:
3.73 M/s
locked yields over time/1 fiber with Sem 4:
4.30 M/s
locked yields over time/256 fibers with Lock:
0.65 M/s
locked yields over time/256 fibers with Rwlock:
0.71 M/s
locked yields over time/256 fibers with Sem:
0.80 M/s
locked yields over time/256 fibers with Sem 2:
1.12 M/s
locked yields over time/256 fibers with Sem 3:
1.13 M/s
locked yields over time/256 fibers with Sem 4:
1.31 M/s
locked yields over time/2 domains with Lock:
0.75 M/s
locked yields over time/2 domains with Rwlock:
0.74 M/s
locked yields over time/2 domains with Sem:
0.72 M/s
locked yields over time/2 domains with Sem 2:
2.90 M/s
locked yields over time/2 domains with Sem 3:
5.07 M/s
locked yields over time/2 domains with Sem 4:
3.38 M/s
locked yields over time/2 fibers with Lock:
0.79 M/s
locked yields over time/2 fibers with Rwlock:
0.43 M/s
locked yields over time/2 fibers with Sem:
0.49 M/s
locked yields over time/2 fibers with Sem 2:
3.78 M/s
locked yields over time/2 fibers with Sem 3:
2.21 M/s
locked yields over time/2 fibers with Sem 4:
4.76 M/s
locked yields over time/3 domains with Lock:
0.91 M/s
locked yields over time/3 domains with Rwlock:
0.60 M/s
locked yields over time/3 domains with Sem:
0.59 M/s
locked yields over time/3 domains with Sem 2:
1.86 M/s
locked yields over time/3 domains with Sem 3:
4.30 M/s
locked yields over time/3 domains with Sem 4:
5.31 M/s
locked yields over time/3 fibers with Lock:
0.79 M/s
locked yields over time/3 fibers with Rwlock:
0.75 M/s
locked yields over time/3 fibers with Sem:
0.38 M/s
locked yields over time/3 fibers with Sem 2:
1.33 M/s
locked yields over time/3 fibers with Sem 3:
5.08 M/s
locked yields over time/3 fibers with Sem 4:
5.18 M/s
locked yields over time/4 domains with Lock:
0.68 M/s
locked yields over time/4 domains with Rwlock:
0.64 M/s
locked yields over time/4 domains with Sem:
0.63 M/s
locked yields over time/4 domains with Sem 2:
0.65 M/s
locked yields over time/4 domains with Sem 3:
2.39 M/s
locked yields over time/4 domains with Sem 4:
4.03 M/s
locked yields over time/4 fibers with Lock:
0.59 M/s
locked yields over time/4 fibers with Rwlock:
0.80 M/s
locked yields over time/4 fibers with Sem:
0.78 M/s
locked yields over time/4 fibers with Sem 2:
0.80 M/s
locked yields over time/4 fibers with Sem 3:
1.13 M/s
locked yields over time/4 fibers with Sem 4:
4.81 M/s
locked yields over time/512 fibers with Lock:
0.73 M/s
locked yields over time/512 fibers with Rwlock:
0.64 M/s
locked yields over time/512 fibers with Sem:
0.32 M/s
locked yields over time/512 fibers with Sem 2:
0.74 M/s
locked yields over time/512 fibers with Sem 3:
1.26 M/s
locked yields over time/512 fibers with Sem 4:
1.21 M/s
locked yields over time/8 domains with Lock:
0.58 M/s
locked yields over time/8 domains with Rwlock:
0.60 M/s
locked yields over time/8 domains with Sem:
0.68 M/s
locked yields over time/8 domains with Sem 2:
1.22 M/s
locked yields over time/8 domains with Sem 3:
1.88 M/s
locked yields over time/8 domains with Sem 4:
2.93 M/s
locked yields over time/8 fibers with Lock:
0.79 M/s
locked yields over time/8 fibers with Rwlock:
0.82 M/s
locked yields over time/8 fibers with Sem:
0.98 M/s
locked yields over time/8 fibers with Sem 2:
1.30 M/s
locked yields over time/8 fibers with Sem 3:
1.35 M/s
locked yields over time/8 fibers with Sem 4:
1.70 M/s
time per locked yield/1024 fibers with Lock:
1479.89 ns
time per locked yield/1024 fibers with Rwlock:
1791.27 ns
time per locked yield/1024 fibers with Sem:
1564.30 ns
time per locked yield/1024 fibers with Sem 2:
940.08 ns
time per locked yield/1024 fibers with Sem 3:
1109.87 ns
time per locked yield/1024 fibers with Sem 4:
1629.21 ns
time per locked yield/1 fiber with Lock:
272.62 ns
time per locked yield/1 fiber with Rwlock:
266.69 ns
time per locked yield/1 fiber with Sem:
266.38 ns
time per locked yield/1 fiber with Sem 2:
270.91 ns
time per locked yield/1 fiber with Sem 3:
268.28 ns
time per locked yield/1 fiber with Sem 4:
232.49 ns
time per locked yield/256 fibers with Lock:
1530.77 ns
time per locked yield/256 fibers with Rwlock:
1410.43 ns
time per locked yield/256 fibers with Sem:
1256.50 ns
time per locked yield/256 fibers with Sem 2:
892.35 ns
time per locked yield/256 fibers with Sem 3:
885.21 ns
time per locked yield/256 fibers with Sem 4:
763.48 ns
time per locked yield/2 domains with Lock:
2663.95 ns
time per locked yield/2 domains with Rwlock:
2699.15 ns
time per locked yield/2 domains with Sem:
2776.61 ns
time per locked yield/2 domains with Sem 2:
689.77 ns
time per locked yield/2 domains with Sem 3:
394.16 ns
time per locked yield/2 domains with Sem 4:
590.95 ns
time per locked yield/2 fibers with Lock:
1273.77 ns
time per locked yield/2 fibers with Rwlock:
2299.08 ns
time per locked yield/2 fibers with Sem:
2044.57 ns
time per locked yield/2 fibers with Sem 2:
264.73 ns
time per locked yield/2 fibers with Sem 3:
453.09 ns
time per locked yield/2 fibers with Sem 4:
210.15 ns
time per locked yield/3 domains with Lock:
3282.92 ns
time per locked yield/3 domains with Rwlock:
4979.45 ns
time per locked yield/3 domains with Sem:
5049.57 ns
time per locked yield/3 domains with Sem 2:
1613.97 ns
time per locked yield/3 domains with Sem 3:
698.44 ns
time per locked yield/3 domains with Sem 4:
564.78 ns
time per locked yield/3 fibers with Lock:
1273.73 ns
time per locked yield/3 fibers with Rwlock:
1330.58 ns
time per locked yield/3 fibers with Sem:
2650.48 ns
time per locked yield/3 fibers with Sem 2:
753.92 ns
time per locked yield/3 fibers with Sem 3:
196.75 ns
time per locked yield/3 fibers with Sem 4:
192.97 ns
time per locked yield/4 domains with Lock:
5885.25 ns
time per locked yield/4 domains with Rwlock:
6271.94 ns
time per locked yield/4 domains with Sem:
6376.47 ns
time per locked yield/4 domains with Sem 2:
6155.48 ns
time per locked yield/4 domains with Sem 3:
1670.80 ns
time per locked yield/4 domains with Sem 4:
992.63 ns
time per locked yield/4 fibers with Lock:
1684.44 ns
time per locked yield/4 fibers with Rwlock:
1254.00 ns
time per locked yield/4 fibers with Sem:
1284.11 ns
time per locked yield/4 fibers with Sem 2:
1253.98 ns
time per locked yield/4 fibers with Sem 3:
886.91 ns
time per locked yield/4 fibers with Sem 4:
207.84 ns
time per locked yield/512 fibers with Lock:
1366.44 ns
time per locked yield/512 fibers with Rwlock:
1554.92 ns
time per locked yield/512 fibers with Sem:
3110.38 ns
time per locked yield/512 fibers with Sem 2:
1357.65 ns
time per locked yield/512 fibers with Sem 3:
794.08 ns
time per locked yield/512 fibers with Sem 4:
829.59 ns
time per locked yield/8 domains with Lock:
13773.28 ns
time per locked yield/8 domains with Rwlock:
13326.06 ns
time per locked yield/8 domains with Sem:
11849.32 ns
time per locked yield/8 domains with Sem 2:
6578.52 ns
time per locked yield/8 domains with Sem 3:
4259.49 ns
time per locked yield/8 domains with Sem 4:
2733.53 ns
time per locked yield/8 fibers with Lock:
1268.65 ns
time per locked yield/8 fibers with Rwlock:
1225.09 ns
time per locked yield/8 fibers with Sem:
1024.99 ns
time per locked yield/8 fibers with Sem 2:
772.13 ns
time per locked yield/8 fibers with Sem 3:
740.33 ns
time per locked yield/8 fibers with Sem 4:
587.22 ns
(cd _build/default/bench && ./main.exe -brief 'Picos Spawn')
Picos Spawn:
spawns over time/with packed computation:
3.87 M/s
time per spawn/with packed computation:
258.20 ns
(cd _build/default/test && ./test_schedulers.exe)
Testing with scheduler: randos ~n_domains:25
Fairness of 100 fibers performing at least 10000 yields:
sd: 0.169124 -- ideally 0
mean: 1.533386 -- ideally 1
median: 1.574600 -- ideally 1
Testing `Picos schedulers'.
This run has ID `5WSFGX5R'.


[OK]          Trivial main returns                          0
[OK]          Scheduler completes main computation          0
[OK]          Current                                       0
[OK]          Cancel_after                                  0   basic.
[OK]          Cancel_after                                  1   long timeout.
[OK]          Operation on canceled fiber raises            0
[OK]          Cross scheduler wakeup                        0
[OK]          Fatal exception terminates scheduler          0


Full test results in `/src/_build/default/test/_build/_tests/Picos schedulers'.
Test Successful in 50.615s. 8 tests run.
(cd _build/default/bench && ./main.exe -brief 'Picos Yield')
Picos Yield:
time per yield/10000 fibers:
652.54 ns
time per yield/1000 fibers:
224.95 ns
time per yield/100 fibers:
205.04 ns
time per yield/10 fibers:
292.36 ns
time per yield/1 fiber:
273.13 ns
yields over time/10000 fibers:
1.53 M/s
yields over time/1000 fibers:
4.45 M/s
yields over time/100 fibers:
4.88 M/s
yields over time/10 fibers:
3.42 M/s
yields over time/1 fiber:
3.66 M/s
(cd _build/default/test && ./test_rwlock.exe)
random seed: 3090546416234857896
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   32     0.0s Rwlock sequential
[]   32    0    0   32 /   32     0.0s Rwlock sequential
[ ]    0    0    0    0 /   32     0.0s Rwlock parallel
[ ]    1    0    0    1 /   32     3.5s Rwlock parallel
[ ]    2    0    0    2 /   32     5.6s Rwlock parallel
[ ]    3    0    0    3 /   32     8.0s Rwlock parallel
[ ]    4    0    0    4 /   32    10.8s Rwlock parallel
[ ]    5    0    0    5 /   32    13.3s Rwlock parallel
[ ]    6    0    0    6 /   32    14.3s Rwlock parallel
[ ]    7    0    0    7 /   32    15.4s Rwlock parallel
[ ]    8    0    0    8 /   32    15.5s Rwlock parallel
[ ]    9    0    0    9 /   32    15.8s Rwlock parallel
[ ]   10    0    0   10 /   32    16.9s Rwlock parallel
[ ]   11    0    0   11 /   32    17.3s Rwlock parallel
[ ]   12    0    0   12 /   32    17.6s Rwlock parallel
[ ]   14    0    0   14 /   32    17.9s Rwlock parallel
[ ]   15    0    0   15 /   32    18.2s Rwlock parallel
[ ]   16    0    0   16 /   32    18.3s Rwlock parallel
[ ]   17    0    0   17 /   32    18.7s Rwlock parallel
[ ]   20    0    0   20 /   32    19.3s Rwlock parallel
[ ]   21    0    0   21 /   32    19.4s Rwlock parallel
[ ]   22    0    0   22 /   32    19.9s Rwlock parallel
[ ]   23    0    0   23 /   32    20.3s Rwlock parallel
[ ]   24    0    0   24 /   32    20.6s Rwlock parallel
[ ]   26    0    0   26 /   32    20.8s Rwlock parallel
[ ]   27    0    0   27 /   32    21.1s Rwlock parallel
[ ]   28    0    0   28 /   32    21.3s Rwlock parallel
[ ]   29    0    0   29 /   32    21.6s Rwlock parallel
[ ]   30    0    0   30 /   32    22.3s Rwlock parallel
[ ]   31    0    0   31 /   32    22.9s Rwlock parallel
[ ]   32    0    0   32 /   32    23.5s Rwlock parallel
[]   32    0    0   32 /   32    23.5s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 2030363869341968983
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   49     0.0s Rwlock sequential
[]   49    0    0   49 /   49     0.0s Rwlock sequential
[ ]    0    0    0    0 /   49     0.0s Rwlock parallel
[ ]    1    0    0    1 /   49     0.8s Rwlock parallel
[ ]    2    0    0    2 /   49     1.5s Rwlock parallel
[ ]    4    0    0    4 /   49     1.6s Rwlock parallel
[ ]   10    0    0   10 /   49     1.8s Rwlock parallel
[ ]   12    0    0   12 /   49     2.1s Rwlock parallel
[ ]   20    0    0   20 /   49     2.4s Rwlock parallel
[ ]   23    0    0   23 /   49     2.6s Rwlock parallel
[ ]   33    0    0   33 /   49     2.7s Rwlock parallel
[ ]   45    0    0   45 /   49     2.9s Rwlock parallel
[]   49    0    0   49 /   49     3.0s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 2477088156235736646
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  102     0.0s Rwlock sequential
[]  102    0    0  102 /  102     0.0s Rwlock sequential
[ ]    0    0    0    0 /  102     0.0s Rwlock parallel
[ ]    1    0    0    1 /  102     0.2s Rwlock parallel
[ ]    2    0    0    2 /  102     0.3s Rwlock parallel
[ ]    5    0    0    5 /  102     0.4s Rwlock parallel
[ ]    8    0    0    8 /  102     0.6s Rwlock parallel
[ ]   11    0    0   11 /  102     0.9s Rwlock parallel
[ ]   12    0    0   12 /  102     1.1s Rwlock parallel
[ ]   13    0    0   13 /  102     1.5s Rwlock parallel
[ ]   14    0    0   14 /  102     1.7s Rwlock parallel
[ ]   16    0    0   16 /  102     1.9s Rwlock parallel
[ ]   19    0    0   19 /  102     2.2s Rwlock parallel
[ ]   22    0    0   22 /  102     2.4s Rwlock parallel
[ ]   26    0    0   26 /  102     2.5s Rwlock parallel
[ ]   29    0    0   29 /  102     2.6s Rwlock parallel
[ ]   34    0    0   34 /  102     2.7s Rwlock parallel
[ ]   43    0    0   43 /  102     2.8s Rwlock parallel
[ ]   44    0    0   44 /  102     3.0s Rwlock parallel
[ ]   45    0    0   45 /  102     3.2s Rwlock parallel
[ ]   47    0    0   47 /  102     3.3s Rwlock parallel
[ ]   54    0    0   54 /  102     3.4s Rwlock parallel
[ ]   56    0    0   56 /  102     3.5s Rwlock parallel
[ ]   57    0    0   57 /  102     4.1s Rwlock parallel
[ ]   59    0    0   59 /  102     4.2s Rwlock parallel
[ ]   66    0    0   66 /  102     4.3s Rwlock parallel
[ ]   72    0    0   72 /  102     4.4s Rwlock parallel
[ ]   74    0    0   74 /  102     4.7s Rwlock parallel
[ ]   82    0    0   82 /  102     4.8s Rwlock parallel
[ ]   88    0    0   88 /  102     4.9s Rwlock parallel
[ ]   95    0    0   95 /  102     5.0s Rwlock parallel
[ ]   96    0    0   96 /  102     6.0s Rwlock parallel
[ ]   97    0    0   97 /  102     6.2s Rwlock parallel
[]  102    0    0  102 /  102     6.3s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 2445745437601509088
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  152     0.0s Rwlock sequential
[]  152    0    0  152 /  152     0.0s Rwlock sequential
[ ]    0    0    0    0 /  152     0.0s Rwlock parallel
[ ]    4    0    0    4 /  152     0.2s Rwlock parallel
[ ]    8    0    0    8 /  152     0.3s Rwlock parallel
[ ]   13    0    0   13 /  152     0.5s Rwlock parallel
[ ]   24    0    0   24 /  152     0.6s Rwlock parallel
[ ]   31    0    0   31 /  152     0.7s Rwlock parallel
[ ]   38    0    0   38 /  152     0.8s Rwlock parallel
[ ]   47    0    0   47 /  152     0.9s Rwlock parallel
[ ]   54    0    0   54 /  152     1.0s Rwlock parallel
[ ]   56    0    0   56 /  152     1.1s Rwlock parallel
[ ]   63    0    0   63 /  152     1.2s Rwlock parallel
[ ]   69    0    0   69 /  152     1.3s Rwlock parallel
[ ]   70    0    0   70 /  152     1.5s Rwlock parallel
[ ]   78    0    0   78 /  152     1.7s Rwlock parallel
[ ]   83    0    0   83 /  152     1.8s Rwlock parallel
[ ]   86    0    0   86 /  152     2.0s Rwlock parallel
[ ]   89    0    0   89 /  152     2.2s Rwlock parallel
[ ]   99    0    0   99 /  152     2.4s Rwlock parallel
[ ]  107    0    0  107 /  152     2.5s Rwlock parallel
[ ]  108    0    0  108 /  152     2.8s Rwlock parallel
[ ]  109    0    0  109 /  152     3.0s Rwlock parallel
[ ]  110    0    0  110 /  152     3.5s Rwlock parallel
[ ]  111    0    0  111 /  152     3.7s Rwlock parallel
[ ]  114    0    0  114 /  152     3.8s Rwlock parallel
[ ]  117    0    0  117 /  152     4.1s Rwlock parallel
[ ]  123    0    0  123 /  152     4.2s Rwlock parallel
[ ]  134    0    0  134 /  152     4.3s Rwlock parallel
[ ]  140    0    0  140 /  152     4.4s Rwlock parallel
[ ]  150    0    0  150 /  152     4.5s Rwlock parallel
[]  152    0    0  152 /  152     4.5s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 1876055189536841942
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  204     0.0s Rwlock sequential
[]  204    0    0  204 /  204     0.0s Rwlock sequential
[ ]    0    0    0    0 /  204     0.0s Rwlock parallel
[ ]    1    0    0    1 /  204     0.1s Rwlock parallel
[ ]    8    0    0    8 /  204     0.3s Rwlock parallel
[ ]   11    0    0   11 /  204     0.4s Rwlock parallel
[ ]   12    0    0   12 /  204     0.7s Rwlock parallel
[ ]   13    0    0   13 /  204     0.8s Rwlock parallel
[ ]   14    0    0   14 /  204     1.0s Rwlock parallel
[ ]   22    0    0   22 /  204     1.1s Rwlock parallel
[ ]   32    0    0   32 /  204     1.2s Rwlock parallel
[ ]   33    0    0   33 /  204     1.4s Rwlock parallel
[ ]   38    0    0   38 /  204     1.6s Rwlock parallel
[ ]   49    0    0   49 /  204     1.7s Rwlock parallel
[ ]   53    0    0   53 /  204     1.8s Rwlock parallel
[ ]   60    0    0   60 /  204     1.9s Rwlock parallel
[ ]   61    0    0   61 /  204     2.1s Rwlock parallel
[ ]   62    0    0   62 /  204     2.3s Rwlock parallel
[ ]   63    0    0   63 /  204     2.4s Rwlock parallel
[ ]   68    0    0   68 /  204     2.5s Rwlock parallel
[ ]   72    0    0   72 /  204     2.6s Rwlock parallel
[ ]   77    0    0   77 /  204     2.7s Rwlock parallel
[ ]   84    0    0   84 /  204     2.9s Rwlock parallel
[ ]   86    0    0   86 /  204     3.1s Rwlock parallel
[ ]   88    0    0   88 /  204     3.2s Rwlock parallel
[ ]   92    0    0   92 /  204     3.3s Rwlock parallel
[ ]   94    0    0   94 /  204     3.5s Rwlock parallel
[ ]  101    0    0  101 /  204     3.6s Rwlock parallel
[ ]  105    0    0  105 /  204     3.7s Rwlock parallel
[ ]  107    0    0  107 /  204     3.9s Rwlock parallel
[ ]  117    0    0  117 /  204     4.0s Rwlock parallel
[ ]  125    0    0  125 /  204     4.2s Rwlock parallel
[ ]  131    0    0  131 /  204     4.3s Rwlock parallel
[ ]  139    0    0  139 /  204     4.4s Rwlock parallel
[ ]  142    0    0  142 /  204     4.5s Rwlock parallel
[ ]  146    0    0  146 /  204     4.8s Rwlock parallel
[ ]  153    0    0  153 /  204     5.1s Rwlock parallel
[ ]  160    0    0  160 /  204     5.3s Rwlock parallel
[ ]  163    0    0  163 /  204     5.5s Rwlock parallel
[ ]  177    0    0  177 /  204     5.6s Rwlock parallel
[ ]  187    0    0  187 /  204     5.7s Rwlock parallel
[ ]  194    0    0  194 /  204     5.8s Rwlock parallel
[ ]  198    0    0  198 /  204     6.0s Rwlock parallel
[]  204    0    0  204 /  204     6.1s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 1425686368108873267
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  207     0.0s Rwlock sequential
[]  207    0    0  207 /  207     0.0s Rwlock sequential
[ ]    0    0    0    0 /  207     0.0s Rwlock parallel
[ ]    6    0    0    6 /  207     0.3s Rwlock parallel
[ ]    7    0    0    7 /  207     0.5s Rwlock parallel
[ ]   16    0    0   16 /  207     0.6s Rwlock parallel
[ ]   23    0    0   23 /  207     0.7s Rwlock parallel
[ ]   25    0    0   25 /  207     0.9s Rwlock parallel
[ ]   27    0    0   27 /  207     1.0s Rwlock parallel
[ ]   28    0    0   28 /  207     1.2s Rwlock parallel
[ ]   30    0    0   30 /  207     1.4s Rwlock parallel
[ ]   31    0    0   31 /  207     1.8s Rwlock parallel
[ ]   35    0    0   35 /  207     1.9s Rwlock parallel
[ ]   45    0    0   45 /  207     2.0s Rwlock parallel
[ ]   49    0    0   49 /  207     2.2s Rwlock parallel
[ ]   50    0    0   50 /  207     2.4s Rwlock parallel
[ ]   58    0    0   58 /  207     2.5s Rwlock parallel
[ ]   65    0    0   65 /  207     2.6s Rwlock parallel
[ ]   70    0    0   70 /  207     2.8s Rwlock parallel
[ ]   72    0    0   72 /  207     2.9s Rwlock parallel
[ ]   73    0    0   73 /  207     3.1s Rwlock parallel
[ ]   75    0    0   75 /  207     3.3s Rwlock parallel
[ ]   84    0    0   84 /  207     3.5s Rwlock parallel
[ ]   93    0    0   93 /  207     3.6s Rwlock parallel
[ ]   98    0    0   98 /  207     3.7s Rwlock parallel
[ ]  104    0    0  104 /  207     3.9s Rwlock parallel
[ ]  106    0    0  106 /  207     4.1s Rwlock parallel
[ ]  117    0    0  117 /  207     4.2s Rwlock parallel
[ ]  124    0    0  124 /  207     4.4s Rwlock parallel
[ ]  133    0    0  133 /  207     4.5s Rwlock parallel
[ ]  140    0    0  140 /  207     4.8s Rwlock parallel
[ ]  141    0    0  141 /  207     4.9s Rwlock parallel
[ ]  142    0    0  142 /  207     5.1s Rwlock parallel
[ ]  152    0    0  152 /  207     5.2s Rwlock parallel
[ ]  156    0    0  156 /  207     5.3s Rwlock parallel
[ ]  163    0    0  163 /  207     5.4s Rwlock parallel
[ ]  171    0    0  171 /  207     5.5s Rwlock parallel
[ ]  178    0    0  178 /  207     5.8s Rwlock parallel
[ ]  186    0    0  186 /  207     5.9s Rwlock parallel
[ ]  197    0    0  197 /  207     6.0s Rwlock parallel
[ ]  205    0    0  205 /  207     6.1s Rwlock parallel
[]  207    0    0  207 /  207     6.1s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 3698419534638573289
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  158     0.0s Rwlock sequential
[]  158    0    0  158 /  158     0.0s Rwlock sequential
[ ]    0    0    0    0 /  158     0.0s Rwlock parallel
[ ]    5    0    0    5 /  158     0.2s Rwlock parallel
[ ]   12    0    0   12 /  158     0.5s Rwlock parallel
[ ]   13    0    0   13 /  158     0.6s Rwlock parallel
[ ]   14    0    0   14 /  158     0.7s Rwlock parallel
[ ]   16    0    0   16 /  158     0.8s Rwlock parallel
[ ]   18    0    0   18 /  158     1.2s Rwlock parallel
[ ]   19    0    0   19 /  158     1.5s Rwlock parallel
[ ]   20    0    0   20 /  158     1.7s Rwlock parallel
[ ]   21    0    0   21 /  158     1.9s Rwlock parallel
[ ]   22    0    0   22 /  158     2.4s Rwlock parallel
[ ]   23    0    0   23 /  158     2.9s Rwlock parallel
[ ]   24    0    0   24 /  158     3.1s Rwlock parallel
[ ]   28    0    0   28 /  158     3.2s Rwlock parallel
[ ]   36    0    0   36 /  158     3.5s Rwlock parallel
[ ]   41    0    0   41 /  158     3.7s Rwlock parallel
[ ]   47    0    0   47 /  158     3.8s Rwlock parallel
[ ]   52    0    0   52 /  158     4.0s Rwlock parallel
[ ]   60    0    0   60 /  158     4.2s Rwlock parallel
[ ]   69    0    0   69 /  158     4.3s Rwlock parallel
[ ]   80    0    0   80 /  158     4.4s Rwlock parallel
[ ]   88    0    0   88 /  158     4.6s Rwlock parallel
[ ]   93    0    0   93 /  158     4.7s Rwlock parallel
[ ]   96    0    0   96 /  158     4.9s Rwlock parallel
[ ]  102    0    0  102 /  158     5.1s Rwlock parallel
[ ]  109    0    0  109 /  158     5.3s Rwlock parallel
[ ]  110    0    0  110 /  158     5.4s Rwlock parallel
[ ]  112    0    0  112 /  158     5.5s Rwlock parallel
[ ]  117    0    0  117 /  158     5.7s Rwlock parallel
[ ]  120    0    0  120 /  158     5.8s Rwlock parallel
[ ]  124    0    0  124 /  158     6.0s Rwlock parallel
[ ]  131    0    0  131 /  158     6.1s Rwlock parallel
[ ]  135    0    0  135 /  158     6.2s Rwlock parallel
[ ]  137    0    0  137 /  158     6.4s Rwlock parallel
[ ]  147    0    0  147 /  158     6.6s Rwlock parallel
[ ]  148    0    0  148 /  158     6.8s Rwlock parallel
[ ]  149    0    0  149 /  158     7.5s Rwlock parallel
[ ]  150    0    0  150 /  158     9.0s Rwlock parallel
[ ]  151    0    0  151 /  158     9.9s Rwlock parallel
[ ]  152    0    0  152 /  158    10.6s Rwlock parallel
[ ]  153    0    0  153 /  158    11.3s Rwlock parallel
[ ]  154    0    0  154 /  158    11.6s Rwlock parallel
[ ]  156    0    0  156 /  158    12.1s Rwlock parallel
[ ]  157    0    0  157 /  158    12.4s Rwlock parallel
[ ]  158    0    0  158 /  158    12.6s Rwlock parallel
[]  158    0    0  158 /  158    12.6s Rwlock parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_mpmcq.exe)
random seed: 2960317648116591976
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   32     0.0s Mpmcq sequential
[]   32    0    0   32 /   32     0.0s Mpmcq sequential
[ ]    0    0    0    0 /   32     0.0s Mpmcq parallel
[ ]    1    0    0    1 /   32     3.2s Mpmcq parallel
[ ]    2    0    0    2 /   32     5.7s Mpmcq parallel
[ ]    3    0    0    3 /   32     9.1s Mpmcq parallel
[ ]    4    0    0    4 /   32    12.7s Mpmcq parallel
[ ]    5    0    0    5 /   32    13.9s Mpmcq parallel
[ ]    6    0    0    6 /   32    14.7s Mpmcq parallel
[ ]    7    0    0    7 /   32    15.6s Mpmcq parallel
[ ]    8    0    0    8 /   32    15.9s Mpmcq parallel
[ ]    9    0    0    9 /   32    17.1s Mpmcq parallel
[ ]   10    0    0   10 /   32    17.7s Mpmcq parallel
[ ]   12    0    0   12 /   32    17.9s Mpmcq parallel
[ ]   13    0    0   13 /   32    18.3s Mpmcq parallel
[ ]   14    0    0   14 /   32    18.4s Mpmcq parallel
[ ]   15    0    0   15 /   32    18.8s Mpmcq parallel
[ ]   16    0    0   16 /   32    18.9s Mpmcq parallel
[ ]   20    0    0   20 /   32    19.2s Mpmcq parallel
[ ]   21    0    0   21 /   32    19.3s Mpmcq parallel
[ ]   22    0    0   22 /   32    19.6s Mpmcq parallel
[ ]   23    0    0   23 /   32    19.8s Mpmcq parallel
[ ]   24    0    0   24 /   32    20.3s Mpmcq parallel
[ ]   25    0    0   25 /   32    20.6s Mpmcq parallel
[ ]   26    0    0   26 /   32    20.7s Mpmcq parallel
[ ]   27    0    0   27 /   32    20.8s Mpmcq parallel
[ ]   28    0    0   28 /   32    21.0s Mpmcq parallel
[ ]   29    0    0   29 /   32    21.3s Mpmcq parallel
[ ]   30    0    0   30 /   32    21.6s Mpmcq parallel
[ ]   31    0    0   31 /   32    22.1s Mpmcq parallel
[ ]   32    0    0   32 /   32    22.8s Mpmcq parallel
[]   32    0    0   32 /   32    22.8s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 3188224457432861536
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   52     0.0s Mpmcq sequential
[]   52    0    0   52 /   52     0.0s Mpmcq sequential
[ ]    0    0    0    0 /   52     0.0s Mpmcq parallel
[ ]    1    0    0    1 /   52     0.5s Mpmcq parallel
[ ]    2    0    0    2 /   52     1.5s Mpmcq parallel
[ ]    3    0    0    3 /   52     2.3s Mpmcq parallel
[ ]    4    0    0    4 /   52     2.4s Mpmcq parallel
[ ]    6    0    0    6 /   52     2.6s Mpmcq parallel
[ ]    7    0    0    7 /   52     2.7s Mpmcq parallel
[ ]    8    0    0    8 /   52     3.0s Mpmcq parallel
[ ]   12    0    0   12 /   52     3.1s Mpmcq parallel
[ ]   13    0    0   13 /   52     3.3s Mpmcq parallel
[ ]   15    0    0   15 /   52     3.6s Mpmcq parallel
[ ]   16    0    0   16 /   52     3.8s Mpmcq parallel
[ ]   23    0    0   23 /   52     3.9s Mpmcq parallel
[ ]   25    0    0   25 /   52     4.1s Mpmcq parallel
[ ]   28    0    0   28 /   52     4.2s Mpmcq parallel
[ ]   34    0    0   34 /   52     4.4s Mpmcq parallel
[ ]   39    0    0   39 /   52     4.7s Mpmcq parallel
[ ]   40    0    0   40 /   52     5.0s Mpmcq parallel
[ ]   41    0    0   41 /   52     5.3s Mpmcq parallel
[ ]   42    0    0   42 /   52     5.6s Mpmcq parallel
[ ]   44    0    0   44 /   52     5.7s Mpmcq parallel
[ ]   46    0    0   46 /   52     5.8s Mpmcq parallel
[ ]   49    0    0   49 /   52     6.0s Mpmcq parallel
[]   52    0    0   52 /   52     6.1s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 3946021575343040232
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   90     0.0s Mpmcq sequential
[]   90    0    0   90 /   90     0.0s Mpmcq sequential
[ ]    0    0    0    0 /   90     0.0s Mpmcq parallel
[ ]    1    0    0    1 /   90     0.1s Mpmcq parallel
[ ]    7    0    0    7 /   90     0.2s Mpmcq parallel
[ ]    9    0    0    9 /   90     0.3s Mpmcq parallel
[ ]   10    0    0   10 /   90     0.5s Mpmcq parallel
[ ]   17    0    0   17 /   90     0.8s Mpmcq parallel
[ ]   19    0    0   19 /   90     1.0s Mpmcq parallel
[ ]   22    0    0   22 /   90     1.1s Mpmcq parallel
[ ]   25    0    0   25 /   90     1.2s Mpmcq parallel
[ ]   36    0    0   36 /   90     1.3s Mpmcq parallel
[ ]   41    0    0   41 /   90     1.9s Mpmcq parallel
[ ]   42    0    0   42 /   90     2.0s Mpmcq parallel
[ ]   48    0    0   48 /   90     2.1s Mpmcq parallel
[ ]   55    0    0   55 /   90     2.4s Mpmcq parallel
[ ]   56    0    0   56 /   90     2.5s Mpmcq parallel
[ ]   63    0    0   63 /   90     2.6s Mpmcq parallel
[ ]   72    0    0   72 /   90     2.8s Mpmcq parallel
[ ]   75    0    0   75 /   90     3.2s Mpmcq parallel
[ ]   76    0    0   76 /   90     4.0s Mpmcq parallel
[ ]   79    0    0   79 /   90     4.1s Mpmcq parallel
[ ]   86    0    0   86 /   90     4.2s Mpmcq parallel
[ ]   87    0    0   87 /   90     4.4s Mpmcq parallel
[ ]   89    0    0   89 /   90     4.5s Mpmcq parallel
[ ]   90    0    0   90 /   90     4.7s Mpmcq parallel
[]   90    0    0   90 /   90     4.7s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 3198402484407158212
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  137     0.0s Mpmcq sequential
[]  137    0    0  137 /  137     0.0s Mpmcq sequential
[ ]    0    0    0    0 /  137     0.0s Mpmcq parallel
[ ]    6    0    0    6 /  137     0.3s Mpmcq parallel
[ ]   12    0    0   12 /  137     0.4s Mpmcq parallel
[ ]   18    0    0   18 /  137     0.5s Mpmcq parallel
[ ]   19    0    0   19 /  137     0.8s Mpmcq parallel
[ ]   24    0    0   24 /  137     1.0s Mpmcq parallel
[ ]   29    0    0   29 /  137     1.2s Mpmcq parallel
[ ]   34    0    0   34 /  137     1.3s Mpmcq parallel
[ ]   37    0    0   37 /  137     1.5s Mpmcq parallel
[ ]   40    0    0   40 /  137     1.6s Mpmcq parallel
[ ]   47    0    0   47 /  137     1.8s Mpmcq parallel
[ ]   52    0    0   52 /  137     1.9s Mpmcq parallel
[ ]   53    0    0   53 /  137     2.2s Mpmcq parallel
[ ]   54    0    0   54 /  137     2.5s Mpmcq parallel
[ ]   55    0    0   55 /  137     3.1s Mpmcq parallel
[ ]   58    0    0   58 /  137     3.2s Mpmcq parallel
[ ]   63    0    0   63 /  137     3.4s Mpmcq parallel
[ ]   69    0    0   69 /  137     3.5s Mpmcq parallel
[ ]   75    0    0   75 /  137     3.6s Mpmcq parallel
[ ]   91    0    0   91 /  137     3.9s Mpmcq parallel
[ ]   94    0    0   94 /  137     4.0s Mpmcq parallel
[ ]   97    0    0   97 /  137     4.4s Mpmcq parallel
[ ]   98    0    0   98 /  137     4.7s Mpmcq parallel
[ ]   99    0    0   99 /  137     4.8s Mpmcq parallel
[ ]  100    0    0  100 /  137     4.9s Mpmcq parallel
[ ]  109    0    0  109 /  137     5.0s Mpmcq parallel
[ ]  112    0    0  112 /  137     5.1s Mpmcq parallel
[ ]  118    0    0  118 /  137     5.4s Mpmcq parallel
[ ]  125    0    0  125 /  137     5.5s Mpmcq parallel
[ ]  128    0    0  128 /  137     5.7s Mpmcq parallel
[ ]  137    0    0  137 /  137     6.1s Mpmcq parallel
[]  137    0    0  137 /  137     6.1s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 2074549164278273736
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  159     0.0s Mpmcq sequential
[]  159    0    0  159 /  159     0.0s Mpmcq sequential
[ ]    0    0    0    0 /  159     0.0s Mpmcq parallel
[ ]    2    0    0    2 /  159     0.2s Mpmcq parallel
[ ]    4    0    0    4 /  159     0.4s Mpmcq parallel
[ ]   13    0    0   13 /  159     0.9s Mpmcq parallel
[ ]   17    0    0   17 /  159     1.2s Mpmcq parallel
[ ]   23    0    0   23 /  159     1.4s Mpmcq parallel
[ ]   29    0    0   29 /  159     1.5s Mpmcq parallel
[ ]   31    0    0   31 /  159     1.6s Mpmcq parallel
[ ]   32    0    0   32 /  159     1.8s Mpmcq parallel
[ ]   41    0    0   41 /  159     1.9s Mpmcq parallel
[ ]   49    0    0   49 /  159     2.0s Mpmcq parallel
[ ]   52    0    0   52 /  159     2.1s Mpmcq parallel
[ ]   54    0    0   54 /  159     2.2s Mpmcq parallel
[ ]   56    0    0   56 /  159     2.5s Mpmcq parallel
[ ]   60    0    0   60 /  159     2.8s Mpmcq parallel
[ ]   63    0    0   63 /  159     3.0s Mpmcq parallel
[ ]   64    0    0   64 /  159     3.1s Mpmcq parallel
[ ]   69    0    0   69 /  159     3.2s Mpmcq parallel
[ ]   75    0    0   75 /  159     3.5s Mpmcq parallel
[ ]   81    0    0   81 /  159     3.6s Mpmcq parallel
[ ]   86    0    0   86 /  159     3.7s Mpmcq parallel
[ ]   98    0    0   98 /  159     3.8s Mpmcq parallel
[ ]  101    0    0  101 /  159     4.1s Mpmcq parallel
[ ]  112    0    0  112 /  159     4.2s Mpmcq parallel
[ ]  118    0    0  118 /  159     4.5s Mpmcq parallel
[ ]  124    0    0  124 /  159     4.7s Mpmcq parallel
[ ]  127    0    0  127 /  159     5.2s Mpmcq parallel
[ ]  133    0    0  133 /  159     5.3s Mpmcq parallel
[ ]  134    0    0  134 /  159     5.7s Mpmcq parallel
[ ]  137    0    0  137 /  159     5.8s Mpmcq parallel
[ ]  139    0    0  139 /  159     6.0s Mpmcq parallel
[ ]  145    0    0  145 /  159     6.2s Mpmcq parallel
[ ]  152    0    0  152 /  159     6.4s Mpmcq parallel
[ ]  156    0    0  156 /  159     6.5s Mpmcq parallel
[ ]  159    0    0  159 /  159     6.8s Mpmcq parallel
[]  159    0    0  159 /  159     6.8s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 336346234708974278
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  137     0.0s Mpmcq sequential
[]  137    0    0  137 /  137     0.0s Mpmcq sequential
[ ]    0    0    0    0 /  137     0.0s Mpmcq parallel
[ ]    9    0    0    9 /  137     0.2s Mpmcq parallel
[ ]   12    0    0   12 /  137     0.4s Mpmcq parallel
[ ]   16    0    0   16 /  137     0.5s Mpmcq parallel
[ ]   17    0    0   17 /  137     0.6s Mpmcq parallel
[ ]   18    0    0   18 /  137     0.8s Mpmcq parallel
[ ]   21    0    0   21 /  137     1.0s Mpmcq parallel
[ ]   31    0    0   31 /  137     1.1s Mpmcq parallel
[ ]   34    0    0   34 /  137     1.2s Mpmcq parallel
[ ]   35    0    0   35 /  137     1.4s Mpmcq parallel
[ ]   41    0    0   41 /  137     1.5s Mpmcq parallel
[ ]   43    0    0   43 /  137     1.7s Mpmcq parallel
[ ]   51    0    0   51 /  137     2.1s Mpmcq parallel
[ ]   58    0    0   58 /  137     2.4s Mpmcq parallel
[ ]   65    0    0   65 /  137     2.6s Mpmcq parallel
[ ]   71    0    0   71 /  137     2.8s Mpmcq parallel
[ ]   82    0    0   82 /  137     2.9s Mpmcq parallel
[ ]   87    0    0   87 /  137     3.0s Mpmcq parallel
[ ]   97    0    0   97 /  137     3.3s Mpmcq parallel
[ ]   98    0    0   98 /  137     3.4s Mpmcq parallel
[ ]  100    0    0  100 /  137     3.6s Mpmcq parallel
[ ]  101    0    0  101 /  137     3.9s Mpmcq parallel
[ ]  102    0    0  102 /  137     4.0s Mpmcq parallel
[ ]  104    0    0  104 /  137     4.6s Mpmcq parallel
[ ]  106    0    0  106 /  137     4.9s Mpmcq parallel
[ ]  107    0    0  107 /  137     5.1s Mpmcq parallel
[ ]  108    0    0  108 /  137     5.5s Mpmcq parallel
[ ]  109    0    0  109 /  137     6.1s Mpmcq parallel
[ ]  110    0    0  110 /  137     6.4s Mpmcq parallel
[ ]  114    0    0  114 /  137     6.5s Mpmcq parallel
[ ]  120    0    0  120 /  137     6.8s Mpmcq parallel
[ ]  122    0    0  122 /  137     6.9s Mpmcq parallel
[ ]  130    0    0  130 /  137     7.1s Mpmcq parallel
[]  137    0    0  137 /  137     7.2s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 728320696459298629
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   72     0.0s Mpmcq sequential
[]   72    0    0   72 /   72     0.0s Mpmcq sequential
[ ]    0    0    0    0 /   72     0.0s Mpmcq parallel
[ ]    8    0    0    8 /   72     0.3s Mpmcq parallel
[ ]   13    0    0   13 /   72     0.5s Mpmcq parallel
[ ]   14    0    0   14 /   72     0.6s Mpmcq parallel
[ ]   19    0    0   19 /   72     1.0s Mpmcq parallel
[ ]   25    0    0   25 /   72     1.1s Mpmcq parallel
[ ]   29    0    0   29 /   72     1.2s Mpmcq parallel
[ ]   36    0    0   36 /   72     1.5s Mpmcq parallel
[ ]   39    0    0   39 /   72     1.8s Mpmcq parallel
[ ]   41    0    0   41 /   72     2.0s Mpmcq parallel
[ ]   45    0    0   45 /   72     2.3s Mpmcq parallel
[ ]   47    0    0   47 /   72     2.4s Mpmcq parallel
[ ]   48    0    0   48 /   72     2.5s Mpmcq parallel
[ ]   53    0    0   53 /   72     3.9s Mpmcq parallel
[ ]   54    0    0   54 /   72     5.5s Mpmcq parallel
[ ]   55    0    0   55 /   72     6.7s Mpmcq parallel
[ ]   56    0    0   56 /   72     7.4s Mpmcq parallel
[ ]   57    0    0   57 /   72     7.7s Mpmcq parallel
[ ]   61    0    0   61 /   72     8.0s Mpmcq parallel
[ ]   62    0    0   62 /   72     8.2s Mpmcq parallel
[ ]   63    0    0   63 /   72     8.5s Mpmcq parallel
[ ]   64    0    0   64 /   72     9.0s Mpmcq parallel
[ ]   65    0    0   65 /   72     9.7s Mpmcq parallel
[ ]   66    0    0   66 /   72     9.9s Mpmcq parallel
[ ]   67    0    0   67 /   72    10.1s Mpmcq parallel
[ ]   70    0    0   70 /   72    10.2s Mpmcq parallel
[]   72    0    0   72 /   72    10.2s Mpmcq parallel
================================================================================
success (ran 2 tests)
(cd _build/default/bench && ./main.exe -brief 'Picos Cancel_after with Picos_select')
Picos Cancel_after with Picos_select:
async round-trips over time/1 worker:
0.11 M/s
async round-trips over time/2 workers:
0.06 M/s
async round-trips over time/4 workers:
0.13 M/s
round-trips over time/1 worker:
0.06 M/s
round-trips over time/2 workers:
0.09 M/s
round-trips over time/4 workers:
0.20 M/s
time per async round-trip/1 worker:
9219.16 ns
time per async round-trip/2 workers:
31420.62 ns
time per async round-trip/4 workers:
29731.65 ns
time per round-trip/1 worker:
16037.69 ns
time per round-trip/2 workers:
22921.67 ns
time per round-trip/4 workers:
20129.68 ns
(cd _build/default/test && ./test_mpscq.exe)
random seed: 4563034322994048979
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   32     0.0s Mpscq sequential
[]   32    0    0   32 /   32     0.0s Mpscq sequential
[ ]    0    0    0    0 /   32     0.0s Mpscq parallel
[ ]    1    0    0    1 /   32     4.6s Mpscq parallel
[ ]    2    0    0    2 /   32     8.9s Mpscq parallel
[ ]    3    0    0    3 /   32    12.3s Mpscq parallel
[ ]    4    0    0    4 /   32    14.1s Mpscq parallel
[ ]    5    0    0    5 /   32    15.5s Mpscq parallel
[ ]    6    0    0    6 /   32    16.1s Mpscq parallel
[ ]    7    0    0    7 /   32    17.1s Mpscq parallel
[ ]    8    0    0    8 /   32    17.7s Mpscq parallel
[ ]   10    0    0   10 /   32    18.4s Mpscq parallel
[ ]   11    0    0   11 /   32    18.8s Mpscq parallel
[ ]   12    0    0   12 /   32    19.0s Mpscq parallel
[ ]   13    0    0   13 /   32    19.1s Mpscq parallel
[ ]   14    0    0   14 /   32    19.4s Mpscq parallel
[ ]   15    0    0   15 /   32    19.8s Mpscq parallel
[ ]   16    0    0   16 /   32    20.3s Mpscq parallel
[ ]   17    0    0   17 /   32    20.6s Mpscq parallel
[ ]   18    0    0   18 /   32    20.8s Mpscq parallel
[ ]   19    0    0   19 /   32    20.9s Mpscq parallel
[ ]   20    0    0   20 /   32    21.2s Mpscq parallel
[ ]   21    0    0   21 /   32    21.5s Mpscq parallel
[ ]   22    0    0   22 /   32    21.9s Mpscq parallel
[ ]   23    0    0   23 /   32    22.7s Mpscq parallel
[ ]   24    0    0   24 /   32    23.2s Mpscq parallel
[ ]   25    0    0   25 /   32    24.0s Mpscq parallel
[ ]   26    0    0   26 /   32    25.1s Mpscq parallel
[ ]   28    0    0   28 /   32    25.3s Mpscq parallel
[ ]   30    0    0   30 /   32    25.7s Mpscq parallel
[]   32    0    0   32 /   32    25.7s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 1122013297029587341
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   42     0.0s Mpscq sequential
[]   42    0    0   42 /   42     0.0s Mpscq sequential
[ ]    0    0    0    0 /   42     0.0s Mpscq parallel
[ ]    6    0    0    6 /   42     0.1s Mpscq parallel
[ ]    9    0    0    9 /   42     0.4s Mpscq parallel
[ ]   11    0    0   11 /   42     0.5s Mpscq parallel
[ ]   14    0    0   14 /   42     1.4s Mpscq parallel
[ ]   17    0    0   17 /   42     1.7s Mpscq parallel
[ ]   18    0    0   18 /   42     2.1s Mpscq parallel
[ ]   19    0    0   19 /   42     2.6s Mpscq parallel
[ ]   21    0    0   21 /   42     2.8s Mpscq parallel
[ ]   25    0    0   25 /   42     3.1s Mpscq parallel
[ ]   29    0    0   29 /   42     3.3s Mpscq parallel
[ ]   30    0    0   30 /   42     3.7s Mpscq parallel
[ ]   32    0    0   32 /   42     3.9s Mpscq parallel
[ ]   33    0    0   33 /   42     4.3s Mpscq parallel
[ ]   37    0    0   37 /   42     4.4s Mpscq parallel
[ ]   38    0    0   38 /   42     4.9s Mpscq parallel
[ ]   39    0    0   39 /   42     5.0s Mpscq parallel
[ ]   42    0    0   42 /   42     5.1s Mpscq parallel
[]   42    0    0   42 /   42     5.1s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 3918601503654619302
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   70     0.0s Mpscq sequential
[]   70    0    0   70 /   70     0.0s Mpscq sequential
[ ]    0    0    0    0 /   70     0.0s Mpscq parallel
[ ]    5    0    0    5 /   70     0.4s Mpscq parallel
[ ]    7    0    0    7 /   70     0.5s Mpscq parallel
[ ]   12    0    0   12 /   70     0.6s Mpscq parallel
[ ]   15    0    0   15 /   70     1.9s Mpscq parallel
[ ]   18    0    0   18 /   70     2.2s Mpscq parallel
[ ]   20    0    0   20 /   70     2.9s Mpscq parallel
[ ]   28    0    0   28 /   70     3.0s Mpscq parallel
[ ]   37    0    0   37 /   70     3.3s Mpscq parallel
[ ]   39    0    0   39 /   70     3.5s Mpscq parallel
[ ]   40    0    0   40 /   70     3.6s Mpscq parallel
[ ]   44    0    0   44 /   70     4.0s Mpscq parallel
[ ]   46    0    0   46 /   70     4.2s Mpscq parallel
[ ]   49    0    0   49 /   70     4.3s Mpscq parallel
[ ]   52    0    0   52 /   70     4.8s Mpscq parallel
[ ]   53    0    0   53 /   70     5.0s Mpscq parallel
[ ]   54    0    0   54 /   70     5.6s Mpscq parallel
[ ]   55    0    0   55 /   70     5.8s Mpscq parallel
[ ]   57    0    0   57 /   70     5.9s Mpscq parallel
[ ]   61    0    0   61 /   70     6.0s Mpscq parallel
[ ]   63    0    0   63 /   70     6.2s Mpscq parallel
[ ]   64    0    0   64 /   70     6.4s Mpscq parallel
[ ]   65    0    0   65 /   70     6.6s Mpscq parallel
[]   70    0    0   70 /   70     6.6s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 2775800467086341993
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   86     0.0s Mpscq sequential
[]   86    0    0   86 /   86     0.0s Mpscq sequential
[ ]    0    0    0    0 /   86     0.0s Mpscq parallel
[ ]   10    0    0   10 /   86     0.1s Mpscq parallel
[ ]   12    0    0   12 /   86     0.5s Mpscq parallel
[ ]   13    0    0   13 /   86     0.9s Mpscq parallel
[ ]   15    0    0   15 /   86     1.0s Mpscq parallel
[ ]   23    0    0   23 /   86     1.1s Mpscq parallel
[ ]   30    0    0   30 /   86     1.2s Mpscq parallel
[ ]   37    0    0   37 /   86     1.3s Mpscq parallel
[ ]   43    0    0   43 /   86     1.5s Mpscq parallel
[ ]   52    0    0   52 /   86     1.6s Mpscq parallel
[ ]   61    0    0   61 /   86     1.7s Mpscq parallel
[ ]   62    0    0   62 /   86     2.2s Mpscq parallel
[ ]   63    0    0   63 /   86     2.4s Mpscq parallel
[ ]   67    0    0   67 /   86     2.6s Mpscq parallel
[ ]   71    0    0   71 /   86     2.8s Mpscq parallel
[ ]   72    0    0   72 /   86     3.1s Mpscq parallel
[ ]   77    0    0   77 /   86     3.2s Mpscq parallel
[]   86    0    0   86 /   86     3.3s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 4347906176552422088
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  108     0.0s Mpscq sequential
[]  108    0    0  108 /  108     0.0s Mpscq sequential
[ ]    0    0    0    0 /  108     0.0s Mpscq parallel
[ ]    6    0    0    6 /  108     0.1s Mpscq parallel
[ ]   17    0    0   17 /  108     0.2s Mpscq parallel
[ ]   22    0    0   22 /  108     0.6s Mpscq parallel
[ ]   25    0    0   25 /  108     0.9s Mpscq parallel
[ ]   26    0    0   26 /  108     1.0s Mpscq parallel
[ ]   33    0    0   33 /  108     1.1s Mpscq parallel
[ ]   39    0    0   39 /  108     1.6s Mpscq parallel
[ ]   44    0    0   44 /  108     1.8s Mpscq parallel
[ ]   53    0    0   53 /  108     1.9s Mpscq parallel
[ ]   64    0    0   64 /  108     2.0s Mpscq parallel
[ ]   70    0    0   70 /  108     2.4s Mpscq parallel
[ ]   75    0    0   75 /  108     2.5s Mpscq parallel
[ ]   78    0    0   78 /  108     2.7s Mpscq parallel
[ ]   84    0    0   84 /  108     2.9s Mpscq parallel
[ ]   89    0    0   89 /  108     3.0s Mpscq parallel
[ ]   98    0    0   98 /  108     3.1s Mpscq parallel
[ ]  105    0    0  105 /  108     3.2s Mpscq parallel
[ ]  107    0    0  107 /  108     3.4s Mpscq parallel
[]  108    0    0  108 /  108     3.4s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 3443524216228727101
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  121     0.0s Mpscq sequential
[]  121    0    0  121 /  121     0.0s Mpscq sequential
[ ]    0    0    0    0 /  121     0.0s Mpscq parallel
[ ]    4    0    0    4 /  121     0.1s Mpscq parallel
[ ]    5    0    0    5 /  121     0.3s Mpscq parallel
[ ]    6    0    0    6 /  121     0.5s Mpscq parallel
[ ]    7    0    0    7 /  121     0.6s Mpscq parallel
[ ]   12    0    0   12 /  121     1.1s Mpscq parallel
[ ]   20    0    0   20 /  121     1.3s Mpscq parallel
[ ]   23    0    0   23 /  121     1.4s Mpscq parallel
[ ]   25    0    0   25 /  121     1.5s Mpscq parallel
[ ]   26    0    0   26 /  121     1.8s Mpscq parallel
[ ]   30    0    0   30 /  121     2.0s Mpscq parallel
[ ]   34    0    0   34 /  121     2.1s Mpscq parallel
[ ]   39    0    0   39 /  121     2.2s Mpscq parallel
[ ]   46    0    0   46 /  121     2.4s Mpscq parallel
[ ]   53    0    0   53 /  121     2.7s Mpscq parallel
[ ]   57    0    0   57 /  121     2.8s Mpscq parallel
[ ]   64    0    0   64 /  121     2.9s Mpscq parallel
[ ]   66    0    0   66 /  121     3.1s Mpscq parallel
[ ]   71    0    0   71 /  121     3.3s Mpscq parallel
[ ]   79    0    0   79 /  121     3.5s Mpscq parallel
[ ]   91    0    0   91 /  121     3.6s Mpscq parallel
[ ]   97    0    0   97 /  121     3.9s Mpscq parallel
[ ]   99    0    0   99 /  121     4.3s Mpscq parallel
[ ]  104    0    0  104 /  121     4.6s Mpscq parallel
[ ]  107    0    0  107 /  121     4.8s Mpscq parallel
[ ]  111    0    0  111 /  121     4.9s Mpscq parallel
[ ]  120    0    0  120 /  121     5.0s Mpscq parallel
[]  121    0    0  121 /  121     5.0s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 2460851253630280086
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  101     0.0s Mpscq sequential
[]  101    0    0  101 /  101     0.0s Mpscq sequential
[ ]    0    0    0    0 /  101     0.0s Mpscq parallel
[ ]    5    0    0    5 /  101     0.1s Mpscq parallel
[ ]    8    0    0    8 /  101     0.4s Mpscq parallel
[ ]   18    0    0   18 /  101     0.6s Mpscq parallel
[ ]   25    0    0   25 /  101     0.8s Mpscq parallel
[ ]   29    0    0   29 /  101     1.0s Mpscq parallel
[ ]   30    0    0   30 /  101     1.1s Mpscq parallel
[ ]   31    0    0   31 /  101     1.8s Mpscq parallel
[ ]   32    0    0   32 /  101     2.1s Mpscq parallel
[ ]   33    0    0   33 /  101     2.6s Mpscq parallel
[ ]   34    0    0   34 /  101     3.2s Mpscq parallel
[ ]   35    0    0   35 /  101     3.6s Mpscq parallel
[ ]   37    0    0   37 /  101     3.7s Mpscq parallel
[ ]   40    0    0   40 /  101     4.0s Mpscq parallel
[ ]   44    0    0   44 /  101     4.1s Mpscq parallel
[ ]   48    0    0   48 /  101     4.4s Mpscq parallel
[ ]   50    0    0   50 /  101     4.6s Mpscq parallel
[ ]   62    0    0   62 /  101     4.7s Mpscq parallel
[ ]   68    0    0   68 /  101     4.9s Mpscq parallel
[ ]   69    0    0   69 /  101     5.2s Mpscq parallel
[ ]   72    0    0   72 /  101     5.4s Mpscq parallel
[ ]   78    0    0   78 /  101     5.5s Mpscq parallel
[ ]   82    0    0   82 /  101     5.9s Mpscq parallel
[ ]   84    0    0   84 /  101     6.0s Mpscq parallel
[ ]   87    0    0   87 /  101     6.2s Mpscq parallel
[ ]   90    0    0   90 /  101     6.4s Mpscq parallel
[ ]   96    0    0   96 /  101     6.6s Mpscq parallel
[ ]  100    0    0  100 /  101     6.7s Mpscq parallel
[]  101    0    0  101 /  101     6.7s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 3381707728941706437
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   41     0.0s Mpscq sequential
[]   41    0    0   41 /   41     0.0s Mpscq sequential
[ ]    0    0    0    0 /   41     0.0s Mpscq parallel
[ ]    3    0    0    3 /   41     0.2s Mpscq parallel
[ ]   15    0    0   15 /   41     0.3s Mpscq parallel
[ ]   19    0    0   19 /   41     1.8s Mpscq parallel
[ ]   20    0    0   20 /   41     3.7s Mpscq parallel
[ ]   21    0    0   21 /   41     4.4s Mpscq parallel
[ ]   22    0    0   22 /   41     5.4s Mpscq parallel
[ ]   26    0    0   26 /   41     5.8s Mpscq parallel
[ ]   27    0    0   27 /   41     6.2s Mpscq parallel
[ ]   28    0    0   28 /   41     6.4s Mpscq parallel
[ ]   29    0    0   29 /   41     6.8s Mpscq parallel
[ ]   30    0    0   30 /   41     7.5s Mpscq parallel
[ ]   31    0    0   31 /   41     7.8s Mpscq parallel
[ ]   34    0    0   34 /   41     7.9s Mpscq parallel
[ ]   35    0    0   35 /   41     8.0s Mpscq parallel
[ ]   36    0    0   36 /   41     8.2s Mpscq parallel
[ ]   37    0    0   37 /   41     8.9s Mpscq parallel
[ ]   38    0    0   38 /   41     9.5s Mpscq parallel
[]   41    0    0   41 /   41     9.5s Mpscq parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_htbl.exe)
random seed: 247860047371678869
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   32     0.0s Htbl sequential
[]   32    0    0   32 /   32     0.0s Htbl sequential
[ ]    0    0    0    0 /   32     0.0s Htbl parallel
[ ]    1    0    0    1 /   32     3.1s Htbl parallel
[ ]    2    0    0    2 /   32     5.3s Htbl parallel
[ ]    3    0    0    3 /   32     8.9s Htbl parallel
[ ]    4    0    0    4 /   32    11.6s Htbl parallel
[ ]    5    0    0    5 /   32    13.2s Htbl parallel
[ ]    6    0    0    6 /   32    14.4s Htbl parallel
[ ]    7    0    0    7 /   32    15.5s Htbl parallel
[ ]    8    0    0    8 /   32    15.7s Htbl parallel
[ ]    9    0    0    9 /   32    15.9s Htbl parallel
[ ]   10    0    0   10 /   32    17.0s Htbl parallel
[ ]   11    0    0   11 /   32    17.5s Htbl parallel
[ ]   12    0    0   12 /   32    17.7s Htbl parallel
[ ]   13    0    0   13 /   32    17.9s Htbl parallel
[ ]   14    0    0   14 /   32    18.2s Htbl parallel
[ ]   15    0    0   15 /   32    18.3s Htbl parallel
[ ]   16    0    0   16 /   32    18.6s Htbl parallel
[ ]   17    0    0   17 /   32    18.7s Htbl parallel
[ ]   19    0    0   19 /   32    18.8s Htbl parallel
[ ]   20    0    0   20 /   32    19.0s Htbl parallel
[ ]   22    0    0   22 /   32    19.3s Htbl parallel
[ ]   23    0    0   23 /   32    19.4s Htbl parallel
[ ]   24    0    0   24 /   32    19.6s Htbl parallel
[ ]   25    0    0   25 /   32    20.2s Htbl parallel
[ ]   26    0    0   26 /   32    20.5s Htbl parallel
[ ]   27    0    0   27 /   32    20.7s Htbl parallel
[ ]   28    0    0   28 /   32    21.0s Htbl parallel
[ ]   29    0    0   29 /   32    21.3s Htbl parallel
[ ]   30    0    0   30 /   32    21.5s Htbl parallel
[ ]   31    0    0   31 /   32    22.0s Htbl parallel
[ ]   32    0    0   32 /   32    23.1s Htbl parallel
[]   32    0    0   32 /   32    23.1s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 937015042946754858
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   50     0.0s Htbl sequential
[]   50    0    0   50 /   50     0.0s Htbl sequential
[ ]    0    0    0    0 /   50     0.0s Htbl parallel
[ ]    1    0    0    1 /   50     0.7s Htbl parallel
[ ]    2    0    0    2 /   50     1.8s Htbl parallel
[ ]    3    0    0    3 /   50     2.0s Htbl parallel
[ ]    6    0    0    6 /   50     2.1s Htbl parallel
[ ]   10    0    0   10 /   50     2.3s Htbl parallel
[ ]   11    0    0   11 /   50     2.5s Htbl parallel
[ ]   18    0    0   18 /   50     2.6s Htbl parallel
[ ]   21    0    0   21 /   50     2.9s Htbl parallel
[ ]   25    0    0   25 /   50     3.0s Htbl parallel
[ ]   30    0    0   30 /   50     3.1s Htbl parallel
[ ]   34    0    0   34 /   50     3.2s Htbl parallel
[ ]   41    0    0   41 /   50     3.3s Htbl parallel
[ ]   43    0    0   43 /   50     3.6s Htbl parallel
[ ]   45    0    0   45 /   50     3.7s Htbl parallel
[ ]   50    0    0   50 /   50     3.9s Htbl parallel
[]   50    0    0   50 /   50     3.9s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 870829151732910588
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  100     0.0s Htbl sequential
[]  100    0    0  100 /  100     0.0s Htbl sequential
[ ]    0    0    0    0 /  100     0.0s Htbl parallel
[ ]    2    0    0    2 /  100     0.1s Htbl parallel
[ ]    4    0    0    4 /  100     0.4s Htbl parallel
[ ]    5    0    0    5 /  100     0.6s Htbl parallel
[ ]    6    0    0    6 /  100     0.8s Htbl parallel
[ ]    7    0    0    7 /  100     1.2s Htbl parallel
[ ]    8    0    0    8 /  100     1.3s Htbl parallel
[ ]   10    0    0   10 /  100     1.5s Htbl parallel
[ ]   13    0    0   13 /  100     1.6s Htbl parallel
[ ]   15    0    0   15 /  100     1.8s Htbl parallel
[ ]   20    0    0   20 /  100     2.2s Htbl parallel
[ ]   29    0    0   29 /  100     2.4s Htbl parallel
[ ]   31    0    0   31 /  100     2.6s Htbl parallel
[ ]   32    0    0   32 /  100     2.7s Htbl parallel
[ ]   35    0    0   35 /  100     2.8s Htbl parallel
[ ]   42    0    0   42 /  100     2.9s Htbl parallel
[ ]   47    0    0   47 /  100     3.1s Htbl parallel
[ ]   48    0    0   48 /  100     3.3s Htbl parallel
[ ]   49    0    0   49 /  100     3.6s Htbl parallel
[ ]   52    0    0   52 /  100     3.7s Htbl parallel
[ ]   59    0    0   59 /  100     3.8s Htbl parallel
[ ]   62    0    0   62 /  100     4.0s Htbl parallel
[ ]   65    0    0   65 /  100     4.1s Htbl parallel
[ ]   69    0    0   69 /  100     4.2s Htbl parallel
[ ]   73    0    0   73 /  100     4.4s Htbl parallel
[ ]   80    0    0   80 /  100     4.5s Htbl parallel
[ ]   82    0    0   82 /  100     5.0s Htbl parallel
[ ]   83    0    0   83 /  100     5.7s Htbl parallel
[ ]   87    0    0   87 /  100     5.8s Htbl parallel
[ ]   91    0    0   91 /  100     6.1s Htbl parallel
[ ]   93    0    0   93 /  100     6.3s Htbl parallel
[]  100    0    0  100 /  100     6.4s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 4330403788607010434
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  145     0.0s Htbl sequential
[]  145    0    0  145 /  145     0.0s Htbl sequential
[ ]    0    0    0    0 /  145     0.0s Htbl parallel
[ ]    2    0    0    2 /  145     0.3s Htbl parallel
[ ]   13    0    0   13 /  145     0.4s Htbl parallel
[ ]   14    0    0   14 /  145     0.5s Htbl parallel
[ ]   21    0    0   21 /  145     0.7s Htbl parallel
[ ]   25    0    0   25 /  145     0.9s Htbl parallel
[ ]   30    0    0   30 /  145     1.0s Htbl parallel
[ ]   35    0    0   35 /  145     1.1s Htbl parallel
[ ]   38    0    0   38 /  145     1.4s Htbl parallel
[ ]   40    0    0   40 /  145     1.7s Htbl parallel
[ ]   46    0    0   46 /  145     1.9s Htbl parallel
[ ]   49    0    0   49 /  145     2.0s Htbl parallel
[ ]   50    0    0   50 /  145     2.3s Htbl parallel
[ ]   51    0    0   51 /  145     2.7s Htbl parallel
[ ]   52    0    0   52 /  145     3.1s Htbl parallel
[ ]   54    0    0   54 /  145     3.2s Htbl parallel
[ ]   58    0    0   58 /  145     3.4s Htbl parallel
[ ]   65    0    0   65 /  145     3.7s Htbl parallel
[ ]   69    0    0   69 /  145     3.9s Htbl parallel
[ ]   78    0    0   78 /  145     4.0s Htbl parallel
[ ]   84    0    0   84 /  145     4.2s Htbl parallel
[ ]   86    0    0   86 /  145     4.7s Htbl parallel
[ ]   87    0    0   87 /  145     5.0s Htbl parallel
[ ]   93    0    0   93 /  145     5.2s Htbl parallel
[ ]   95    0    0   95 /  145     5.3s Htbl parallel
[ ]   99    0    0   99 /  145     5.6s Htbl parallel
[ ]  105    0    0  105 /  145     5.7s Htbl parallel
[ ]  109    0    0  109 /  145     5.8s Htbl parallel
[ ]  111    0    0  111 /  145     6.1s Htbl parallel
[ ]  112    0    0  112 /  145     6.3s Htbl parallel
[ ]  113    0    0  113 /  145     6.4s Htbl parallel
[ ]  117    0    0  117 /  145     6.9s Htbl parallel
[ ]  118    0    0  118 /  145     7.1s Htbl parallel
[ ]  120    0    0  120 /  145     7.2s Htbl parallel
[ ]  123    0    0  123 /  145     7.5s Htbl parallel
[ ]  130    0    0  130 /  145     7.6s Htbl parallel
[ ]  133    0    0  133 /  145     7.8s Htbl parallel
[ ]  139    0    0  139 /  145     8.1s Htbl parallel
[]  145    0    0  145 /  145     8.2s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 3266899915646035749
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  145     0.0s Htbl sequential
[]  145    0    0  145 /  145     0.0s Htbl sequential
[ ]    0    0    0    0 /  145     0.0s Htbl parallel
[ ]    7    0    0    7 /  145     0.1s Htbl parallel
[ ]   14    0    0   14 /  145     0.2s Htbl parallel
[ ]   15    0    0   15 /  145     0.5s Htbl parallel
[ ]   20    0    0   20 /  145     0.6s Htbl parallel
[ ]   25    0    0   25 /  145     0.7s Htbl parallel
[ ]   33    0    0   33 /  145     0.9s Htbl parallel
[ ]   37    0    0   37 /  145     1.0s Htbl parallel
[ ]   43    0    0   43 /  145     1.1s Htbl parallel
[ ]   48    0    0   48 /  145     1.2s Htbl parallel
[ ]   58    0    0   58 /  145     1.3s Htbl parallel
[ ]   66    0    0   66 /  145     1.4s Htbl parallel
[ ]   75    0    0   75 /  145     1.7s Htbl parallel
[ ]   84    0    0   84 /  145     2.0s Htbl parallel
[ ]   92    0    0   92 /  145     2.1s Htbl parallel
[ ]   96    0    0   96 /  145     2.2s Htbl parallel
[ ]  106    0    0  106 /  145     2.3s Htbl parallel
[ ]  110    0    0  110 /  145     2.4s Htbl parallel
[ ]  118    0    0  118 /  145     2.5s Htbl parallel
[ ]  126    0    0  126 /  145     2.7s Htbl parallel
[ ]  134    0    0  134 /  145     2.8s Htbl parallel
[ ]  135    0    0  135 /  145     3.1s Htbl parallel
[ ]  136    0    0  136 /  145     3.2s Htbl parallel
[ ]  141    0    0  141 /  145     3.4s Htbl parallel
[ ]  142    0    0  142 /  145     3.7s Htbl parallel
[ ]  145    0    0  145 /  145     3.9s Htbl parallel
[]  145    0    0  145 /  145     3.9s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 463784658223483908
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  151     0.0s Htbl sequential
[]  151    0    0  151 /  151     0.0s Htbl sequential
[ ]    0    0    0    0 /  151     0.0s Htbl parallel
[ ]    6    0    0    6 /  151     0.3s Htbl parallel
[ ]   10    0    0   10 /  151     0.6s Htbl parallel
[ ]   13    0    0   13 /  151     0.8s Htbl parallel
[ ]   22    0    0   22 /  151     0.9s Htbl parallel
[ ]   26    0    0   26 /  151     1.0s Htbl parallel
[ ]   34    0    0   34 /  151     1.1s Htbl parallel
[ ]   35    0    0   35 /  151     1.3s Htbl parallel
[ ]   39    0    0   39 /  151     1.6s Htbl parallel
[ ]   41    0    0   41 /  151     1.8s Htbl parallel
[ ]   46    0    0   46 /  151     2.1s Htbl parallel
[ ]   54    0    0   54 /  151     2.3s Htbl parallel
[ ]   58    0    0   58 /  151     2.4s Htbl parallel
[ ]   64    0    0   64 /  151     2.6s Htbl parallel
[ ]   66    0    0   66 /  151     2.9s Htbl parallel
[ ]   70    0    0   70 /  151     3.0s Htbl parallel
[ ]   76    0    0   76 /  151     3.1s Htbl parallel
[ ]   79    0    0   79 /  151     3.3s Htbl parallel
[ ]   88    0    0   88 /  151     3.5s Htbl parallel
[ ]   97    0    0   97 /  151     3.7s Htbl parallel
[ ]  100    0    0  100 /  151     3.8s Htbl parallel
[ ]  104    0    0  104 /  151     4.0s Htbl parallel
[ ]  113    0    0  113 /  151     4.2s Htbl parallel
[ ]  120    0    0  120 /  151     4.6s Htbl parallel
[ ]  121    0    0  121 /  151     4.8s Htbl parallel
[ ]  122    0    0  122 /  151     4.9s Htbl parallel
[ ]  126    0    0  126 /  151     5.1s Htbl parallel
[ ]  127    0    0  127 /  151     5.6s Htbl parallel
[ ]  128    0    0  128 /  151     5.9s Htbl parallel
[ ]  129    0    0  129 /  151     6.2s Htbl parallel
[ ]  130    0    0  130 /  151     6.6s Htbl parallel
[ ]  131    0    0  131 /  151     7.1s Htbl parallel
[ ]  132    0    0  132 /  151     7.3s Htbl parallel
[ ]  134    0    0  134 /  151     7.4s Htbl parallel
[ ]  141    0    0  141 /  151     7.7s Htbl parallel
[ ]  142    0    0  142 /  151     7.8s Htbl parallel
[ ]  147    0    0  147 /  151     7.9s Htbl parallel
[]  151    0    0  151 /  151     7.9s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 475570332683732213
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   77     0.0s Htbl sequential
[]   77    0    0   77 /   77     0.0s Htbl sequential
[ ]    0    0    0    0 /   77     0.0s Htbl parallel
[ ]   10    0    0   10 /   77     0.1s Htbl parallel
[ ]   12    0    0   12 /   77     0.3s Htbl parallel
[ ]   24    0    0   24 /   77     0.4s Htbl parallel
[ ]   29    0    0   29 /   77     0.5s Htbl parallel
[ ]   36    0    0   36 /   77     0.6s Htbl parallel
[ ]   39    0    0   39 /   77     0.8s Htbl parallel
[ ]   42    0    0   42 /   77     0.9s Htbl parallel
[ ]   44    0    0   44 /   77     1.2s Htbl parallel
[ ]   51    0    0   51 /   77     1.3s Htbl parallel
[ ]   57    0    0   57 /   77     1.4s Htbl parallel
[ ]   61    0    0   61 /   77     1.6s Htbl parallel
[ ]   63    0    0   63 /   77     1.7s Htbl parallel
[ ]   65    0    0   65 /   77     1.8s Htbl parallel
[ ]   74    0    0   74 /   77     2.0s Htbl parallel
[]   77    0    0   77 /   77     2.0s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 1837961968720646569
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   58     0.0s Htbl sequential
[]   58    0    0   58 /   58     0.0s Htbl sequential
[ ]    0    0    0    0 /   58     0.0s Htbl parallel
[ ]    2    0    0    2 /   58     0.1s Htbl parallel
[ ]   10    0    0   10 /   58     0.2s Htbl parallel
[ ]   19    0    0   19 /   58     0.4s Htbl parallel
[ ]   22    0    0   22 /   58     0.7s Htbl parallel
[ ]   25    0    0   25 /   58     1.0s Htbl parallel
[ ]   26    0    0   26 /   58     2.1s Htbl parallel
[ ]   27    0    0   27 /   58     3.4s Htbl parallel
[ ]   28    0    0   28 /   58     4.5s Htbl parallel
[ ]   29    0    0   29 /   58     5.5s Htbl parallel
[ ]   30    0    0   30 /   58     5.8s Htbl parallel
[ ]   33    0    0   33 /   58     6.2s Htbl parallel
[ ]   34    0    0   34 /   58     6.5s Htbl parallel
[ ]   35    0    0   35 /   58     6.7s Htbl parallel
[ ]   36    0    0   36 /   58     6.9s Htbl parallel
[ ]   37    0    0   37 /   58     7.3s Htbl parallel
[ ]   38    0    0   38 /   58     7.9s Htbl parallel
[ ]   39    0    0   39 /   58     8.2s Htbl parallel
[ ]   42    0    0   42 /   58     8.3s Htbl parallel
[ ]   49    0    0   49 /   58     8.7s Htbl parallel
[ ]   50    0    0   50 /   58     8.9s Htbl parallel
[ ]   51    0    0   51 /   58     9.4s Htbl parallel
[ ]   52    0    0   52 /   58     9.9s Htbl parallel
[ ]   54    0    0   54 /   58    10.1s Htbl parallel
[ ]   57    0    0   57 /   58    10.2s Htbl parallel
[]   58    0    0   58 /   58    10.2s Htbl parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_mutex.exe)
random seed: 809413834253478129
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   32     0.0s Mutex sequential
[]   32    0    0   32 /   32     0.0s Mutex sequential
[ ]    0    0    0    0 /   32     0.0s Mutex parallel
[ ]    1    0    0    1 /   32     3.8s Mutex parallel
[ ]    2    0    0    2 /   32     6.3s Mutex parallel
[ ]    3    0    0    3 /   32     9.3s Mutex parallel
[ ]    4    0    0    4 /   32    11.8s Mutex parallel
[ ]    5    0    0    5 /   32    13.9s Mutex parallel
[ ]    6    0    0    6 /   32    15.0s Mutex parallel
[ ]    7    0    0    7 /   32    15.6s Mutex parallel
[ ]    8    0    0    8 /   32    15.8s Mutex parallel
[ ]    9    0    0    9 /   32    16.1s Mutex parallel
[ ]   10    0    0   10 /   32    16.9s Mutex parallel
[ ]   11    0    0   11 /   32    17.4s Mutex parallel
[ ]   12    0    0   12 /   32    17.8s Mutex parallel
[ ]   14    0    0   14 /   32    18.1s Mutex parallel
[ ]   15    0    0   15 /   32    18.4s Mutex parallel
[ ]   16    0    0   16 /   32    18.8s Mutex parallel
[ ]   17    0    0   17 /   32    19.4s Mutex parallel
[ ]   18    0    0   18 /   32    19.5s Mutex parallel
[ ]   20    0    0   20 /   32    19.8s Mutex parallel
[ ]   21    0    0   21 /   32    20.2s Mutex parallel
[ ]   22    0    0   22 /   32    20.6s Mutex parallel
[ ]   23    0    0   23 /   32    20.8s Mutex parallel
[ ]   25    0    0   25 /   32    21.0s Mutex parallel
[ ]   26    0    0   26 /   32    21.3s Mutex parallel
[ ]   27    0    0   27 /   32    21.6s Mutex parallel
[ ]   28    0    0   28 /   32    21.8s Mutex parallel
[ ]   29    0    0   29 /   32    22.5s Mutex parallel
[ ]   30    0    0   30 /   32    23.2s Mutex parallel
[ ]   31    0    0   31 /   32    23.8s Mutex parallel
[ ]   32    0    0   32 /   32    24.8s Mutex parallel
[]   32    0    0   32 /   32    24.8s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 1627733015769420221
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   45     0.0s Mutex sequential
[]   45    0    0   45 /   45     0.0s Mutex sequential
[ ]    0    0    0    0 /   45     0.0s Mutex parallel
[ ]    1    0    0    1 /   45     0.4s Mutex parallel
[ ]    4    0    0    4 /   45     0.5s Mutex parallel
[ ]   10    0    0   10 /   45     0.7s Mutex parallel
[ ]   11    0    0   11 /   45     1.0s Mutex parallel
[ ]   16    0    0   16 /   45     1.1s Mutex parallel
[ ]   22    0    0   22 /   45     1.2s Mutex parallel
[ ]   24    0    0   24 /   45     1.3s Mutex parallel
[ ]   32    0    0   32 /   45     1.5s Mutex parallel
[ ]   33    0    0   33 /   45     1.7s Mutex parallel
[ ]   43    0    0   43 /   45     1.8s Mutex parallel
[]   45    0    0   45 /   45     1.8s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 726462536473021560
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   96     0.0s Mutex sequential
[]   96    0    0   96 /   96     0.0s Mutex sequential
[ ]    0    0    0    0 /   96     0.0s Mutex parallel
[ ]    8    0    0    8 /   96     0.3s Mutex parallel
[ ]   13    0    0   13 /   96     0.5s Mutex parallel
[ ]   15    0    0   15 /   96     0.6s Mutex parallel
[ ]   20    0    0   20 /   96     0.7s Mutex parallel
[ ]   21    0    0   21 /   96     0.9s Mutex parallel
[ ]   22    0    0   22 /   96     1.2s Mutex parallel
[ ]   23    0    0   23 /   96     1.5s Mutex parallel
[ ]   24    0    0   24 /   96     1.7s Mutex parallel
[ ]   26    0    0   26 /   96     1.8s Mutex parallel
[ ]   28    0    0   28 /   96     2.0s Mutex parallel
[ ]   32    0    0   32 /   96     2.1s Mutex parallel
[ ]   33    0    0   33 /   96     2.2s Mutex parallel
[ ]   34    0    0   34 /   96     2.4s Mutex parallel
[ ]   37    0    0   37 /   96     2.5s Mutex parallel
[ ]   41    0    0   41 /   96     2.6s Mutex parallel
[ ]   43    0    0   43 /   96     2.7s Mutex parallel
[ ]   51    0    0   51 /   96     3.0s Mutex parallel
[ ]   52    0    0   52 /   96     3.1s Mutex parallel
[ ]   54    0    0   54 /   96     3.2s Mutex parallel
[ ]   58    0    0   58 /   96     3.3s Mutex parallel
[ ]   62    0    0   62 /   96     3.5s Mutex parallel
[ ]   65    0    0   65 /   96     4.1s Mutex parallel
[ ]   68    0    0   68 /   96     4.2s Mutex parallel
[ ]   75    0    0   75 /   96     4.3s Mutex parallel
[ ]   78    0    0   78 /   96     4.4s Mutex parallel
[ ]   84    0    0   84 /   96     4.5s Mutex parallel
[ ]   86    0    0   86 /   96     4.8s Mutex parallel
[ ]   92    0    0   92 /   96     4.9s Mutex parallel
[ ]   94    0    0   94 /   96     6.1s Mutex parallel
[]   96    0    0   96 /   96     6.2s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 1773904993954690784
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  142     0.0s Mutex sequential
[]  142    0    0  142 /  142     0.0s Mutex sequential
[ ]    0    0    0    0 /  142     0.0s Mutex parallel
[ ]    5    0    0    5 /  142     0.2s Mutex parallel
[ ]   13    0    0   13 /  142     0.3s Mutex parallel
[ ]   22    0    0   22 /  142     0.4s Mutex parallel
[ ]   28    0    0   28 /  142     0.5s Mutex parallel
[ ]   33    0    0   33 /  142     0.6s Mutex parallel
[ ]   43    0    0   43 /  142     0.7s Mutex parallel
[ ]   52    0    0   52 /  142     0.8s Mutex parallel
[ ]   55    0    0   55 /  142     1.0s Mutex parallel
[ ]   60    0    0   60 /  142     1.1s Mutex parallel
[ ]   65    0    0   65 /  142     1.3s Mutex parallel
[ ]   71    0    0   71 /  142     1.4s Mutex parallel
[ ]   72    0    0   72 /  142     1.5s Mutex parallel
[ ]   76    0    0   76 /  142     1.6s Mutex parallel
[ ]   84    0    0   84 /  142     1.7s Mutex parallel
[ ]   93    0    0   93 /  142     1.8s Mutex parallel
[ ]   94    0    0   94 /  142     2.1s Mutex parallel
[ ]   96    0    0   96 /  142     2.2s Mutex parallel
[ ]   98    0    0   98 /  142     2.3s Mutex parallel
[ ]  106    0    0  106 /  142     2.8s Mutex parallel
[ ]  107    0    0  107 /  142     3.2s Mutex parallel
[ ]  108    0    0  108 /  142     3.7s Mutex parallel
[ ]  109    0    0  109 /  142     3.8s Mutex parallel
[ ]  111    0    0  111 /  142     4.0s Mutex parallel
[ ]  117    0    0  117 /  142     4.1s Mutex parallel
[ ]  121    0    0  121 /  142     4.4s Mutex parallel
[ ]  125    0    0  125 /  142     4.5s Mutex parallel
[ ]  126    0    0  126 /  142     4.7s Mutex parallel
[ ]  132    0    0  132 /  142     4.8s Mutex parallel
[ ]  139    0    0  139 /  142     5.3s Mutex parallel
[ ]  140    0    0  140 /  142     5.5s Mutex parallel
[ ]  142    0    0  142 /  142     5.6s Mutex parallel
[]  142    0    0  142 /  142     5.6s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 274291988466386344
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  175     0.0s Mutex sequential
[]  175    0    0  175 /  175     0.0s Mutex sequential
[ ]    0    0    0    0 /  175     0.0s Mutex parallel
[ ]    8    0    0    8 /  175     0.1s Mutex parallel
[ ]   18    0    0   18 /  175     0.2s Mutex parallel
[ ]   28    0    0   28 /  175     0.3s Mutex parallel
[ ]   29    0    0   29 /  175     0.5s Mutex parallel
[ ]   36    0    0   36 /  175     0.6s Mutex parallel
[ ]   39    0    0   39 /  175     0.7s Mutex parallel
[ ]   46    0    0   46 /  175     0.9s Mutex parallel
[ ]   47    0    0   47 /  175     1.2s Mutex parallel
[ ]   48    0    0   48 /  175     1.4s Mutex parallel
[ ]   50    0    0   50 /  175     1.6s Mutex parallel
[ ]   58    0    0   58 /  175     1.7s Mutex parallel
[ ]   63    0    0   63 /  175     1.8s Mutex parallel
[ ]   65    0    0   65 /  175     1.9s Mutex parallel
[ ]   66    0    0   66 /  175     2.1s Mutex parallel
[ ]   73    0    0   73 /  175     2.2s Mutex parallel
[ ]   81    0    0   81 /  175     2.4s Mutex parallel
[ ]   87    0    0   87 /  175     2.5s Mutex parallel
[ ]   94    0    0   94 /  175     2.6s Mutex parallel
[ ]   99    0    0   99 /  175     2.8s Mutex parallel
[ ]  102    0    0  102 /  175     2.9s Mutex parallel
[ ]  112    0    0  112 /  175     3.0s Mutex parallel
[ ]  119    0    0  119 /  175     3.2s Mutex parallel
[ ]  126    0    0  126 /  175     3.3s Mutex parallel
[ ]  128    0    0  128 /  175     3.4s Mutex parallel
[ ]  133    0    0  133 /  175     3.5s Mutex parallel
[ ]  135    0    0  135 /  175     3.7s Mutex parallel
[ ]  141    0    0  141 /  175     3.8s Mutex parallel
[ ]  144    0    0  144 /  175     3.9s Mutex parallel
[ ]  156    0    0  156 /  175     4.0s Mutex parallel
[ ]  164    0    0  164 /  175     4.2s Mutex parallel
[ ]  175    0    0  175 /  175     4.4s Mutex parallel
[]  175    0    0  175 /  175     4.4s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 3326473657897335360
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  195     0.0s Mutex sequential
[]  195    0    0  195 /  195     0.0s Mutex sequential
[ ]    0    0    0    0 /  195     0.0s Mutex parallel
[ ]    4    0    0    4 /  195     0.1s Mutex parallel
[ ]    9    0    0    9 /  195     0.2s Mutex parallel
[ ]   19    0    0   19 /  195     0.3s Mutex parallel
[ ]   22    0    0   22 /  195     0.5s Mutex parallel
[ ]   25    0    0   25 /  195     0.8s Mutex parallel
[ ]   32    0    0   32 /  195     0.9s Mutex parallel
[ ]   39    0    0   39 /  195     1.0s Mutex parallel
[ ]   44    0    0   44 /  195     1.1s Mutex parallel
[ ]   48    0    0   48 /  195     1.4s Mutex parallel
[ ]   50    0    0   50 /  195     1.9s Mutex parallel
[ ]   53    0    0   53 /  195     2.5s Mutex parallel
[ ]   61    0    0   61 /  195     2.6s Mutex parallel
[ ]   70    0    0   70 /  195     2.7s Mutex parallel
[ ]   71    0    0   71 /  195     2.8s Mutex parallel
[ ]   82    0    0   82 /  195     3.1s Mutex parallel
[ ]   93    0    0   93 /  195     3.4s Mutex parallel
[ ]   97    0    0   97 /  195     3.6s Mutex parallel
[ ]  100    0    0  100 /  195     3.7s Mutex parallel
[ ]  105    0    0  105 /  195     4.0s Mutex parallel
[ ]  115    0    0  115 /  195     4.3s Mutex parallel
[ ]  124    0    0  124 /  195     4.4s Mutex parallel
[ ]  127    0    0  127 /  195     4.5s Mutex parallel
[ ]  140    0    0  140 /  195     4.6s Mutex parallel
[ ]  150    0    0  150 /  195     4.7s Mutex parallel
[ ]  151    0    0  151 /  195     4.9s Mutex parallel
[ ]  158    0    0  158 /  195     5.1s Mutex parallel
[ ]  161    0    0  161 /  195     5.2s Mutex parallel
[ ]  169    0    0  169 /  195     5.3s Mutex parallel
[ ]  177    0    0  177 /  195     5.5s Mutex parallel
[ ]  184    0    0  184 /  195     5.6s Mutex parallel
[ ]  191    0    0  191 /  195     5.9s Mutex parallel
[]  195    0    0  195 /  195     6.0s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 3689916123573047362
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  155     0.0s Mutex sequential
[]  155    0    0  155 /  155     0.0s Mutex sequential
[ ]    0    0    0    0 /  155     0.0s Mutex parallel
[ ]    3    0    0    3 /  155     0.1s Mutex parallel
[ ]   10    0    0   10 /  155     0.2s Mutex parallel
[ ]   11    0    0   11 /  155     0.4s Mutex parallel
[ ]   14    0    0   14 /  155     0.5s Mutex parallel
[ ]   16    0    0   16 /  155     0.7s Mutex parallel
[ ]   25    0    0   25 /  155     0.9s Mutex parallel
[ ]   31    0    0   31 /  155     1.0s Mutex parallel
[ ]   43    0    0   43 /  155     1.1s Mutex parallel
[ ]   46    0    0   46 /  155     1.2s Mutex parallel
[ ]   47    0    0   47 /  155     1.4s Mutex parallel
[ ]   48    0    0   48 /  155     1.6s Mutex parallel
[ ]   52    0    0   52 /  155     1.7s Mutex parallel
[ ]   53    0    0   53 /  155     2.2s Mutex parallel
[ ]   54    0    0   54 /  155     2.3s Mutex parallel
[ ]   55    0    0   55 /  155     2.5s Mutex parallel
[ ]   56    0    0   56 /  155     3.0s Mutex parallel
[ ]   57    0    0   57 /  155     3.4s Mutex parallel
[ ]   58    0    0   58 /  155     3.8s Mutex parallel
[ ]   59    0    0   59 /  155     3.9s Mutex parallel
[ ]   62    0    0   62 /  155     4.0s Mutex parallel
[ ]   66    0    0   66 /  155     4.2s Mutex parallel
[ ]   69    0    0   69 /  155     4.5s Mutex parallel
[ ]   74    0    0   74 /  155     4.6s Mutex parallel
[ ]   80    0    0   80 /  155     4.7s Mutex parallel
[ ]   86    0    0   86 /  155     4.8s Mutex parallel
[ ]   88    0    0   88 /  155     5.0s Mutex parallel
[ ]   94    0    0   94 /  155     5.1s Mutex parallel
[ ]   98    0    0   98 /  155     5.4s Mutex parallel
[ ]  104    0    0  104 /  155     5.5s Mutex parallel
[ ]  111    0    0  111 /  155     5.6s Mutex parallel
[ ]  116    0    0  116 /  155     5.7s Mutex parallel
[ ]  118    0    0  118 /  155     5.9s Mutex parallel
[ ]  129    0    0  129 /  155     6.0s Mutex parallel
[ ]  132    0    0  132 /  155     6.2s Mutex parallel
[ ]  136    0    0  136 /  155     6.3s Mutex parallel
[ ]  146    0    0  146 /  155     6.5s Mutex parallel
[ ]  150    0    0  150 /  155     6.7s Mutex parallel
[ ]  155    0    0  155 /  155     6.8s Mutex parallel
[]  155    0    0  155 /  155     6.8s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 632283038316258010
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   64     0.0s Mutex sequential
[]   64    0    0   64 /   64     0.0s Mutex sequential
[ ]    0    0    0    0 /   64     0.0s Mutex parallel
[ ]    9    0    0    9 /   64     0.1s Mutex parallel
[ ]   13    0    0   13 /   64     0.2s Mutex parallel
[ ]   19    0    0   19 /   64     0.3s Mutex parallel
[ ]   20    0    0   20 /   64     0.4s Mutex parallel
[ ]   25    0    0   25 /   64     1.3s Mutex parallel
[ ]   26    0    0   26 /   64     2.6s Mutex parallel
[ ]   27    0    0   27 /   64     3.6s Mutex parallel
[ ]   28    0    0   28 /   64     4.8s Mutex parallel
[ ]   29    0    0   29 /   64     5.5s Mutex parallel
[ ]   30    0    0   30 /   64     5.6s Mutex parallel
[ ]   31    0    0   31 /   64     6.0s Mutex parallel
[ ]   32    0    0   32 /   64     6.3s Mutex parallel
[ ]   33    0    0   33 /   64     6.4s Mutex parallel
[ ]   34    0    0   34 /   64     6.6s Mutex parallel
[ ]   35    0    0   35 /   64     6.7s Mutex parallel
[ ]   36    0    0   36 /   64     7.1s Mutex parallel
[ ]   37    0    0   37 /   64     7.7s Mutex parallel
[ ]   38    0    0   38 /   64     7.9s Mutex parallel
[ ]   39    0    0   39 /   64     8.0s Mutex parallel
[ ]   44    0    0   44 /   64     8.5s Mutex parallel
[ ]   45    0    0   45 /   64     8.7s Mutex parallel
[ ]   46    0    0   46 /   64     9.3s Mutex parallel
[ ]   47    0    0   47 /   64     9.7s Mutex parallel
[ ]   51    0    0   51 /   64     9.9s Mutex parallel
[ ]   61    0    0   61 /   64    10.0s Mutex parallel
[ ]   63    0    0   63 /   64    10.2s Mutex parallel
[ ]   64    0    0   64 /   64    10.3s Mutex parallel
[]   64    0    0   64 /   64    10.3s Mutex parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_lock.exe)
random seed: 4379570300781631285
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   32     0.0s Lock sequential
[]   32    0    0   32 /   32     0.0s Lock sequential
[ ]    0    0    0    0 /   32     0.0s Lock parallel
[ ]    1    0    0    1 /   32     3.3s Lock parallel
[ ]    2    0    0    2 /   32     6.6s Lock parallel
[ ]    3    0    0    3 /   32     9.2s Lock parallel
[ ]    4    0    0    4 /   32    12.3s Lock parallel
[ ]    5    0    0    5 /   32    13.6s Lock parallel
[ ]    6    0    0    6 /   32    14.9s Lock parallel
[ ]    7    0    0    7 /   32    15.1s Lock parallel
[ ]    8    0    0    8 /   32    15.2s Lock parallel
[ ]    9    0    0    9 /   32    16.2s Lock parallel
[ ]   10    0    0   10 /   32    16.9s Lock parallel
[ ]   11    0    0   11 /   32    17.2s Lock parallel
[ ]   13    0    0   13 /   32    17.8s Lock parallel
[ ]   14    0    0   14 /   32    17.9s Lock parallel
[ ]   15    0    0   15 /   32    18.2s Lock parallel
[ ]   17    0    0   17 /   32    18.3s Lock parallel
[ ]   19    0    0   19 /   32    18.5s Lock parallel
[ ]   21    0    0   21 /   32    18.8s Lock parallel
[ ]   22    0    0   22 /   32    19.3s Lock parallel
[ ]   23    0    0   23 /   32    19.7s Lock parallel
[ ]   24    0    0   24 /   32    20.1s Lock parallel
[ ]   25    0    0   25 /   32    20.2s Lock parallel
[ ]   26    0    0   26 /   32    20.7s Lock parallel
[ ]   27    0    0   27 /   32    21.0s Lock parallel
[ ]   28    0    0   28 /   32    21.7s Lock parallel
[ ]   29    0    0   29 /   32    22.4s Lock parallel
[ ]   30    0    0   30 /   32    23.0s Lock parallel
[ ]   31    0    0   31 /   32    23.5s Lock parallel
[ ]   32    0    0   32 /   32    24.5s Lock parallel
[]   32    0    0   32 /   32    24.5s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 1561702853966634970
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   46     0.0s Lock sequential
[]   46    0    0   46 /   46     0.0s Lock sequential
[ ]    0    0    0    0 /   46     0.0s Lock parallel
[ ]    2    0    0    2 /   46     0.1s Lock parallel
[ ]    4    0    0    4 /   46     0.2s Lock parallel
[ ]    6    0    0    6 /   46     0.4s Lock parallel
[ ]    7    0    0    7 /   46     0.6s Lock parallel
[ ]    9    0    0    9 /   46     0.8s Lock parallel
[ ]   19    0    0   19 /   46     0.9s Lock parallel
[ ]   20    0    0   20 /   46     1.2s Lock parallel
[ ]   25    0    0   25 /   46     1.3s Lock parallel
[ ]   26    0    0   26 /   46     1.4s Lock parallel
[ ]   29    0    0   29 /   46     1.6s Lock parallel
[ ]   31    0    0   31 /   46     1.9s Lock parallel
[ ]   38    0    0   38 /   46     2.1s Lock parallel
[ ]   43    0    0   43 /   46     2.5s Lock parallel
[ ]   44    0    0   44 /   46     2.6s Lock parallel
[ ]   45    0    0   45 /   46     2.9s Lock parallel
[ ]   46    0    0   46 /   46     3.2s Lock parallel
[]   46    0    0   46 /   46     3.2s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 3266275853976166657
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   90     0.0s Lock sequential
[]   90    0    0   90 /   90     0.0s Lock sequential
[ ]    0    0    0    0 /   90     0.0s Lock parallel
[ ]    1    0    0    1 /   90     0.1s Lock parallel
[ ]    3    0    0    3 /   90     0.3s Lock parallel
[ ]    5    0    0    5 /   90     0.5s Lock parallel
[ ]    7    0    0    7 /   90     0.6s Lock parallel
[ ]   16    0    0   16 /   90     0.7s Lock parallel
[ ]   20    0    0   20 /   90     0.8s Lock parallel
[ ]   21    0    0   21 /   90     1.0s Lock parallel
[ ]   28    0    0   28 /   90     1.1s Lock parallel
[ ]   35    0    0   35 /   90     1.4s Lock parallel
[ ]   37    0    0   37 /   90     1.5s Lock parallel
[ ]   40    0    0   40 /   90     1.8s Lock parallel
[ ]   43    0    0   43 /   90     2.4s Lock parallel
[ ]   45    0    0   45 /   90     2.5s Lock parallel
[ ]   51    0    0   51 /   90     2.6s Lock parallel
[ ]   56    0    0   56 /   90     2.7s Lock parallel
[ ]   57    0    0   57 /   90     3.0s Lock parallel
[ ]   58    0    0   58 /   90     3.1s Lock parallel
[ ]   65    0    0   65 /   90     3.2s Lock parallel
[ ]   74    0    0   74 /   90     3.3s Lock parallel
[ ]   77    0    0   77 /   90     3.7s Lock parallel
[ ]   78    0    0   78 /   90     4.5s Lock parallel
[ ]   79    0    0   79 /   90     4.6s Lock parallel
[ ]   85    0    0   85 /   90     4.7s Lock parallel
[]   90    0    0   90 /   90     4.8s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 1039525747294746629
generated error fail pass / totaltime test name
[ ]    0    0    0    0 /  142     0.0s Lock sequential
[]  142    0    0  142 /  142     0.0s Lock sequential
[ ]    0    0    0    0 /  142     0.0s Lock parallel
[ ]    5    0    0    5 /  142     0.1s Lock parallel
[ ]    6    0    0    6 /  142     0.3s Lock parallel
[ ]   13    0    0   13 /  142     0.4s Lock parallel
[ ]   16    0    0   16 /  142     0.5s Lock parallel
[ ]   22    0    0   22 /  142     0.7s Lock parallel
[ ]   24    0    0   24 /  142     0.9s Lock parallel
[ ]   28    0    0   28 /  142     1.0s Lock parallel
[ ]   37    0    0   37 /  142     1.3s Lock parallel
[ ]   42    0    0   42 /  142     1.4s Lock parallel
[ ]   48    0    0   48 /  142     1.5s Lock parallel
[ ]   54    0    0   54 /  142     1.7s Lock parallel
[ ]   56    0    0   56 /  142     1.8s Lock parallel
[ ]   59    0    0   59 /  142     2.0s Lock parallel
[ ]   61    0    0   61 /  142     2.3s Lock parallel
[ ]   62    0    0   62 /  142     2.5s Lock parallel
[ ]   63    0    0   63 /  142     2.7s Lock parallel
[ ]   64    0    0   64 /  142     3.3s Lock parallel
[ ]   65    0    0   65 /  142     3.6s Lock parallel
[ ]   67    0    0   67 /  142     3.8s Lock parallel
[ ]   69    0    0   69 /  142     3.9s Lock parallel
[ ]   75    0    0   75 /  142     4.1s Lock parallel
[ ]   82    0    0   82 /  142     4.3s Lock parallel
[ ]   91    0    0   91 /  142     4.4s Lock parallel
[ ]  101    0    0  101 /  142     4.5s Lock parallel
[ ]  103    0    0  103 /  142     4.8s Lock parallel
[ ]  104    0    0  104 /  142     5.1s Lock parallel
[ ]  105    0    0  105 /  142     5.4s Lock parallel
[ ]  110    0    0  110 /  142     5.5s Lock parallel
[ ]  116    0    0  116 /  142     5.8s Lock parallel
[ ]  120    0    0  120 /  142     6.0s Lock parallel
[ ]  128    0    0  128 /  142     6.1s Lock parallel
[ ]  138    0    0  138 /  142     6.2s Lock parallel
[ ]  140    0    0  140 /  142     6.5s Lock parallel
[ ]  141    0    0  141 /  142     6.6s Lock parallel
[ ]  142    0    0  142 /  142     6.8s Lock parallel
[]  142    0    0  142 /  142     6.8s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 277408228947088093
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  163     0.0s Lock sequential
[]  163    0    0  163 /  163     0.0s Lock sequential
[ ]    0    0    0    0 /  163     0.0s Lock parallel
[ ]    6    0    0    6 /  163     0.2s Lock parallel
[ ]   14    0    0   14 /  163     0.3s Lock parallel
[ ]   19    0    0   19 /  163     0.5s Lock parallel
[ ]   21    0    0   21 /  163     0.7s Lock parallel
[ ]   26    0    0   26 /  163     0.8s Lock parallel
[ ]   27    0    0   27 /  163     0.9s Lock parallel
[ ]   36    0    0   36 /  163     1.0s Lock parallel
[ ]   43    0    0   43 /  163     1.1s Lock parallel
[ ]   47    0    0   47 /  163     1.4s Lock parallel
[ ]   48    0    0   48 /  163     1.6s Lock parallel
[ ]   49    0    0   49 /  163     1.8s Lock parallel
[ ]   56    0    0   56 /  163     2.0s Lock parallel
[ ]   61    0    0   61 /  163     2.3s Lock parallel
[ ]   65    0    0   65 /  163     2.4s Lock parallel
[ ]   68    0    0   68 /  163     2.6s Lock parallel
[ ]   74    0    0   74 /  163     2.7s Lock parallel
[ ]   82    0    0   82 /  163     2.8s Lock parallel
[ ]   84    0    0   84 /  163     3.0s Lock parallel
[ ]   85    0    0   85 /  163     3.2s Lock parallel
[ ]   98    0    0   98 /  163     3.4s Lock parallel
[ ]  105    0    0  105 /  163     3.5s Lock parallel
[ ]  107    0    0  107 /  163     3.7s Lock parallel
[ ]  108    0    0  108 /  163     3.9s Lock parallel
[ ]  119    0    0  119 /  163     4.0s Lock parallel
[ ]  121    0    0  121 /  163     4.1s Lock parallel
[ ]  127    0    0  127 /  163     4.2s Lock parallel
[ ]  129    0    0  129 /  163     4.4s Lock parallel
[ ]  131    0    0  131 /  163     4.6s Lock parallel
[ ]  132    0    0  132 /  163     4.9s Lock parallel
[ ]  135    0    0  135 /  163     5.0s Lock parallel
[ ]  138    0    0  138 /  163     5.4s Lock parallel
[ ]  140    0    0  140 /  163     5.6s Lock parallel
[ ]  147    0    0  147 /  163     5.8s Lock parallel
[ ]  156    0    0  156 /  163     6.1s Lock parallel
[ ]  157    0    0  157 /  163     6.2s Lock parallel
[ ]  159    0    0  159 /  163     6.4s Lock parallel
[ ]  160    0    0  160 /  163     6.6s Lock parallel
[ ]  161    0    0  161 /  163     6.7s Lock parallel
[]  163    0    0  163 /  163     6.7s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 673874627873466915
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  143     0.0s Lock sequential
[]  143    0    0  143 /  143     0.0s Lock sequential
[ ]    0    0    0    0 /  143     0.0s Lock parallel
[ ]    4    0    0    4 /  143     0.1s Lock parallel
[ ]    8    0    0    8 /  143     0.3s Lock parallel
[ ]    9    0    0    9 /  143     0.4s Lock parallel
[ ]   16    0    0   16 /  143     0.5s Lock parallel
[ ]   24    0    0   24 /  143     0.6s Lock parallel
[ ]   31    0    0   31 /  143     0.7s Lock parallel
[ ]   36    0    0   36 /  143     0.8s Lock parallel
[ ]   39    0    0   39 /  143     0.9s Lock parallel
[ ]   43    0    0   43 /  143     1.1s Lock parallel
[ ]   53    0    0   53 /  143     1.3s Lock parallel
[ ]   58    0    0   58 /  143     1.6s Lock parallel
[ ]   64    0    0   64 /  143     1.9s Lock parallel
[ ]   66    0    0   66 /  143     2.0s Lock parallel
[ ]   67    0    0   67 /  143     2.2s Lock parallel
[ ]   73    0    0   73 /  143     2.4s Lock parallel
[ ]   75    0    0   75 /  143     2.5s Lock parallel
[ ]   76    0    0   76 /  143     2.7s Lock parallel
[ ]   83    0    0   83 /  143     3.0s Lock parallel
[ ]   85    0    0   85 /  143     3.1s Lock parallel
[ ]   94    0    0   94 /  143     3.2s Lock parallel
[ ]  101    0    0  101 /  143     3.3s Lock parallel
[ ]  106    0    0  106 /  143     3.5s Lock parallel
[ ]  107    0    0  107 /  143     3.7s Lock parallel
[ ]  108    0    0  108 /  143     3.8s Lock parallel
[ ]  115    0    0  115 /  143     4.4s Lock parallel
[ ]  117    0    0  117 /  143     4.7s Lock parallel
[ ]  118    0    0  118 /  143     5.3s Lock parallel
[ ]  119    0    0  119 /  143     6.0s Lock parallel
[ ]  120    0    0  120 /  143     6.2s Lock parallel
[ ]  123    0    0  123 /  143     6.3s Lock parallel
[ ]  125    0    0  125 /  143     6.4s Lock parallel
[ ]  129    0    0  129 /  143     6.7s Lock parallel
[ ]  139    0    0  139 /  143     6.8s Lock parallel (collecting)
[]  143    0    0  143 /  143     6.9s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 3964427549966765919
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   82     0.0s Lock sequential
[]   82    0    0   82 /   82     0.0s Lock sequential
[ ]    0    0    0    0 /   82     0.0s Lock parallel
[ ]    8    0    0    8 /   82     0.1s Lock parallel
[ ]   17    0    0   17 /   82     0.2s Lock parallel
[ ]   23    0    0   23 /   82     0.4s Lock parallel
[ ]   32    0    0   32 /   82     0.5s Lock parallel
[ ]   43    0    0   43 /   82     0.7s Lock parallel
[ ]   45    0    0   45 /   82     0.8s Lock parallel
[ ]   48    0    0   48 /   82     1.0s Lock parallel
[ ]   51    0    0   51 /   82     1.2s Lock parallel
[ ]   59    0    0   59 /   82     1.3s Lock parallel
[ ]   69    0    0   69 /   82     1.6s Lock parallel
[ ]   73    0    0   73 /   82     1.7s Lock parallel
[ ]   76    0    0   76 /   82     1.9s Lock parallel
[ ]   79    0    0   79 /   82     2.1s Lock parallel
[]   82    0    0   82 /   82     2.1s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 158427735379921478
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   63     0.0s Lock sequential
[]   63    0    0   63 /   63     0.0s Lock sequential
[ ]    0    0    0    0 /   63     0.0s Lock parallel
[ ]    9    0    0    9 /   63     0.1s Lock parallel
[ ]   13    0    0   13 /   63     0.4s Lock parallel
[ ]   21    0    0   21 /   63     0.5s Lock parallel
[ ]   25    0    0   25 /   63     1.8s Lock parallel
[ ]   26    0    0   26 /   63     3.0s Lock parallel
[ ]   27    0    0   27 /   63     4.0s Lock parallel
[ ]   28    0    0   28 /   63     4.7s Lock parallel
[ ]   29    0    0   29 /   63     5.4s Lock parallel
[ ]   30    0    0   30 /   63     5.7s Lock parallel
[ ]   34    0    0   34 /   63     6.0s Lock parallel
[ ]   35    0    0   35 /   63     6.4s Lock parallel
[ ]   36    0    0   36 /   63     6.5s Lock parallel
[ ]   37    0    0   37 /   63     6.6s Lock parallel
[ ]   38    0    0   38 /   63     7.0s Lock parallel
[ ]   39    0    0   39 /   63     7.2s Lock parallel
[ ]   40    0    0   40 /   63     7.7s Lock parallel
[ ]   41    0    0   41 /   63     8.0s Lock parallel
[ ]   42    0    0   42 /   63     8.1s Lock parallel
[ ]   46    0    0   46 /   63     8.2s Lock parallel
[ ]   49    0    0   49 /   63     8.7s Lock parallel
[ ]   50    0    0   50 /   63     9.0s Lock parallel
[ ]   51    0    0   51 /   63     9.8s Lock parallel
[ ]   52    0    0   52 /   63     9.9s Lock parallel
[ ]   59    0    0   59 /   63    10.0s Lock parallel
[ ]   61    0    0   61 /   63    10.2s Lock parallel
[ ]   62    0    0   62 /   63    10.5s Lock parallel
[]   63    0    0   63 /   63    10.6s Lock parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_sem.exe)
random seed: 3679344490157788149
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   32     0.0s Sem sequential
[]   32    0    0   32 /   32     0.0s Sem sequential
[ ]    0    0    0    0 /   32     0.0s Sem parallel
[ ]    1    0    0    1 /   32     3.8s Sem parallel
[ ]    2    0    0    2 /   32     6.6s Sem parallel
[ ]    3    0    0    3 /   32     9.3s Sem parallel
[ ]    4    0    0    4 /   32    11.6s Sem parallel
[ ]    5    0    0    5 /   32    13.2s Sem parallel
[ ]    6    0    0    6 /   32    14.3s Sem parallel
[ ]    7    0    0    7 /   32    15.1s Sem parallel
[ ]    8    0    0    8 /   32    15.3s Sem parallel
[ ]    9    0    0    9 /   32    15.6s Sem parallel
[ ]   10    0    0   10 /   32    16.4s Sem parallel
[ ]   11    0    0   11 /   32    17.0s Sem parallel
[ ]   12    0    0   12 /   32    17.4s Sem parallel
[ ]   14    0    0   14 /   32    17.9s Sem parallel
[ ]   15    0    0   15 /   32    18.0s Sem parallel
[ ]   16    0    0   16 /   32    18.4s Sem parallel
[ ]   18    0    0   18 /   32    18.5s Sem parallel
[ ]   20    0    0   20 /   32    18.7s Sem parallel
[ ]   21    0    0   21 /   32    19.0s Sem parallel
[ ]   22    0    0   22 /   32    19.2s Sem parallel
[ ]   23    0    0   23 /   32    19.6s Sem parallel
[ ]   24    0    0   24 /   32    20.0s Sem parallel
[ ]   25    0    0   25 /   32    20.2s Sem parallel
[ ]   26    0    0   26 /   32    20.4s Sem parallel
[ ]   28    0    0   28 /   32    20.6s Sem parallel
[ ]   29    0    0   29 /   32    20.9s Sem parallel
[ ]   30    0    0   30 /   32    21.2s Sem parallel
[ ]   31    0    0   31 /   32    21.4s Sem parallel
[ ]   32    0    0   32 /   32    22.0s Sem parallel
[]   32    0    0   32 /   32    22.0s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 1687630529160331981
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   55     0.0s Sem sequential
[]   55    0    0   55 /   55     0.0s Sem sequential
[ ]    0    0    0    0 /   55     0.0s Sem parallel
[ ]    1    0    0    1 /   55     0.6s Sem parallel
[ ]    2    0    0    2 /   55     1.1s Sem parallel
[ ]    3    0    0    3 /   55     1.8s Sem parallel
[ ]    4    0    0    4 /   55     2.7s Sem parallel
[ ]    6    0    0    6 /   55     2.8s Sem parallel
[ ]   10    0    0   10 /   55     2.9s Sem parallel
[ ]   12    0    0   12 /   55     3.0s Sem parallel
[ ]   13    0    0   13 /   55     3.2s Sem parallel
[ ]   14    0    0   14 /   55     3.3s Sem parallel
[ ]   16    0    0   16 /   55     3.5s Sem parallel
[ ]   23    0    0   23 /   55     3.6s Sem parallel
[ ]   26    0    0   26 /   55     3.8s Sem parallel
[ ]   30    0    0   30 /   55     3.9s Sem parallel
[ ]   35    0    0   35 /   55     4.0s Sem parallel
[ ]   42    0    0   42 /   55     4.4s Sem parallel
[ ]   44    0    0   44 /   55     4.5s Sem parallel
[ ]   47    0    0   47 /   55     4.6s Sem parallel
[ ]   49    0    0   49 /   55     4.8s Sem parallel
[ ]   54    0    0   54 /   55     4.9s Sem parallel
[ ]   55    0    0   55 /   55     5.1s Sem parallel
[]   55    0    0   55 /   55     5.1s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 3870187539089804356
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  105     0.0s Sem sequential
[]  105    0    0  105 /  105     0.0s Sem sequential
[ ]    0    0    0    0 /  105     0.0s Sem parallel
[ ]    1    0    0    1 /  105     0.2s Sem parallel
[ ]    2    0    0    2 /  105     0.6s Sem parallel
[ ]    3    0    0    3 /  105     0.8s Sem parallel
[ ]    5    0    0    5 /  105     1.1s Sem parallel
[ ]    6    0    0    6 /  105     1.2s Sem parallel
[ ]    7    0    0    7 /  105     1.4s Sem parallel
[ ]   11    0    0   11 /  105     1.5s Sem parallel
[ ]   15    0    0   15 /  105     1.6s Sem parallel
[ ]   17    0    0   17 /  105     1.7s Sem parallel
[ ]   19    0    0   19 /  105     2.1s Sem parallel
[ ]   20    0    0   20 /  105     2.3s Sem parallel
[ ]   23    0    0   23 /  105     2.4s Sem parallel
[ ]   28    0    0   28 /  105     2.7s Sem parallel
[ ]   32    0    0   32 /  105     2.9s Sem parallel
[ ]   33    0    0   33 /  105     3.2s Sem parallel
[ ]   36    0    0   36 /  105     3.5s Sem parallel
[ ]   48    0    0   48 /  105     3.6s Sem parallel
[ ]   51    0    0   51 /  105     3.8s Sem parallel
[ ]   54    0    0   54 /  105     4.2s Sem parallel
[ ]   55    0    0   55 /  105     5.2s Sem parallel
[ ]   56    0    0   56 /  105     5.3s Sem parallel
[ ]   60    0    0   60 /  105     5.6s Sem parallel
[ ]   64    0    0   64 /  105     5.7s Sem parallel
[ ]   72    0    0   72 /  105     5.8s Sem parallel
[ ]   77    0    0   77 /  105     6.0s Sem parallel
[ ]   81    0    0   81 /  105     6.2s Sem parallel
[ ]   88    0    0   88 /  105     6.3s Sem parallel
[ ]   95    0    0   95 /  105     6.5s Sem parallel
[ ]  105    0    0  105 /  105     6.6s Sem parallel
[]  105    0    0  105 /  105     6.6s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 4020468782631482289
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  149     0.0s Sem sequential
[]  149    0    0  149 /  149     0.0s Sem sequential
[ ]    0    0    0    0 /  149     0.0s Sem parallel
[ ]    5    0    0    5 /  149     0.2s Sem parallel
[ ]    7    0    0    7 /  149     0.4s Sem parallel
[ ]   15    0    0   15 /  149     0.5s Sem parallel
[ ]   20    0    0   20 /  149     0.8s Sem parallel
[ ]   22    0    0   22 /  149     0.9s Sem parallel
[ ]   25    0    0   25 /  149     1.1s Sem parallel
[ ]   26    0    0   26 /  149     1.3s Sem parallel
[ ]   27    0    0   27 /  149     1.4s Sem parallel
[ ]   28    0    0   28 /  149     1.9s Sem parallel
[ ]   29    0    0   29 /  149     2.5s Sem parallel
[ ]   30    0    0   30 /  149     2.7s Sem parallel
[ ]   36    0    0   36 /  149     2.8s Sem parallel
[ ]   47    0    0   47 /  149     2.9s Sem parallel
[ ]   56    0    0   56 /  149     3.2s Sem parallel
[ ]   57    0    0   57 /  149     3.4s Sem parallel
[ ]   69    0    0   69 /  149     3.5s Sem parallel
[ ]   81    0    0   81 /  149     3.6s Sem parallel
[ ]   82    0    0   82 /  149     3.8s Sem parallel
[ ]   83    0    0   83 /  149     3.9s Sem parallel
[ ]   84    0    0   84 /  149     4.0s Sem parallel
[ ]   85    0    0   85 /  149     4.3s Sem parallel
[ ]   92    0    0   92 /  149     4.4s Sem parallel
[ ]  100    0    0  100 /  149     4.7s Sem parallel
[ ]  104    0    0  104 /  149     4.8s Sem parallel
[ ]  111    0    0  111 /  149     4.9s Sem parallel
[ ]  117    0    0  117 /  149     5.1s Sem parallel
[ ]  126    0    0  126 /  149     5.3s Sem parallel
[ ]  127    0    0  127 /  149     5.5s Sem parallel
[ ]  128    0    0  128 /  149     5.7s Sem parallel
[ ]  129    0    0  129 /  149     5.8s Sem parallel
[ ]  133    0    0  133 /  149     6.0s Sem parallel
[ ]  141    0    0  141 /  149     6.1s Sem parallel
[ ]  143    0    0  143 /  149     6.2s Sem parallel
[ ]  145    0    0  145 /  149     6.5s Sem parallel
[]  149    0    0  149 /  149     6.5s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 2924378637799024046
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  167     0.0s Sem sequential
[]  167    0    0  167 /  167     0.0s Sem sequential
[ ]    0    0    0    0 /  167     0.0s Sem parallel
[ ]    8    0    0    8 /  167     0.1s Sem parallel
[ ]   19    0    0   19 /  167     0.3s Sem parallel
[ ]   22    0    0   22 /  167     0.6s Sem parallel
[ ]   36    0    0   36 /  167     0.7s Sem parallel
[ ]   40    0    0   40 /  167     0.8s Sem parallel
[ ]   47    0    0   47 /  167     1.0s Sem parallel
[ ]   55    0    0   55 /  167     1.2s Sem parallel
[ ]   61    0    0   61 /  167     1.3s Sem parallel
[ ]   68    0    0   68 /  167     1.5s Sem parallel
[ ]   75    0    0   75 /  167     1.7s Sem parallel
[ ]   80    0    0   80 /  167     1.8s Sem parallel
[ ]   81    0    0   81 /  167     1.9s Sem parallel
[ ]   92    0    0   92 /  167     2.0s Sem parallel
[ ]   99    0    0   99 /  167     2.2s Sem parallel
[ ]  109    0    0  109 /  167     2.3s Sem parallel
[ ]  120    0    0  120 /  167     2.4s Sem parallel
[ ]  127    0    0  127 /  167     2.5s Sem parallel
[ ]  136    0    0  136 /  167     2.6s Sem parallel
[ ]  142    0    0  142 /  167     2.8s Sem parallel
[ ]  147    0    0  147 /  167     2.9s Sem parallel
[ ]  155    0    0  155 /  167     3.0s Sem parallel
[ ]  161    0    0  161 /  167     3.1s Sem parallel
[]  167    0    0  167 /  167     3.2s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 3517491583714782195
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  193     0.0s Sem sequential
[]  193    0    0  193 /  193     0.0s Sem sequential
[ ]    0    0    0    0 /  193     0.0s Sem parallel
[ ]    5    0    0    5 /  193     0.1s Sem parallel
[ ]    7    0    0    7 /  193     0.3s Sem parallel
[ ]   15    0    0   15 /  193     0.4s Sem parallel
[ ]   21    0    0   21 /  193     0.5s Sem parallel
[ ]   24    0    0   24 /  193     0.8s Sem parallel
[ ]   26    0    0   26 /  193     0.9s Sem parallel
[ ]   32    0    0   32 /  193     1.4s Sem parallel
[ ]   36    0    0   36 /  193     1.6s Sem parallel
[ ]   43    0    0   43 /  193     1.7s Sem parallel
[ ]   50    0    0   50 /  193     1.8s Sem parallel
[ ]   54    0    0   54 /  193     2.0s Sem parallel
[ ]   60    0    0   60 /  193     2.1s Sem parallel
[ ]   65    0    0   65 /  193     2.4s Sem parallel
[ ]   73    0    0   73 /  193     2.6s Sem parallel
[ ]   85    0    0   85 /  193     2.7s Sem parallel
[ ]   93    0    0   93 /  193     2.9s Sem parallel
[ ]   99    0    0   99 /  193     3.0s Sem parallel
[ ]  106    0    0  106 /  193     3.2s Sem parallel
[ ]  112    0    0  112 /  193     3.3s Sem parallel
[ ]  113    0    0  113 /  193     3.5s Sem parallel
[ ]  121    0    0  121 /  193     3.7s Sem parallel
[ ]  127    0    0  127 /  193     3.8s Sem parallel
[ ]  135    0    0  135 /  193     3.9s Sem parallel
[ ]  142    0    0  142 /  193     4.0s Sem parallel
[ ]  147    0    0  147 /  193     4.1s Sem parallel
[ ]  157    0    0  157 /  193     4.3s Sem parallel
[ ]  160    0    0  160 /  193     4.4s Sem parallel
[ ]  165    0    0  165 /  193     4.5s Sem parallel
[ ]  174    0    0  174 /  193     4.6s Sem parallel
[ ]  183    0    0  183 /  193     4.8s Sem parallel
[ ]  184    0    0  184 /  193     5.0s Sem parallel
[]  193    0    0  193 /  193     5.1s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 4195444845369934094
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  165     0.0s Sem sequential
[]  165    0    0  165 /  165     0.0s Sem sequential
[ ]    0    0    0    0 /  165     0.0s Sem parallel
[ ]   15    0    0   15 /  165     0.1s Sem parallel
[ ]   18    0    0   18 /  165     0.3s Sem parallel
[ ]   24    0    0   24 /  165     0.4s Sem parallel
[ ]   27    0    0   27 /  165     0.6s Sem parallel
[ ]   29    0    0   29 /  165     0.8s Sem parallel
[ ]   36    0    0   36 /  165     1.0s Sem parallel
[ ]   42    0    0   42 /  165     1.2s Sem parallel
[ ]   43    0    0   43 /  165     1.3s Sem parallel
[ ]   44    0    0   44 /  165     1.4s Sem parallel
[ ]   45    0    0   45 /  165     1.5s Sem parallel
[ ]   50    0    0   50 /  165     1.6s Sem parallel
[ ]   51    0    0   51 /  165     2.1s Sem parallel
[ ]   52    0    0   52 /  165     2.2s Sem parallel
[ ]   53    0    0   53 /  165     2.3s Sem parallel
[ ]   54    0    0   54 /  165     2.7s Sem parallel
[ ]   55    0    0   55 /  165     3.5s Sem parallel
[ ]   56    0    0   56 /  165     3.7s Sem parallel
[ ]   57    0    0   57 /  165     3.9s Sem parallel
[ ]   59    0    0   59 /  165     4.1s Sem parallel
[ ]   67    0    0   67 /  165     4.2s Sem parallel
[ ]   72    0    0   72 /  165     4.4s Sem parallel
[ ]   76    0    0   76 /  165     4.6s Sem parallel
[ ]   86    0    0   86 /  165     4.8s Sem parallel
[ ]   88    0    0   88 /  165     4.9s Sem parallel
[ ]   99    0    0   99 /  165     5.0s Sem parallel
[ ]  110    0    0  110 /  165     5.1s Sem parallel
[ ]  116    0    0  116 /  165     5.3s Sem parallel
[ ]  118    0    0  118 /  165     5.4s Sem parallel
[ ]  120    0    0  120 /  165     5.6s Sem parallel
[ ]  125    0    0  125 /  165     5.7s Sem parallel
[ ]  126    0    0  126 /  165     5.9s Sem parallel
[ ]  127    0    0  127 /  165     6.2s Sem parallel
[ ]  129    0    0  129 /  165     6.3s Sem parallel
[ ]  135    0    0  135 /  165     6.4s Sem parallel
[ ]  145    0    0  145 /  165     6.5s Sem parallel
[ ]  149    0    0  149 /  165     6.6s Sem parallel
[ ]  154    0    0  154 /  165     6.7s Sem parallel
[ ]  161    0    0  161 /  165     6.8s Sem parallel
[ ]  165    0    0  165 /  165     7.0s Sem parallel
[]  165    0    0  165 /  165     7.0s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 1194628716592471033
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   70     0.0s Sem sequential
[]   70    0    0   70 /   70     0.0s Sem sequential
[ ]    0    0    0    0 /   70     0.0s Sem parallel
[ ]    3    0    0    3 /   70     0.1s Sem parallel
[ ]   11    0    0   11 /   70     0.2s Sem parallel
[ ]   12    0    0   12 /   70     0.9s Sem parallel
[ ]   13    0    0   13 /   70     1.8s Sem parallel
[ ]   14    0    0   14 /   70     3.1s Sem parallel
[ ]   15    0    0   15 /   70     3.9s Sem parallel
[ ]   16    0    0   16 /   70     4.5s Sem parallel
[ ]   17    0    0   17 /   70     5.2s Sem parallel
[ ]   18    0    0   18 /   70     5.4s Sem parallel
[ ]   19    0    0   19 /   70     5.8s Sem parallel
[ ]   20    0    0   20 /   70     6.2s Sem parallel
[ ]   21    0    0   21 /   70     6.3s Sem parallel
[ ]   22    0    0   22 /   70     6.5s Sem parallel
[ ]   23    0    0   23 /   70     6.8s Sem parallel
[ ]   24    0    0   24 /   70     7.2s Sem parallel
[ ]   25    0    0   25 /   70     7.5s Sem parallel
[ ]   26    0    0   26 /   70     7.7s Sem parallel
[ ]   27    0    0   27 /   70     7.8s Sem parallel
[ ]   29    0    0   29 /   70     7.9s Sem parallel
[ ]   38    0    0   38 /   70     8.1s Sem parallel
[ ]   39    0    0   39 /   70     8.2s Sem parallel
[ ]   40    0    0   40 /   70     8.4s Sem parallel
[ ]   41    0    0   41 /   70     9.0s Sem parallel
[ ]   42    0    0   42 /   70     9.5s Sem parallel
[ ]   46    0    0   46 /   70     9.7s Sem parallel
[ ]   56    0    0   56 /   70     9.9s Sem parallel
[ ]   57    0    0   57 /   70    10.2s Sem parallel
[ ]   60    0    0   60 /   70    10.3s Sem parallel
[ ]   66    0    0   66 /   70    10.5s Sem parallel
[ ]   67    0    0   67 /   70    10.9s Sem parallel
[ ]   68    0    0   68 /   70    11.4s Sem parallel
[ ]   69    0    0   69 /   70    12.5s Sem parallel
[ ]   70    0    0   70 /   70    13.3s Sem parallel
[]   70    0    0   70 /   70    13.3s Sem parallel
================================================================================
success (ran 2 tests)
(cd _build/default/bench && ./main.exe -brief 'Ref with Picos_std_sync')
Ref with Picos_std_sync:
ops over time/cas int with Lock:
20.88 M/s
ops over time/cas int with Rwlock:
17.38 M/s
ops over time/cas int with Sem:
21.12 M/s
ops over time/get with Lock:
24.88 M/s
ops over time/get with Rwlock:
23.82 M/s
ops over time/get with Sem:
24.34 M/s
ops over time/incr with Lock:
24.78 M/s
ops over time/incr with Rwlock:
18.76 M/s
ops over time/incr with Sem:
24.72 M/s
ops over time/push & pop with Lock:
11.43 M/s
ops over time/push & pop with Rwlock:
14.95 M/s
ops over time/push & pop with Sem:
12.68 M/s
ops over time/swap with Lock:
18.58 M/s
ops over time/swap with Rwlock:
21.81 M/s
ops over time/swap with Sem:
19.35 M/s
ops over time/xchg int with Lock:
18.72 M/s
ops over time/xchg int with Rwlock:
17.68 M/s
ops over time/xchg int with Sem:
20.82 M/s
time per op/cas int with Lock:
47.90 ns
time per op/cas int with Rwlock:
57.54 ns
time per op/cas int with Sem:
47.34 ns
time per op/get with Lock:
40.19 ns
time per op/get with Rwlock:
41.98 ns
time per op/get with Sem:
41.08 ns
time per op/incr with Lock:
40.36 ns
time per op/incr with Rwlock:
53.29 ns
time per op/incr with Sem:
40.46 ns
time per op/push & pop with Lock:
87.47 ns
time per op/push & pop with Rwlock:
66.89 ns
time per op/push & pop with Sem:
78.86 ns
time per op/swap with Lock:
53.82 ns
time per op/swap with Rwlock:
45.85 ns
time per op/swap with Sem:
51.68 ns
time per op/xchg int with Lock:
53.42 ns
time per op/xchg int with Rwlock:
56.56 ns
time per op/xchg int with Sem:
48.04 ns
(cd _build/default/bench && ./main.exe -brief Picos_mpmcq)
Picos_mpmcq:
messages over time/1 nb adder, 1 nb taker:
12.12 M/s
messages over time/1 nb adder, 2 nb takers:
8.05 M/s
messages over time/1 nb adder, 4 nb takers:
3.91 M/s
messages over time/2 nb adders, 1 nb taker:
5.74 M/s
messages over time/2 nb adders, 2 nb takers:
8.17 M/s
messages over time/2 nb adders, 4 nb takers:
4.58 M/s
messages over time/4 nb adders, 1 nb taker:
5.51 M/s
messages over time/4 nb adders, 2 nb takers:
5.53 M/s
messages over time/4 nb adders, 4 nb takers:
6.97 M/s
messages over time/one domain:
10.90 M/s
time per message/1 nb adder, 1 nb taker:
165.02 ns
time per message/1 nb adder, 2 nb takers:
372.69 ns
time per message/1 nb adder, 4 nb takers:
1280.14 ns
time per message/2 nb adders, 1 nb taker:
522.85 ns
time per message/2 nb adders, 2 nb takers:
489.36 ns
time per message/2 nb adders, 4 nb takers:
1311.46 ns
time per message/4 nb adders, 1 nb taker:
907.24 ns
time per message/4 nb adders, 2 nb takers:
1084.60 ns
time per message/4 nb adders, 4 nb takers:
1147.39 ns
time per message/one domain:
91.77 ns
(cd _build/default/bench && ./main.exe -brief Picos_mpscq)
Picos_mpscq:
messages over time/1 nb adder, 1 nb taker:
2.18 M/s
messages over time/2 nb adders, 1 nb taker:
12.42 M/s
messages over time/4 nb adders, 1 nb taker:
8.81 M/s
messages over time/8 nb adders, 1 nb taker:
8.04 M/s
messages over time/one domain:
10.00 M/s
time per message/1 nb adder, 1 nb taker:
916.23 ns
time per message/2 nb adders, 1 nb taker:
241.48 ns
time per message/4 nb adders, 1 nb taker:
567.55 ns
time per message/8 nb adders, 1 nb taker:
1119.52 ns
time per message/one domain:
99.99 ns
(cd _build/default/bench && ./main.exe -brief Picos_htbl)
Picos_htbl:
operations over time/1 worker, 10% reads:
7.10 M/s
operations over time/1 worker, 50% reads:
9.01 M/s
operations over time/1 worker, 90% reads:
13.24 M/s
operations over time/2 workers, 10% reads:
12.46 M/s
operations over time/2 workers, 50% reads:
14.59 M/s
operations over time/2 workers, 90% reads:
22.82 M/s
operations over time/4 workers, 10% reads:
17.64 M/s
operations over time/4 workers, 50% reads:
20.70 M/s
operations over time/4 workers, 90% reads:
40.27 M/s
operations over time/8 workers, 10% reads:
15.64 M/s
operations over time/8 workers, 50% reads:
32.45 M/s
operations over time/8 workers, 90% reads:
59.06 M/s
time per operation/1 worker, 10% reads:
140.88 ns
time per operation/1 worker, 50% reads:
111.01 ns
time per operation/1 worker, 90% reads:
75.54 ns
time per operation/2 workers, 10% reads:
160.47 ns
time per operation/2 workers, 50% reads:
137.07 ns
time per operation/2 workers, 90% reads:
87.62 ns
time per operation/4 workers, 10% reads:
226.72 ns
time per operation/4 workers, 50% reads:
193.28 ns
time per operation/4 workers, 90% reads:
99.32 ns
time per operation/8 workers, 10% reads:
511.54 ns
time per operation/8 workers, 50% reads:
246.55 ns
time per operation/8 workers, 90% reads:
135.45 ns
(cd _build/default/bench && ./main.exe -brief 'Hashtbl with Picos_std_sync')
Hashtbl with Picos_std_sync:
operations over time/1 worker, 10% reads with Lock:
7.17 M/s
operations over time/1 worker, 10% reads with Rwlock:
6.64 M/s
operations over time/1 worker, 10% reads with Sem:
6.81 M/s
operations over time/1 worker, 100% reads with Lock:
8.75 M/s
operations over time/1 worker, 100% reads with Rwlock:
9.68 M/s
operations over time/1 worker, 100% reads with Sem:
8.02 M/s
operations over time/1 worker, 50% reads with Lock:
7.45 M/s
operations over time/1 worker, 50% reads with Rwlock:
6.36 M/s
operations over time/1 worker, 50% reads with Sem:
12.33 M/s
operations over time/1 worker, 90% reads with Lock:
7.85 M/s
operations over time/1 worker, 90% reads with Rwlock:
6.19 M/s
operations over time/1 worker, 90% reads with Sem:
7.88 M/s
operations over time/1 worker, 95% reads with Lock:
7.64 M/s
operations over time/1 worker, 95% reads with Rwlock:
7.84 M/s
operations over time/1 worker, 95% reads with Sem:
7.71 M/s
operations over time/2 workers, 10% reads with Lock:
7.16 M/s
operations over time/2 workers, 10% reads with Rwlock:
6.19 M/s
operations over time/2 workers, 10% reads with Sem:
2.97 M/s
operations over time/2 workers, 100% reads with Lock:
8.70 M/s
operations over time/2 workers, 100% reads with Rwlock:
6.86 M/s
operations over time/2 workers, 100% reads with Sem:
8.51 M/s
operations over time/2 workers, 50% reads with Lock:
7.25 M/s
operations over time/2 workers, 50% reads with Rwlock:
6.46 M/s
operations over time/2 workers, 50% reads with Sem:
4.51 M/s
operations over time/2 workers, 90% reads with Lock:
7.95 M/s
operations over time/2 workers, 90% reads with Rwlock:
7.91 M/s
operations over time/2 workers, 90% reads with Sem:
5.88 M/s
operations over time/2 workers, 95% reads with Lock:
6.88 M/s
operations over time/2 workers, 95% reads with Rwlock:
7.54 M/s
operations over time/2 workers, 95% reads with Sem:
7.30 M/s
operations over time/4 workers, 10% reads with Lock:
3.46 M/s
operations over time/4 workers, 10% reads with Rwlock:
1.75 M/s
operations over time/4 workers, 10% reads with Sem:
2.15 M/s
operations over time/4 workers, 100% reads with Lock:
3.48 M/s
operations over time/4 workers, 100% reads with Rwlock:
14.24 M/s
operations over time/4 workers, 100% reads with Sem:
5.52 M/s
operations over time/4 workers, 50% reads with Lock:
3.40 M/s
operations over time/4 workers, 50% reads with Rwlock:
3.54 M/s
operations over time/4 workers, 50% reads with Sem:
3.15 M/s
operations over time/4 workers, 90% reads with Lock:
5.53 M/s
operations over time/4 workers, 90% reads with Rwlock:
6.13 M/s
operations over time/4 workers, 90% reads with Sem:
2.73 M/s
operations over time/4 workers, 95% reads with Lock:
2.96 M/s
operations over time/4 workers, 95% reads with Rwlock:
6.47 M/s
operations over time/4 workers, 95% reads with Sem:
2.75 M/s
operations over time/8 workers, 10% reads with Lock:
1.89 M/s
operations over time/8 workers, 10% reads with Rwlock:
1.32 M/s
operations over time/8 workers, 10% reads with Sem:
3.35 M/s
operations over time/8 workers, 100% reads with Lock:
2.42 M/s
operations over time/8 workers, 100% reads with Rwlock:
8.08 M/s
operations over time/8 workers, 100% reads with Sem:
4.29 M/s
operations over time/8 workers, 50% reads with Lock:
1.54 M/s
operations over time/8 workers, 50% reads with Rwlock:
3.21 M/s
operations over time/8 workers, 50% reads with Sem:
2.66 M/s
operations over time/8 workers, 90% reads with Lock:
1.90 M/s
operations over time/8 workers, 90% reads with Rwlock:
3.77 M/s
operations over time/8 workers, 90% reads with Sem:
2.90 M/s
operations over time/8 workers, 95% reads with Lock:
1.90 M/s
operations over time/8 workers, 95% reads with Rwlock:
5.56 M/s
operations over time/8 workers, 95% reads with Sem:
2.02 M/s
time per operation/1 worker, 10% reads with Lock:
139.39 ns
time per operation/1 worker, 10% reads with Rwlock:
150.51 ns
time per operation/1 worker, 10% reads with Sem:
146.76 ns
time per operation/1 worker, 100% reads with Lock:
114.35 ns
time per operation/1 worker, 100% reads with Rwlock:
103.34 ns
time per operation/1 worker, 100% reads with Sem:
124.63 ns
time per operation/1 worker, 50% reads with Lock:
134.30 ns
time per operation/1 worker, 50% reads with Rwlock:
157.14 ns
time per operation/1 worker, 50% reads with Sem:
81.07 ns
time per operation/1 worker, 90% reads with Lock:
127.43 ns
time per operation/1 worker, 90% reads with Rwlock:
161.65 ns
time per operation/1 worker, 90% reads with Sem:
126.88 ns
time per operation/1 worker, 95% reads with Lock:
130.94 ns
time per operation/1 worker, 95% reads with Rwlock:
127.56 ns
time per operation/1 worker, 95% reads with Sem:
129.70 ns
time per operation/2 workers, 10% reads with Lock:
279.48 ns
time per operation/2 workers, 10% reads with Rwlock:
323.20 ns
time per operation/2 workers, 10% reads with Sem:
672.29 ns
time per operation/2 workers, 100% reads with Lock:
230.01 ns
time per operation/2 workers, 100% reads with Rwlock:
291.58 ns
time per operation/2 workers, 100% reads with Sem:
234.95 ns
time per operation/2 workers, 50% reads with Lock:
275.68 ns
time per operation/2 workers, 50% reads with Rwlock:
309.70 ns
time per operation/2 workers, 50% reads with Sem:
443.64 ns
time per operation/2 workers, 90% reads with Lock:
251.62 ns
time per operation/2 workers, 90% reads with Rwlock:
252.97 ns
time per operation/2 workers, 90% reads with Sem:
340.14 ns
time per operation/2 workers, 95% reads with Lock:
290.84 ns
time per operation/2 workers, 95% reads with Rwlock:
265.24 ns
time per operation/2 workers, 95% reads with Sem:
273.80 ns
time per operation/4 workers, 10% reads with Lock:
1154.47 ns
time per operation/4 workers, 10% reads with Rwlock:
2282.65 ns
time per operation/4 workers, 10% reads with Sem:
1856.92 ns
time per operation/4 workers, 100% reads with Lock:
1150.75 ns
time per operation/4 workers, 100% reads with Rwlock:
280.90 ns
time per operation/4 workers, 100% reads with Sem:
724.95 ns
time per operation/4 workers, 50% reads with Lock:
1176.34 ns
time per operation/4 workers, 50% reads with Rwlock:
1128.42 ns
time per operation/4 workers, 50% reads with Sem:
1269.04 ns
time per operation/4 workers, 90% reads with Lock:
723.51 ns
time per operation/4 workers, 90% reads with Rwlock:
652.09 ns
time per operation/4 workers, 90% reads with Sem:
1466.00 ns
time per operation/4 workers, 95% reads with Lock:
1351.13 ns
time per operation/4 workers, 95% reads with Rwlock:
618.48 ns
time per operation/4 workers, 95% reads with Sem:
1455.64 ns
time per operation/8 workers, 10% reads with Lock:
4231.37 ns
time per operation/8 workers, 10% reads with Rwlock:
6051.41 ns
time per operation/8 workers, 10% reads with Sem:
2387.26 ns
time per operation/8 workers, 100% reads with Lock:
3308.73 ns
time per operation/8 workers, 100% reads with Rwlock:
990.13 ns
time per operation/8 workers, 100% reads with Sem:
1866.61 ns
time per operation/8 workers, 50% reads with Lock:
5190.14 ns
time per operation/8 workers, 50% reads with Rwlock:
2491.82 ns
time per operation/8 workers, 50% reads with Sem:
3008.05 ns
time per operation/8 workers, 90% reads with Lock:
4219.14 ns
time per operation/8 workers, 90% reads with Rwlock:
2122.17 ns
time per operation/8 workers, 90% reads with Sem:
2760.75 ns
time per operation/8 workers, 95% reads with Lock:
4210.39 ns
time per operation/8 workers, 95% reads with Rwlock:
1437.97 ns
time per operation/8 workers, 95% reads with Sem:
3970.11 ns
(cd _build/default/bench && ./main.exe -brief Picos_stdio)
Picos_stdio:
blocking reads over time/1 worker:
0.05 M/s
blocking reads over time/2 workers:
0.05 M/s
blocking reads over time/4 workers:
0.13 M/s
non-blocking reads over time/1 worker:
0.21 M/s
non-blocking reads over time/2 workers:
1.22 M/s
non-blocking reads over time/4 workers:
3.66 M/s
time per blocking read/1 worker:
21968.68 ns
time per blocking read/2 workers:
40164.44 ns
time per blocking read/4 workers:
30709.27 ns
time per non-blocking read/1 worker:
4719.91 ns
time per non-blocking read/2 workers:
1640.51 ns
time per non-blocking read/4 workers:
1091.95 ns
(cd _build/default/bench && ./main.exe -brief 'Picos_sync Stream')
Picos_sync Stream:
messages over time/1 nb pusher, 1 nb reader:
3.07 M/s
messages over time/2 nb pushers, 1 nb reader:
1.48 M/s
messages over time/4 nb pushers, 1 nb reader:
3.70 M/s
messages over time/one domain:
3.76 M/s
time per message/1 nb pusher, 1 nb reader:
651.61 ns
time per message/2 nb pushers, 1 nb reader:
2020.83 ns
time per message/4 nb pushers, 1 nb reader:
1350.90 ns
time per message/one domain:
265.96 ns
(cd _build/default/bench && ./main.exe -brief Fib)
Fib:
spawns over time/1 mfifo, fib 20:
0.56 M/s
spawns over time/2 mfifos, fib 20:
1.26 M/s
spawns over time/4 mfifos, fib 20:
3.03 M/s
spawns over time/8 mfifos, fib 20:
5.45 M/s
time per spawn/1 mfifo, fib 20:
1772.56 ns
time per spawn/2 mfifos, fib 20:
1593.49 ns
time per spawn/4 mfifos, fib 20:
1319.21 ns
time per spawn/8 mfifos, fib 20:
1468.01 ns
(cd _build/default/bench && ./main.exe -brief 'Picos binaries')
Picos binaries:
binary size/picos:
85.01 kB
binary size/picos.domain:
3.71 kB
binary size/picos.thread:
3.15 kB
binary size/picos_aux.htbl:
53.60 kB
binary size/picos_aux.mpmcq:
15.50 kB
binary size/picos_aux.mpscq:
18.12 kB
binary size/picos_aux.rc:
16.21 kB
binary size/picos_io:
107.57 kB
binary size/picos_io.fd:
9.08 kB
binary size/picos_io.select:
62.54 kB
binary size/picos_io_cohttp:
44.22 kB
binary size/picos_lwt:
25.21 kB
binary size/picos_lwt.unix:
13.94 kB
binary size/picos_mux.fifo:
25.40 kB
binary size/picos_mux.multififo:
60.24 kB
binary size/picos_mux.random:
47.05 kB
binary size/picos_mux.thread:
21.62 kB
binary size/picos_std.awaitable:
33.02 kB
binary size/picos_std.event:
21.60 kB
binary size/picos_std.finally:
18.34 kB
binary size/picos_std.structured:
81.50 kB
binary size/picos_std.sync:
180.56 kB
(cd _build/default/bench && ./main.exe -brief 'Bounded_q with Picos_std_sync')
Bounded_q with Picos_std_sync:
messages over time/1 adder, 1 taker with Lock:
2.21 M/s
messages over time/1 adder, 2 takers with Lock:
1.52 M/s
messages over time/1 adder, 4 takers with Lock:
0.37 M/s
messages over time/2 adders, 1 taker with Lock:
1.41 M/s
messages over time/2 adders, 2 takers with Lock:
0.94 M/s
messages over time/2 adders, 4 takers with Lock:
0.69 M/s
messages over time/4 adders, 1 taker with Lock:
1.30 M/s
messages over time/4 adders, 2 takers with Lock:
1.14 M/s
messages over time/4 adders, 4 takers with Lock:
0.89 M/s
messages over time/one domain with Lock:
7.10 M/s
time per message/1 adder, 1 taker with Lock:
906.29 ns
time per message/1 adder, 2 takers with Lock:
1974.89 ns
time per message/1 adder, 4 takers with Lock:
13683.71 ns
time per message/2 adders, 1 taker with Lock:
2124.61 ns
time per message/2 adders, 2 takers with Lock:
4276.46 ns
time per message/2 adders, 4 takers with Lock:
8717.22 ns
time per message/4 adders, 1 taker with Lock:
3837.02 ns
time per message/4 adders, 2 takers with Lock:
5282.14 ns
time per message/4 adders, 4 takers with Lock:
8998.65 ns
time per message/one domain with Lock:
140.81 ns
(cd _build/default/bench && ./main.exe -brief 'Memory usage')
Memory usage:
stack and heap used/Fun.protect:
80.00 B
stack and heap used/fiber in a bundle:
240.00 B
stack and heap used/fiber in a flock:
256.00 B
stack and heap used/fiber with shared computation & latch:
240.00 B
stack and heap used/finally:
40.00 B
stack and heap used/instantiate:
96.00 B
stack and heap used/join_after bundle:
248.00 B
stack and heap used/join_after flock:
248.00 B
stack and heap used/lastly:
32.00 B
stack and heap used/promise in a bundle:
360.00 B
stack and heap used/promise in a flock:
376.00 B
2025-12-23 12:51.12 ---> saved as "ba62d01c2ec5a5c7206b96b58b567d3517fe2c7112ddaa06ca04d5cbf2f5a9ff"
Job succeeded
2025-12-23 12:53.58: Job succeeded