2025-12-24 15:43.56: New job: test ocaml-multicore/picos https://github.com/ocaml-multicore/picos.git#refs/heads/add-fair-fifothread-scheduler (fb60781acd721db7f2f8a297b3cc66bbbbada24e) (linux-x86_64:alpine-3.22-5.4_opam-2.4)
Base: ocaml/opam:alpine-3.22-ocaml-5.4@sha256:b93dce0f7db9356ff4a704587c4d5ecd58b5ad8e3ca5418afcad75bc8f439f66
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 fb60781a
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:alpine-3.22-ocaml-5.4@sha256:b93dce0f7db9356ff4a704587c4d5ecd58b5ad8e3ca5418afcad75bc8f439f66
# alpine-3.22-5.4_opam-2.4
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/bin/opam-2.4 /usr/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-24 15:43.56: Using cache hint "ocaml-multicore/picos-ocaml/opam:alpine-3.22-ocaml-5.4@sha256:b93dce0f7db9356ff4a704587c4d5ecd58b5ad8e3ca5418afcad75bc8f439f66-alpine-3.22-5.4_opam-2.4-389e1a8bf5f459d36f9f90f630d52d37"
2025-12-24 15:43.56: Using OBuilder spec:
((from ocaml/opam:alpine-3.22-ocaml-5.4@sha256:b93dce0f7db9356ff4a704587c4d5ecd58b5ad8e3ca5418afcad75bc8f439f66)
(comment alpine-3.22-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/bin/opam-2.4 /usr/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-24 15:43.56: Waiting for resource in pool OCluster
2025-12-24 15:43.56: Waiting for worker…
2025-12-24 15:43.58: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at fb60781 Bench with fifothread
(from ocaml/opam:alpine-3.22-ocaml-5.4@sha256:b93dce0f7db9356ff4a704587c4d5ecd58b5ad8e3ca5418afcad75bc8f439f66)
2025-12-24 15:44.01 ---> using "d0327f940a3c6a061e0c402e9328a78119d7dfd715a32de8de339388ce4c3eef" from cache
/: (comment alpine-3.22-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/bin/opam-2.4 /usr/bin/opam"))
2025-12-24 15:44.01 ---> using "5dee9b950486dfb3089cc431b3d79d731cac566432611d92e2af71d796efa3f6" from cache
/src: (run (shell "opam init --reinit -ni"))
Configuring from /home/opam/.opamrc and then from 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.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-24 15:44.01 ---> using "2201c82fbbea424d8922cfff96a8636118d76b7d777b2668dd0c8a0002190b0e" from cache
/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 6.8.0-87-generic
The OCaml toplevel, version 5.4.0
2.4.1
2025-12-24 15:44.01 ---> using "0a4c323c7414f4e6678e49268fcc6862031004115b008dfc46899f1c4fb8b11a" from cache
/src: (workdir /src)
/src: (run (shell "sudo chown opam /src"))
2025-12-24 15:44.01 ---> using "157d49f864f4b916c270d9ecb2d620b36de25c8cc3e7177a0dc6f45bc76f3840" 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
ee48e882f0..235b964523 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.
# To update the current shell environment, run: eval $(opam env)
2025-12-24 15:44.01 ---> using "78369d84120f9558c7379cc680da4d4ed0b4de19dafeb221c136e37982dd043b" 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-24 15:44.01 ---> using "fb55074ecfbdbf420906b9d3ac16580709caa3794c9c5f7306f24f57b8bc0c6f" 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-24 15:44.01 ---> using "2b7d689017509413956c8980ceb2fbfe66eb9130c6f2a6a5fd7efdcf5e5ace84" from cache
/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-12-24 15:44.01 ---> using "91c0a8045d6d9b3f6d8ad298ced519a325ba60e6887d6f86cc30f17e392f231f" 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"))
+ /usr/bin/sudo "apk" "update"
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.22/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.22/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
- v3.22.2-316-gf6f93a78dea [https://dl-cdn.alpinelinux.org/alpine/v3.22/main]
- v3.22.2-315-g6ed2819aa4e [https://dl-cdn.alpinelinux.org/alpine/v3.22/community]
- v3.23.0-1492-g1238cefcb51 [https://dl-cdn.alpinelinux.org/alpine/edge/main]
- v3.23.0-1492-g1238cefcb51 [https://dl-cdn.alpinelinux.org/alpine/edge/community]
- v3.23.0-1483-g24d2d504082 [https://dl-cdn.alpinelinux.org/alpine/edge/testing]
- OK: 60518 distinct packages available
<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[picos.dev] synchronised (file:///src)
[picos_aux.dev] synchronised (file:///src)
[picos_io.dev] synchronised (file:///src)
[picos_io_cohttp.dev] synchronised (file:///src)
[picos_lwt.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:
gmp-dev npm
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
+ /usr/bin/sudo "apk" "add" "gmp-dev" "npm"
- (1/9) Installing libgmpxx (6.3.0-r3)
- (2/9) Installing gmp-dev (6.3.0-r3)
- (3/9) Installing ada-libs (2.9.2-r4)
- (4/9) Installing icu-data-en (76.1-r1)
- Executing icu-data-en-76.1-r1.post-install
- *
- * If you need ICU with non-English locales and legacy charset support, install
- * package icu-data-full.
- *
- (5/9) Installing icu-libs (76.1-r1)
- (6/9) Installing simdjson (3.12.0-r0)
- (7/9) Installing simdutf (7.2.1-r0)
- (8/9) Installing nodejs (22.16.0-r2)
- (9/9) Installing npm (11.6.4-r0)
- Executing busybox-1.37.0-r20.trigger
- OK: 377 MiB in 112 packages
2025-12-24 15:44.01 ---> using "6054320b750c271e46863408f507d0b9d15e085dd61f6ac460dd89a1fc1a0abc" 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
- install alcotest 1.9.1
- install angstrom 0.16.1
- install asn1-combinators 0.3.2
- install astring 0.8.5
- install backoff 0.1.1
- install base v0.17.3
- install base-bytes base
- install base64 3.5.2
- install bigstringaf 0.10.0
- install bos 0.2.1
- install ca-certs 1.0.1
- install camlp-streams 5.0.1
- install cmdliner 2.1.0
- install cohttp 6.2.1
- install cohttp-lwt 6.2.1
- install cohttp-lwt-unix 6.2.1
- install conduit 8.0.0
- install conduit-lwt 8.0.0
- install conduit-lwt-unix 8.0.0
- install conf-gmp 5
- install conf-gmp-powm-sec 4
- install conf-npm 1
- install conf-pkg-config 4
- install containers 3.16
- install cppo 1.8.0
- install csexp 1.5.2
- install digestif 1.3.0
- install domain-local-await 1.0.1
- install domain-name 0.5.0
- install domain_shims 0.1.0
- install dscheck 0.5.0
- install dune 3.20.2
- install dune-configurator 3.20.2
- install duration 0.2.1
- install either 1.0.0
- install eqaf 0.10
- install fmt 0.11.0
- install fpath 0.7.3
- install gen 1.1
- install gmap 0.3.0
- install http 6.2.1
- install ipaddr 5.6.1
- install ipaddr-sexp 5.6.1
- install js_of_ocaml 6.2.0
- install js_of_ocaml-compiler 6.2.0
- install kdf 1.0.0
- install logs 0.10.0
- install lwt 5.9.2
- install macaddr 5.6.1
- install magic-mime 1.3.1
- install mdx 2.5.1
- install menhir 20250912
- install menhirCST 20250912
- install menhirLib 20250912
- install menhirSdk 20250912
- install mirage-crypto 2.0.2
- install mirage-crypto-ec 2.0.2
- install mirage-crypto-pk 2.0.2
- install mirage-crypto-rng 2.0.2
- install mtime 2.1.0
- install multicore-bench 0.1.7
- install multicore-magic 2.3.1
- install multicore-magic-dscheck 2.3.1
- install ocaml-compiler-libs v0.17.0
- install ocaml-syntax-shims 1.0.0
- install ocaml-version 4.0.3
- install ocaml_intrinsics_kernel v0.17.1
- install ocamlbuild 0.16.1
- install ocamlfind 1.9.8
- install ocplib-endian 1.2
- install ohex 0.2.0
- install oseq 0.5.1
- install ppx_derivers 1.2.1
- install ppx_sexp_conv v0.17.1
- install ppxlib 0.37.0
- install ppxlib_jane v0.17.4
- install psq 0.2.1
- install ptime 1.2.0
- install qcheck-core 0.90
- install qcheck-multicoretests-util 0.10
- install qcheck-stm 0.10
- install re 1.14.0
- install result 1.5
- install rresult 0.7.0
- install sedlex 3.7
- install seq base
- install sexplib0 v0.17.0
- install stdlib-shims 0.3.0
- install stringext 1.6.0
- install thread-local-storage 0.2
- install thread-table 1.0.0
- install topkg 1.1.1
- install tsort 2.2.0
- install uri 4.4.0
- install uri-sexp 4.4.0
- install uutf 1.0.4
- install x509 1.0.6
- install yojson 3.0.0
- install zarith 1.14
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (cached)
-> retrieved angstrom.0.16.1 (cached)
-> retrieved asn1-combinators.0.3.2 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved backoff.0.1.1 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved base.v0.17.3 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved ca-certs.1.0.1 (cached)
-> retrieved camlp-streams.5.0.1 (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 cmdliner.2.1.0 (cached)
-> retrieved cohttp.6.2.1, cohttp-lwt.6.2.1, cohttp-lwt-unix.6.2.1, http.6.2.1 (cached)
-> retrieved containers.3.16 (cached)
-> installed conf-gmp.5
-> installed conf-npm.1
-> installed conf-pkg-config.4
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-gmp-powm-sec.4
-> 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 dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved js_of_ocaml.6.2.0, js_of_ocaml-compiler.6.2.0 (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 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)
-> installed cmdliner.2.1.0
-> retrieved multicore-bench.0.1.7 (cached)
-> retrieved multicore-magic.2.3.1, multicore-magic-dscheck.2.3.1 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocaml-version.4.0.3 (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ohex.0.2.0 (cached)
-> retrieved oseq.0.5.1 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_sexp_conv.v0.17.1 (cached)
-> retrieved ppxlib_jane.v0.17.4 (cached)
-> retrieved psq.0.2.1 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved qcheck-core.0.90 (cached)
-> retrieved qcheck-multicoretests-util.0.10, qcheck-stm.0.10 (cached)
-> retrieved ppxlib.0.37.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved rresult.0.7.0 (cached)
-> retrieved sedlex.3.7 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved thread-local-storage.0.2 (cached)
-> retrieved thread-table.1.0.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 x509.1.0.6 (cached)
-> retrieved yojson.3.0.0 (cached)
-> retrieved zarith.1.14 (cached)
-> 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 asn1-combinators.0.3.2
-> installed backoff.0.1.1
-> installed base64.3.5.2
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed domain-name.0.5.0
-> installed domain_shims.0.1.0
-> installed duration.0.2.1
-> installed either.1.0.0
-> installed eqaf.0.10
-> installed gen.1.1
-> installed gmap.0.3.0
-> installed http.6.2.1
-> installed macaddr.5.6.1
-> installed magic-mime.1.3.1
-> installed menhirCST.20250912
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> installed multicore-magic.2.3.1
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-version.4.0.3
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ohex.0.2.0
-> installed oseq.0.5.1
-> installed ppx_derivers.1.2.1
-> installed psq.0.2.1
-> installed qcheck-core.0.90
-> installed re.1.14.0
-> installed result.1.5
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed thread-local-storage.0.2
-> installed thread-table.1.0.0
-> installed tsort.2.2.0
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed digestif.1.3.0
-> installed ipaddr.5.6.1
-> installed qcheck-multicoretests-util.0.10
-> installed domain-local-await.1.0.1
-> installed alcotest.1.9.1
-> installed qcheck-stm.0.10
-> installed multicore-bench.0.1.7
-> installed dune-configurator.3.20.2
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed containers.3.16
-> installed mirage-crypto.2.0.2
-> installed dscheck.0.5.0
-> installed kdf.1.0.0
-> installed multicore-magic-dscheck.2.3.1
-> installed lwt.5.9.2
-> installed uri.4.4.0
-> installed base.v0.17.3
-> installed menhir.20250912
-> installed ppxlib.0.37.0
-> installed ppxlib_jane.v0.17.4
-> installed sedlex.3.7
-> installed ppx_sexp_conv.v0.17.1
-> installed uri-sexp.4.4.0
-> installed ipaddr-sexp.5.6.1
-> installed js_of_ocaml-compiler.6.2.0
-> installed logs.0.10.0
-> installed mirage-crypto-rng.2.0.2
-> installed mirage-crypto-pk.2.0.2
-> installed conduit.8.0.0
-> installed cohttp.6.2.1
-> installed mdx.2.5.1
-> installed bos.0.2.1
-> installed conduit-lwt.8.0.0
-> 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.
# To update the current shell environment, run: eval $(opam env)
2025-12-24 15:44.01 ---> using "529b9ab0b6eb10deb1abb7847ef3c671baf19f4684f596e8a69ddee471cdb9a0" from cache
/src: (copy (src .) (dst /src))
2025-12-24 15:44.02 ---> saved as "e5901b7473a673e7b3c38c294c96055ed4eda0a8588b9da185833b3c5681ef7f"
/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 `K3IKOP1C'.
[OK] Basics 0
Full test results in `/src/_build/default/test/_build/_tests/Picos_lwt'.
Test Successful in 0.050s. 1 test run.
(cd _build/default/test && ./test_finally.exe)
Testing `Picos_finally'.
This run has ID `HYV1NICP'.
[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.001s. 2 tests run.
(cd _build/default/test && ./test_server_and_client.exe)
Using blocking sockets and fibers on OCaml 5:
Looping server running
Server listening
Server accepting
Client B running
Client B connected
Client B wrote 100
Client A running
Server accepted client
Server read 100
Server wrote 50
Server accepting
Client A connected
Client A wrote 100
Server accepted client
Server read 100
Server wrote 50
Server accepting
Client A read 50
Client B read 50
Server and Client test: OK
(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/test && ./test_sync.exe -- '^Mutex and Condition$' 0)
Testing `Picos_sync'.
This run has ID `QEPLN2FP'.
[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.002s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 1)
Testing `Picos_sync'.
This run has ID `UV856FR9'.
[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.002s. 1 test run.
(cd _build/default/test && ./test_picos_dscheck.exe)
Testing `Picos DSCheck'.
This run has ID `WHN2J8AX'.
[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.341s. 3 tests run.
(cd _build/default/test && ./test_io_cohttp.exe)
Uri: //127.0.0.1:53263/hello-io-cohttp
Method: POST
host: 127.0.0.1:53263
user-agent: ocaml-cohttp/v6.2.1
content-length: 17
Body: It's-a-Me, Picos!
(cd _build/default/bench && ./main.exe -brief 'Picos Computation')
Picos Computation:
attach detach pairs over time/1 worker:
10.87 M/s
attach detach pairs over time/2 workers:
7.95 M/s
attach detach pairs over time/4 workers:
5.86 M/s
attach detach pairs over time/trivial:
28.94 M/s
time per attach detach pair/1 worker:
92.01 ns
time per attach detach pair/2 workers:
251.69 ns
time per attach detach pair/4 workers:
682.52 ns
time per attach detach pair/trivial:
34.56 ns
(cd _build/default/test && ./test_io.exe)
Testing `Picos_io'.
This run has ID `XLFLXY91'.
[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 0.419s. 6 tests run.
(cd _build/default/bench && ./main.exe -brief 'Picos Current')
Picos Current:
ops over time/1 worker:
34.22 M/s
ops over time/2 workers:
67.52 M/s
ops over time/4 workers:
134.10 M/s
time per op/1 worker:
29.22 ns
time per op/2 workers:
29.62 ns
time per op/4 workers:
29.83 ns
(cd _build/default/test && ./test_structured.exe)
Testing `Picos_structured'.
This run has ID `68S6NQOQ'.
[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 0.742s. 14 tests run.
(cd _build/default/test && ./test_mpmcq_dscheck.exe)
Testing `Picos_mpmcq DSCheck'.
This run has ID `JK1XCZXF'.
[OK] Multiple pushes and pops 0
Full test results in `/src/_build/default/test/_build/_tests/Picos_mpmcq DSCheck'.
Test Successful in 1.028s. 1 test run.
(cd _build/default/bench && ./main.exe -brief 'Picos FLS (excluding Current)')
Picos FLS (excluding Current):
gets over time/1 worker:
192.62 M/s
gets over time/2 workers:
383.58 M/s
gets over time/4 workers:
777.47 M/s
sets over time/1 worker:
126.09 M/s
sets over time/2 workers:
236.09 M/s
sets over time/4 workers:
478.49 M/s
time per get/1 worker:
5.19 ns
time per get/2 workers:
5.21 ns
time per get/4 workers:
5.14 ns
time per set/1 worker:
7.93 ns
time per set/2 workers:
8.47 ns
time per set/4 workers:
8.36 ns
(cd _build/default/test && /usr/bin/node test_js_of_ocaml.bc.js)
Hello, from js_of_ocaml with Picos!
(cd _build/default/bench && ./main.exe -brief 'Picos TLS')
Picos TLS:
gets over time/1 worker:
147.90 M/s
gets over time/2 workers:
310.87 M/s
gets over time/4 workers:
591.33 M/s
sets over time/1 worker:
67.68 M/s
sets over time/2 workers:
124.33 M/s
sets over time/4 workers:
268.85 M/s
time per get/1 worker:
6.76 ns
time per get/2 workers:
6.43 ns
time per get/4 workers:
6.76 ns
time per set/1 worker:
14.78 ns
time per set/2 workers:
16.09 ns
time per set/4 workers:
14.88 ns
(cd _build/default/bench && ./main.exe -brief 'Picos DLS')
Picos DLS:
gets over time/1 worker:
127.84 M/s
gets over time/2 workers:
318.33 M/s
gets over time/4 workers:
551.86 M/s
sets over time/1 worker:
73.14 M/s
sets over time/2 workers:
179.76 M/s
sets over time/4 workers:
245.39 M/s
time per get/1 worker:
7.82 ns
time per get/2 workers:
6.28 ns
time per get/4 workers:
7.25 ns
time per set/1 worker:
13.67 ns
time per set/2 workers:
11.13 ns
time per set/4 workers:
16.30 ns
(cd _build/default/test && ./test_io_with_lwt.exe)
Testing `Picos_io_with_lwt'.
This run has ID `78ZG9N51'.
[OK] Unix 0 system.
Full test results in `/src/_build/default/test/_build/_tests/Picos_io_with_lwt'.
Test Successful in 2.016s. 1 test run.
(cd _build/default/test && ./test_select.exe)
Testing `Picos_select'.
This run has ID `RFND62C1'.
[OK] Intr 0
Full test results in `/src/_build/default/test/_build/_tests/Picos_select'.
Test Successful in 2.406s. 1 test run.
(cd _build/default/test && ./test_picos.exe)
Testing `Picos'.
This run has ID `4FM06X3L'.
[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 3.056s. 7 tests run.
(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:
1.40 M/s
locked yields over time/1024 fibers with Rwlock:
1.43 M/s
locked yields over time/1024 fibers with Sem:
1.65 M/s
locked yields over time/1024 fibers with Sem 2:
2.43 M/s
locked yields over time/1024 fibers with Sem 3:
2.20 M/s
locked yields over time/1024 fibers with Sem 4:
1.76 M/s
locked yields over time/1 fiber with Lock:
10.52 M/s
locked yields over time/1 fiber with Rwlock:
8.04 M/s
locked yields over time/1 fiber with Sem:
8.61 M/s
locked yields over time/1 fiber with Sem 2:
9.34 M/s
locked yields over time/1 fiber with Sem 3:
9.40 M/s
locked yields over time/1 fiber with Sem 4:
9.23 M/s
locked yields over time/256 fibers with Lock:
1.84 M/s
locked yields over time/256 fibers with Rwlock:
1.49 M/s
locked yields over time/256 fibers with Sem:
1.91 M/s
locked yields over time/256 fibers with Sem 2:
2.49 M/s
locked yields over time/256 fibers with Sem 3:
3.30 M/s
locked yields over time/256 fibers with Sem 4:
3.66 M/s
locked yields over time/2 domains with Lock:
1.10 M/s
locked yields over time/2 domains with Rwlock:
1.30 M/s
locked yields over time/2 domains with Sem:
1.29 M/s
locked yields over time/2 domains with Sem 2:
6.45 M/s
locked yields over time/2 domains with Sem 3:
5.56 M/s
locked yields over time/2 domains with Sem 4:
5.68 M/s
locked yields over time/2 fibers with Lock:
2.27 M/s
locked yields over time/2 fibers with Rwlock:
2.46 M/s
locked yields over time/2 fibers with Sem:
2.70 M/s
locked yields over time/2 fibers with Sem 2:
11.58 M/s
locked yields over time/2 fibers with Sem 3:
9.17 M/s
locked yields over time/2 fibers with Sem 4:
7.78 M/s
locked yields over time/3 domains with Lock:
0.91 M/s
locked yields over time/3 domains with Rwlock:
1.06 M/s
locked yields over time/3 domains with Sem:
0.96 M/s
locked yields over time/3 domains with Sem 2:
2.88 M/s
locked yields over time/3 domains with Sem 3:
4.73 M/s
locked yields over time/3 domains with Sem 4:
6.42 M/s
locked yields over time/3 fibers with Lock:
1.66 M/s
locked yields over time/3 fibers with Rwlock:
1.45 M/s
locked yields over time/3 fibers with Sem:
1.97 M/s
locked yields over time/3 fibers with Sem 2:
3.92 M/s
locked yields over time/3 fibers with Sem 3:
9.82 M/s
locked yields over time/3 fibers with Sem 4:
11.22 M/s
locked yields over time/4 domains with Lock:
0.94 M/s
locked yields over time/4 domains with Rwlock:
0.79 M/s
locked yields over time/4 domains with Sem:
0.67 M/s
locked yields over time/4 domains with Sem 2:
2.00 M/s
locked yields over time/4 domains with Sem 3:
3.66 M/s
locked yields over time/4 domains with Sem 4:
4.48 M/s
locked yields over time/4 fibers with Lock:
1.86 M/s
locked yields over time/4 fibers with Rwlock:
2.03 M/s
locked yields over time/4 fibers with Sem:
2.06 M/s
locked yields over time/4 fibers with Sem 2:
3.27 M/s
locked yields over time/4 fibers with Sem 3:
5.03 M/s
locked yields over time/4 fibers with Sem 4:
11.62 M/s
locked yields over time/512 fibers with Lock:
1.62 M/s
locked yields over time/512 fibers with Rwlock:
1.28 M/s
locked yields over time/512 fibers with Sem:
1.57 M/s
locked yields over time/512 fibers with Sem 2:
2.72 M/s
locked yields over time/512 fibers with Sem 3:
2.80 M/s
locked yields over time/512 fibers with Sem 4:
2.81 M/s
locked yields over time/8 domains with Lock:
0.98 M/s
locked yields over time/8 domains with Rwlock:
0.69 M/s
locked yields over time/8 domains with Sem:
0.90 M/s
locked yields over time/8 domains with Sem 2:
1.90 M/s
locked yields over time/8 domains with Sem 3:
1.98 M/s
locked yields over time/8 domains with Sem 4:
2.61 M/s
locked yields over time/8 fibers with Lock:
2.23 M/s
locked yields over time/8 fibers with Rwlock:
1.93 M/s
locked yields over time/8 fibers with Sem:
2.26 M/s
locked yields over time/8 fibers with Sem 2:
3.11 M/s
locked yields over time/8 fibers with Sem 3:
3.30 M/s
locked yields over time/8 fibers with Sem 4:
4.81 M/s
time per locked yield/1024 fibers with Lock:
714.40 ns
time per locked yield/1024 fibers with Rwlock:
700.77 ns
time per locked yield/1024 fibers with Sem:
606.46 ns
time per locked yield/1024 fibers with Sem 2:
412.34 ns
time per locked yield/1024 fibers with Sem 3:
455.00 ns
time per locked yield/1024 fibers with Sem 4:
566.66 ns
time per locked yield/1 fiber with Lock:
95.09 ns
time per locked yield/1 fiber with Rwlock:
124.31 ns
time per locked yield/1 fiber with Sem:
116.36 ns
time per locked yield/1 fiber with Sem 2:
107.29 ns
time per locked yield/1 fiber with Sem 3:
106.48 ns
time per locked yield/1 fiber with Sem 4:
108.36 ns
time per locked yield/256 fibers with Lock:
543.33 ns
time per locked yield/256 fibers with Rwlock:
671.13 ns
time per locked yield/256 fibers with Sem:
523.40 ns
time per locked yield/256 fibers with Sem 2:
401.24 ns
time per locked yield/256 fibers with Sem 3:
302.96 ns
time per locked yield/256 fibers with Sem 4:
272.91 ns
time per locked yield/2 domains with Lock:
1817.44 ns
time per locked yield/2 domains with Rwlock:
1542.26 ns
time per locked yield/2 domains with Sem:
1554.58 ns
time per locked yield/2 domains with Sem 2:
309.92 ns
time per locked yield/2 domains with Sem 3:
359.99 ns
time per locked yield/2 domains with Sem 4:
352.72 ns
time per locked yield/2 fibers with Lock:
440.77 ns
time per locked yield/2 fibers with Rwlock:
406.53 ns
time per locked yield/2 fibers with Sem:
370.84 ns
time per locked yield/2 fibers with Sem 2:
86.38 ns
time per locked yield/2 fibers with Sem 3:
110.81 ns
time per locked yield/2 fibers with Sem 4:
128.50 ns
time per locked yield/3 domains with Lock:
3299.04 ns
time per locked yield/3 domains with Rwlock:
2827.92 ns
time per locked yield/3 domains with Sem:
3183.56 ns
time per locked yield/3 domains with Sem 2:
1046.85 ns
time per locked yield/3 domains with Sem 3:
634.58 ns
time per locked yield/3 domains with Sem 4:
467.54 ns
time per locked yield/3 fibers with Lock:
600.69 ns
time per locked yield/3 fibers with Rwlock:
690.11 ns
time per locked yield/3 fibers with Sem:
508.74 ns
time per locked yield/3 fibers with Sem 2:
255.29 ns
time per locked yield/3 fibers with Sem 3:
102.09 ns
time per locked yield/3 fibers with Sem 4:
89.32 ns
time per locked yield/4 domains with Lock:
4271.68 ns
time per locked yield/4 domains with Rwlock:
5051.33 ns
time per locked yield/4 domains with Sem:
5952.47 ns
time per locked yield/4 domains with Sem 2:
1997.96 ns
time per locked yield/4 domains with Sem 3:
1092.53 ns
time per locked yield/4 domains with Sem 4:
893.38 ns
time per locked yield/4 fibers with Lock:
538.34 ns
time per locked yield/4 fibers with Rwlock:
491.66 ns
time per locked yield/4 fibers with Sem:
485.49 ns
time per locked yield/4 fibers with Sem 2:
306.10 ns
time per locked yield/4 fibers with Sem 3:
199.00 ns
time per locked yield/4 fibers with Sem 4:
86.15 ns
time per locked yield/512 fibers with Lock:
616.11 ns
time per locked yield/512 fibers with Rwlock:
778.25 ns
time per locked yield/512 fibers with Sem:
638.85 ns
time per locked yield/512 fibers with Sem 2:
367.14 ns
time per locked yield/512 fibers with Sem 3:
357.47 ns
time per locked yield/512 fibers with Sem 4:
355.35 ns
time per locked yield/8 domains with Lock:
8124.48 ns
time per locked yield/8 domains with Rwlock:
11531.61 ns
time per locked yield/8 domains with Sem:
8897.51 ns
time per locked yield/8 domains with Sem 2:
4208.50 ns
time per locked yield/8 domains with Sem 3:
4035.14 ns
time per locked yield/8 domains with Sem 4:
3063.87 ns
time per locked yield/8 fibers with Lock:
448.62 ns
time per locked yield/8 fibers with Rwlock:
519.00 ns
time per locked yield/8 fibers with Sem:
443.06 ns
time per locked yield/8 fibers with Sem 2:
321.38 ns
time per locked yield/8 fibers with Sem 3:
303.12 ns
time per locked yield/8 fibers with Sem 4:
208.01 ns
(cd _build/default/bench && ./main.exe -brief 'Picos Spawn')
Picos Spawn:
spawns over time/with packed computation:
10.49 M/s
time per spawn/with packed computation:
95.42 ns
(cd _build/default/bench && ./main.exe -brief 'Picos Yield')
Picos Yield:
time per yield/10000 fibers:
176.38 ns
time per yield/1000 fibers:
88.39 ns
time per yield/100 fibers:
74.97 ns
time per yield/10 fibers:
66.39 ns
time per yield/1 fiber:
91.23 ns
yields over time/10000 fibers:
5.67 M/s
yields over time/1000 fibers:
11.31 M/s
yields over time/100 fibers:
13.34 M/s
yields over time/10 fibers:
15.06 M/s
yields over time/1 fiber:
10.96 M/s
(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.49 M/s
async round-trips over time/2 workers:
0.89 M/s
async round-trips over time/4 workers:
1.62 M/s
round-trips over time/1 worker:
0.04 M/s
round-trips over time/2 workers:
0.07 M/s
round-trips over time/4 workers:
0.16 M/s
time per async round-trip/1 worker:
2027.03 ns
time per async round-trip/2 workers:
2235.99 ns
time per async round-trip/4 workers:
2473.31 ns
time per round-trip/1 worker:
22237.83 ns
time per round-trip/2 workers:
26742.94 ns
time per round-trip/4 workers:
24875.52 ns
(cd _build/default/example && ./guards.exe)
Testing with scheduler: thread
Ran guarded case statement examples.
(cd _build/default/bench && ./main.exe -brief 'Ref with Picos_std_sync')
Ref with Picos_std_sync:
ops over time/cas int with Lock:
51.99 M/s
ops over time/cas int with Rwlock:
49.51 M/s
ops over time/cas int with Sem:
53.29 M/s
ops over time/get with Lock:
60.48 M/s
ops over time/get with Rwlock:
62.66 M/s
ops over time/get with Sem:
67.06 M/s
ops over time/incr with Lock:
62.26 M/s
ops over time/incr with Rwlock:
60.56 M/s
ops over time/incr with Sem:
59.92 M/s
ops over time/push & pop with Lock:
33.02 M/s
ops over time/push & pop with Rwlock:
32.54 M/s
ops over time/push & pop with Sem:
36.31 M/s
ops over time/swap with Lock:
49.32 M/s
ops over time/swap with Rwlock:
48.37 M/s
ops over time/swap with Sem:
50.01 M/s
ops over time/xchg int with Lock:
54.81 M/s
ops over time/xchg int with Rwlock:
52.48 M/s
ops over time/xchg int with Sem:
52.64 M/s
time per op/cas int with Lock:
19.23 ns
time per op/cas int with Rwlock:
20.20 ns
time per op/cas int with Sem:
18.76 ns
time per op/get with Lock:
16.53 ns
time per op/get with Rwlock:
15.96 ns
time per op/get with Sem:
14.91 ns
time per op/incr with Lock:
16.06 ns
time per op/incr with Rwlock:
16.51 ns
time per op/incr with Sem:
16.69 ns
time per op/push & pop with Lock:
30.29 ns
time per op/push & pop with Rwlock:
30.73 ns
time per op/push & pop with Sem:
27.54 ns
time per op/swap with Lock:
20.28 ns
time per op/swap with Rwlock:
20.67 ns
time per op/swap with Sem:
20.00 ns
time per op/xchg int with Lock:
18.25 ns
time per op/xchg int with Rwlock:
19.05 ns
time per op/xchg int with Sem:
19.00 ns
(cd _build/default/bench && ./main.exe -brief Picos_mpmcq)
Picos_mpmcq:
messages over time/1 nb adder, 1 nb taker:
24.41 M/s
messages over time/1 nb adder, 2 nb takers:
11.80 M/s
messages over time/1 nb adder, 4 nb takers:
5.50 M/s
messages over time/2 nb adders, 1 nb taker:
14.03 M/s
messages over time/2 nb adders, 2 nb takers:
6.54 M/s
messages over time/2 nb adders, 4 nb takers:
6.25 M/s
messages over time/4 nb adders, 1 nb taker:
8.93 M/s
messages over time/4 nb adders, 2 nb takers:
6.44 M/s
messages over time/4 nb adders, 4 nb takers:
4.77 M/s
messages over time/one domain:
29.91 M/s
time per message/1 nb adder, 1 nb taker:
81.95 ns
time per message/1 nb adder, 2 nb takers:
254.15 ns
time per message/1 nb adder, 4 nb takers:
908.79 ns
time per message/2 nb adders, 1 nb taker:
213.81 ns
time per message/2 nb adders, 2 nb takers:
611.98 ns
time per message/2 nb adders, 4 nb takers:
960.22 ns
time per message/4 nb adders, 1 nb taker:
559.88 ns
time per message/4 nb adders, 2 nb takers:
931.91 ns
time per message/4 nb adders, 4 nb takers:
1677.68 ns
time per message/one domain:
33.43 ns
(cd _build/default/bench && ./main.exe -brief Picos_mpscq)
Picos_mpscq:
messages over time/1 nb adder, 1 nb taker:
54.71 M/s
messages over time/2 nb adders, 1 nb taker:
66.46 M/s
messages over time/4 nb adders, 1 nb taker:
20.34 M/s
messages over time/8 nb adders, 1 nb taker:
12.23 M/s
messages over time/one domain:
31.83 M/s
time per message/1 nb adder, 1 nb taker:
36.56 ns
time per message/2 nb adders, 1 nb taker:
45.14 ns
time per message/4 nb adders, 1 nb taker:
245.82 ns
time per message/8 nb adders, 1 nb taker:
735.92 ns
time per message/one domain:
31.42 ns
(cd _build/default/test && ./test_schedulers.exe)
Testing with scheduler: lwt
Fairness of 100 fibers performing at least 10000 yields:
sd: 0.000010 -- ideally 0
mean: 1.000099 -- ideally 1
median: 1.000100 -- ideally 1
Testing `Picos schedulers'.
This run has ID `CANYWL28'.
[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 12.235s. 8 tests run.
(cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 2)
Testing `Picos_sync'.
This run has ID `FUCZOCDL'.
[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 15.177s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 0)
Testing `Picos_sync'.
This run has ID `HGAGQ2XJ'.
[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.001s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 1)
Testing `Picos_sync'.
This run has ID `Q8SSQH39'.
[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 0.102s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 2)
Testing `Picos_sync'.
This run has ID `MCGUG6A3'.
[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 `FBW8660G'.
[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.001s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 0)
Testing `Picos_sync'.
This run has ID `O74S005D'.
[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.018s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 1)
Testing `Picos_sync'.
This run has ID `5C60XVDS'.
[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.103s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 2)
Testing `Picos_sync'.
This run has ID `F5HGUE5B'.
[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.001s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 3)
Testing `Picos_sync'.
This run has ID `FK8AFXC8'.
[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 `65Q3XNLF'.
[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 `Y8G20CO8'.
[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.001s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 6)
Testing `Picos_sync'.
This run has ID `1CAU5JOI'.
[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.001s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Semaphore$ 0)
Testing `Picos_sync'.
This run has ID `4FDK0IZ8'.
[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_sync.exe -- ^Semaphore$ 1)
Testing `Picos_sync'.
This run has ID `5ITXG4PT'.
[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.054s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 0)
Testing `Picos_sync'.
This run has ID `UTEB7A5I'.
[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] Semaphore0 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.001s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 1)
Testing `Picos_sync'.
This run has ID `MQT9UQZ2'.
[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.032s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 2)
Testing `Picos_sync'.
This run has ID `6LMFC96G'.
[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 `W8PVFPXA'.
[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.001s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Lazy$ 0)
Testing `Picos_sync'.
This run has ID `MOMF8N5W'.
[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.001s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Lazy$ 1)
Testing `Picos_sync'.
This run has ID `WHJ0GQNF'.
[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] 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.052s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Event$ 0)
Testing `Picos_sync'.
This run has ID `R6M6LPJL'.
[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.101s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Barrier$ 0)
Testing `Picos_sync'.
This run has ID `UF89SV8Y'.
[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.004s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Barrier$ 1)
Testing `Picos_sync'.
This run has ID `KLN717KS'.
[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.106s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Non-cancelable ops$' 0)
Testing `Picos_sync'.
This run has ID `F92SSM5F'.
[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.001s. 1 test run.
(cd _build/default/bench && ./main.exe -brief Picos_htbl)
Picos_htbl:
operations over time/1 worker, 10% reads:
21.46 M/s
operations over time/1 worker, 50% reads:
25.05 M/s
operations over time/1 worker, 90% reads:
38.07 M/s
operations over time/2 workers, 10% reads:
29.07 M/s
operations over time/2 workers, 50% reads:
20.63 M/s
operations over time/2 workers, 90% reads:
30.80 M/s
operations over time/4 workers, 10% reads:
21.96 M/s
operations over time/4 workers, 50% reads:
24.49 M/s
operations over time/4 workers, 90% reads:
93.52 M/s
operations over time/8 workers, 10% reads:
29.13 M/s
operations over time/8 workers, 50% reads:
35.75 M/s
operations over time/8 workers, 90% reads:
115.13 M/s
time per operation/1 worker, 10% reads:
46.60 ns
time per operation/1 worker, 50% reads:
39.92 ns
time per operation/1 worker, 90% reads:
26.27 ns
time per operation/2 workers, 10% reads:
68.81 ns
time per operation/2 workers, 50% reads:
96.93 ns
time per operation/2 workers, 90% reads:
64.94 ns
time per operation/4 workers, 10% reads:
182.13 ns
time per operation/4 workers, 50% reads:
163.34 ns
time per operation/4 workers, 90% reads:
42.77 ns
time per operation/8 workers, 10% reads:
274.66 ns
time per operation/8 workers, 50% reads:
223.80 ns
time per operation/8 workers, 90% reads:
69.48 ns
(cd _build/default/test && ./test_mpmcq.exe)
random seed: 1450202225184344976
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
[ ] 3 0 0 3 / 32 0.1s Mpmcq parallel
[ ] 6 0 0 6 / 32 0.2s Mpmcq parallel
[ ] 7 0 0 7 / 32 0.4s Mpmcq parallel
[ ] 10 0 0 10 / 32 0.5s Mpmcq parallel
[ ] 12 0 0 12 / 32 0.6s Mpmcq parallel
[ ] 15 0 0 15 / 32 0.9s Mpmcq parallel
[ ] 18 0 0 18 / 32 1.0s Mpmcq parallel
[ ] 21 0 0 21 / 32 1.1s Mpmcq parallel
[ ] 23 0 0 23 / 32 1.3s Mpmcq parallel
[ ] 26 0 0 26 / 32 1.5s Mpmcq parallel
[ ] 29 0 0 29 / 32 1.6s Mpmcq parallel
[ ] 32 0 0 32 / 32 1.8s Mpmcq parallel
[✓] 32 0 0 32 / 32 1.8s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 3862807343754360267
generated error fail pass / total time test name
[ ] 0 0 0 0 / 64 0.0s Mpmcq sequential
[✓] 64 0 0 64 / 64 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 64 0.0s Mpmcq parallel
[ ] 2 0 0 2 / 64 0.2s Mpmcq parallel
[ ] 5 0 0 5 / 64 0.4s Mpmcq parallel
[ ] 6 0 0 6 / 64 0.6s Mpmcq parallel
[ ] 8 0 0 8 / 64 0.8s Mpmcq parallel
[ ] 10 0 0 10 / 64 0.9s Mpmcq parallel
[ ] 13 0 0 13 / 64 1.0s Mpmcq parallel
[ ] 15 0 0 15 / 64 1.1s Mpmcq parallel
[ ] 18 0 0 18 / 64 1.3s Mpmcq parallel
[ ] 21 0 0 21 / 64 1.4s Mpmcq parallel
[ ] 22 0 0 22 / 64 1.6s Mpmcq parallel
[ ] 26 0 0 26 / 64 1.7s Mpmcq parallel
[ ] 29 0 0 29 / 64 1.8s Mpmcq parallel
[ ] 32 0 0 32 / 64 2.0s Mpmcq parallel
[ ] 35 0 0 35 / 64 2.1s Mpmcq parallel
[ ] 38 0 0 38 / 64 2.2s Mpmcq parallel
[ ] 41 0 0 41 / 64 2.3s Mpmcq parallel
[ ] 44 0 0 44 / 64 2.5s Mpmcq parallel
[ ] 48 0 0 48 / 64 2.6s Mpmcq parallel
[ ] 51 0 0 51 / 64 2.8s Mpmcq parallel
[ ] 54 0 0 54 / 64 2.9s Mpmcq parallel
[ ] 56 0 0 56 / 64 3.0s Mpmcq parallel
[ ] 59 0 0 59 / 64 3.1s Mpmcq parallel
[ ] 63 0 0 63 / 64 3.2s Mpmcq parallel
[✓] 64 0 0 64 / 64 3.3s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 279845284793099116
generated error fail pass / total time test name
[ ] 0 0 0 0 / 128 0.0s Mpmcq sequential
[✓] 128 0 0 128 / 128 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 128 0.0s Mpmcq parallel
[ ] 2 0 0 2 / 128 0.1s Mpmcq parallel
[ ] 6 0 0 6 / 128 0.2s Mpmcq parallel
[ ] 10 0 0 10 / 128 0.4s Mpmcq parallel
[ ] 14 0 0 14 / 128 0.5s Mpmcq parallel
[ ] 17 0 0 17 / 128 0.6s Mpmcq parallel
[ ] 20 0 0 20 / 128 0.7s Mpmcq parallel
[ ] 24 0 0 24 / 128 0.9s Mpmcq parallel
[ ] 28 0 0 28 / 128 1.0s Mpmcq parallel
[ ] 32 0 0 32 / 128 1.1s Mpmcq parallel
[ ] 36 0 0 36 / 128 1.2s Mpmcq parallel
[ ] 40 0 0 40 / 128 1.3s Mpmcq parallel
[ ] 44 0 0 44 / 128 1.5s Mpmcq parallel
[ ] 48 0 0 48 / 128 1.6s Mpmcq parallel
[ ] 52 0 0 52 / 128 1.7s Mpmcq parallel
[ ] 56 0 0 56 / 128 1.9s Mpmcq parallel
[ ] 58 0 0 58 / 128 2.1s Mpmcq parallel
[ ] 61 0 0 61 / 128 2.2s Mpmcq parallel
[ ] 64 0 0 64 / 128 2.3s Mpmcq parallel
[ ] 68 0 0 68 / 128 2.4s Mpmcq parallel
[ ] 72 0 0 72 / 128 2.5s Mpmcq parallel
[ ] 75 0 0 75 / 128 2.6s Mpmcq parallel
[ ] 79 0 0 79 / 128 2.8s Mpmcq parallel
[ ] 83 0 0 83 / 128 2.9s Mpmcq parallel
[ ] 85 0 0 85 / 128 3.1s Mpmcq parallel
[ ] 89 0 0 89 / 128 3.2s Mpmcq parallel
[ ] 93 0 0 93 / 128 3.3s Mpmcq parallel
[ ] 96 0 0 96 / 128 3.4s Mpmcq parallel
[ ] 100 0 0 100 / 128 3.6s Mpmcq parallel
[ ] 102 0 0 102 / 128 3.8s Mpmcq parallel
[ ] 104 0 0 104 / 128 3.9s Mpmcq parallel
[ ] 108 0 0 108 / 128 4.2s Mpmcq parallel
[ ] 110 0 0 110 / 128 4.3s Mpmcq parallel
[ ] 112 0 0 112 / 128 4.4s Mpmcq parallel
[ ] 113 0 0 113 / 128 4.6s Mpmcq parallel
[ ] 117 0 0 117 / 128 4.7s Mpmcq parallel
[ ] 120 0 0 120 / 128 4.8s Mpmcq parallel
[ ] 123 0 0 123 / 128 4.9s Mpmcq parallel
[ ] 126 0 0 126 / 128 5.0s Mpmcq parallel
[✓] 128 0 0 128 / 128 5.1s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 2470072559837092573
generated error fail pass / total time test name
[ ] 0 0 0 0 / 256 0.0s Mpmcq sequential
[✓] 256 0 0 256 / 256 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 256 0.0s Mpmcq parallel
[ ] 3 0 0 3 / 256 0.1s Mpmcq parallel
[ ] 7 0 0 7 / 256 0.2s Mpmcq parallel
[ ] 11 0 0 11 / 256 0.3s Mpmcq parallel
[ ] 15 0 0 15 / 256 0.5s Mpmcq parallel
[ ] 17 0 0 17 / 256 0.6s Mpmcq parallel
[ ] 21 0 0 21 / 256 0.7s Mpmcq parallel
[ ] 23 0 0 23 / 256 0.9s Mpmcq parallel
[ ] 26 0 0 26 / 256 1.0s Mpmcq parallel
[ ] 29 0 0 29 / 256 1.2s Mpmcq parallel
[ ] 33 0 0 33 / 256 1.3s Mpmcq parallel
[ ] 37 0 0 37 / 256 1.5s Mpmcq parallel
[ ] 41 0 0 41 / 256 1.6s Mpmcq parallel
[ ] 45 0 0 45 / 256 1.7s Mpmcq parallel
[ ] 49 0 0 49 / 256 1.9s Mpmcq parallel
[ ] 52 0 0 52 / 256 2.0s Mpmcq parallel
[ ] 56 0 0 56 / 256 2.1s Mpmcq parallel
[ ] 60 0 0 60 / 256 2.3s Mpmcq parallel
[ ] 64 0 0 64 / 256 2.4s Mpmcq parallel
[ ] 67 0 0 67 / 256 2.5s Mpmcq parallel
[ ] 71 0 0 71 / 256 2.6s Mpmcq parallel
[ ] 75 0 0 75 / 256 2.7s Mpmcq parallel
[ ] 78 0 0 78 / 256 2.9s Mpmcq parallel
[ ] 82 0 0 82 / 256 3.0s Mpmcq parallel
[ ] 85 0 0 85 / 256 3.3s Mpmcq parallel
[ ] 89 0 0 89 / 256 3.4s Mpmcq parallel
[ ] 93 0 0 93 / 256 3.5s Mpmcq parallel
[ ] 95 0 0 95 / 256 3.7s Mpmcq parallel
[ ] 99 0 0 99 / 256 3.8s Mpmcq parallel
[ ] 103 0 0 103 / 256 3.9s Mpmcq parallel
[ ] 107 0 0 107 / 256 4.1s Mpmcq parallel
[ ] 110 0 0 110 / 256 4.2s Mpmcq parallel
[ ] 113 0 0 113 / 256 4.3s Mpmcq parallel
[ ] 117 0 0 117 / 256 4.4s Mpmcq parallel
[ ] 121 0 0 121 / 256 4.5s Mpmcq parallel
[ ] 126 0 0 126 / 256 4.6s Mpmcq parallel
[ ] 129 0 0 129 / 256 4.8s Mpmcq parallel
[ ] 133 0 0 133 / 256 5.0s Mpmcq parallel
[ ] 136 0 0 136 / 256 5.2s Mpmcq parallel
[ ] 138 0 0 138 / 256 5.3s Mpmcq parallel
[ ] 141 0 0 141 / 256 5.4s Mpmcq parallel
[ ] 145 0 0 145 / 256 5.6s Mpmcq parallel
[ ] 147 0 0 147 / 256 5.7s Mpmcq parallel
[ ] 150 0 0 150 / 256 5.8s Mpmcq parallel
[ ] 151 0 0 151 / 256 5.9s Mpmcq parallel
[ ] 156 0 0 156 / 256 6.1s Mpmcq parallel
[ ] 159 0 0 159 / 256 6.2s Mpmcq parallel
[ ] 163 0 0 163 / 256 6.3s Mpmcq parallel
[ ] 166 0 0 166 / 256 6.4s Mpmcq parallel
[ ] 169 0 0 169 / 256 6.5s Mpmcq parallel
[ ] 171 0 0 171 / 256 6.7s Mpmcq parallel
[ ] 176 0 0 176 / 256 6.8s Mpmcq parallel
[ ] 179 0 0 179 / 256 6.9s Mpmcq parallel
[ ] 183 0 0 183 / 256 7.0s Mpmcq parallel
[ ] 186 0 0 186 / 256 7.2s Mpmcq parallel
[ ] 190 0 0 190 / 256 7.3s Mpmcq parallel
[ ] 194 0 0 194 / 256 7.4s Mpmcq parallel
[ ] 198 0 0 198 / 256 7.5s Mpmcq parallel
[ ] 202 0 0 202 / 256 7.6s Mpmcq parallel
[ ] 204 0 0 204 / 256 7.9s Mpmcq parallel
[ ] 207 0 0 207 / 256 8.0s Mpmcq parallel
[ ] 209 0 0 209 / 256 8.1s Mpmcq parallel
[ ] 211 0 0 211 / 256 8.3s Mpmcq parallel
[ ] 214 0 0 214 / 256 8.4s Mpmcq parallel
[ ] 218 0 0 218 / 256 8.5s Mpmcq parallel
[ ] 220 0 0 220 / 256 8.7s Mpmcq parallel
[ ] 224 0 0 224 / 256 8.8s Mpmcq parallel
[ ] 227 0 0 227 / 256 9.1s Mpmcq parallel
[ ] 229 0 0 229 / 256 9.2s Mpmcq parallel
[ ] 233 0 0 233 / 256 9.3s Mpmcq parallel
[ ] 236 0 0 236 / 256 9.4s Mpmcq parallel
[ ] 240 0 0 240 / 256 9.5s Mpmcq parallel
[ ] 243 0 0 243 / 256 9.6s Mpmcq parallel
[ ] 246 0 0 246 / 256 9.7s Mpmcq parallel
[ ] 250 0 0 250 / 256 9.9s Mpmcq parallel
[ ] 253 0 0 253 / 256 10.0s Mpmcq parallel
[✓] 256 0 0 256 / 256 10.1s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 3266240864784523736
generated error fail pass / total time test name
[ ] 0 0 0 0 / 512 0.0s Mpmcq sequential
[✓] 512 0 0 512 / 512 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 512 0.0s Mpmcq parallel
[ ] 4 0 0 4 / 512 0.2s Mpmcq parallel
[ ] 7 0 0 7 / 512 0.3s Mpmcq parallel
[ ] 11 0 0 11 / 512 0.4s Mpmcq parallel
[ ] 16 0 0 16 / 512 0.5s Mpmcq parallel
[ ] 21 0 0 21 / 512 0.7s Mpmcq parallel
[ ] 25 0 0 25 / 512 0.8s Mpmcq parallel
[ ] 29 0 0 29 / 512 0.9s Mpmcq parallel
[ ] 33 0 0 33 / 512 1.0s Mpmcq parallel
[ ] 38 0 0 38 / 512 1.1s Mpmcq parallel
[ ] 42 0 0 42 / 512 1.2s Mpmcq parallel
[ ] 45 0 0 45 / 512 1.4s Mpmcq parallel
[ ] 49 0 0 49 / 512 1.5s Mpmcq parallel
[ ] 53 0 0 53 / 512 1.6s Mpmcq parallel
[ ] 57 0 0 57 / 512 1.9s Mpmcq parallel
[ ] 61 0 0 61 / 512 2.0s Mpmcq parallel
[ ] 65 0 0 65 / 512 2.1s Mpmcq parallel
[ ] 69 0 0 69 / 512 2.2s Mpmcq parallel
[ ] 72 0 0 72 / 512 2.3s Mpmcq parallel
[ ] 75 0 0 75 / 512 2.5s Mpmcq parallel
[ ] 77 0 0 77 / 512 2.6s Mpmcq parallel
[ ] 79 0 0 79 / 512 2.7s Mpmcq parallel
[ ] 80 0 0 80 / 512 2.8s Mpmcq parallel
[ ] 84 0 0 84 / 512 2.9s Mpmcq parallel
[ ] 88 0 0 88 / 512 3.0s Mpmcq parallel
[ ] 92 0 0 92 / 512 3.1s Mpmcq parallel
[ ] 95 0 0 95 / 512 3.2s Mpmcq parallel
[ ] 98 0 0 98 / 512 3.4s Mpmcq parallel
[ ] 102 0 0 102 / 512 3.5s Mpmcq parallel
[ ] 106 0 0 106 / 512 3.6s Mpmcq parallel
[ ] 111 0 0 111 / 512 3.7s Mpmcq parallel
[ ] 114 0 0 114 / 512 3.8s Mpmcq parallel
[ ] 118 0 0 118 / 512 3.9s Mpmcq parallel
[ ] 121 0 0 121 / 512 4.0s Mpmcq parallel
[ ] 125 0 0 125 / 512 4.1s Mpmcq parallel
[ ] 129 0 0 129 / 512 4.3s Mpmcq parallel
[ ] 132 0 0 132 / 512 4.4s Mpmcq parallel
[ ] 135 0 0 135 / 512 4.5s Mpmcq parallel
[ ] 138 0 0 138 / 512 4.6s Mpmcq parallel
[ ] 141 0 0 141 / 512 4.9s Mpmcq parallel
[ ] 145 0 0 145 / 512 5.0s Mpmcq parallel
[ ] 150 0 0 150 / 512 5.1s Mpmcq parallel
[ ] 154 0 0 154 / 512 5.3s Mpmcq parallel
[ ] 159 0 0 159 / 512 5.4s Mpmcq parallel
[ ] 163 0 0 163 / 512 5.5s Mpmcq parallel
[ ] 168 0 0 168 / 512 5.6s Mpmcq parallel
[ ] 172 0 0 172 / 512 5.7s Mpmcq parallel
[ ] 175 0 0 175 / 512 5.8s Mpmcq parallel
[ ] 180 0 0 180 / 512 5.9s Mpmcq parallel
[ ] 185 0 0 185 / 512 6.1s Mpmcq parallel
[ ] 190 0 0 190 / 512 6.2s Mpmcq parallel
[ ] 192 0 0 192 / 512 6.3s Mpmcq parallel
[ ] 197 0 0 197 / 512 6.4s Mpmcq parallel
[ ] 201 0 0 201 / 512 6.5s Mpmcq parallel
[ ] 206 0 0 206 / 512 6.7s Mpmcq parallel
[ ] 212 0 0 212 / 512 6.8s Mpmcq parallel
[ ] 216 0 0 216 / 512 7.0s Mpmcq parallel
[ ] 221 0 0 221 / 512 7.1s Mpmcq parallel
[ ] 224 0 0 224 / 512 7.3s Mpmcq parallel
[ ] 228 0 0 228 / 512 7.4s Mpmcq parallel
[ ] 231 0 0 231 / 512 7.5s Mpmcq parallel
[ ] 237 0 0 237 / 512 7.6s Mpmcq parallel
[ ] 243 0 0 243 / 512 7.7s Mpmcq parallel
[ ] 249 0 0 249 / 512 7.8s Mpmcq parallel
[ ] 254 0 0 254 / 512 7.9s Mpmcq parallel
[ ] 256 0 0 256 / 512 8.1s Mpmcq parallel
[ ] 258 0 0 258 / 512 8.2s Mpmcq parallel
[ ] 263 0 0 263 / 512 8.3s Mpmcq parallel
[ ] 265 0 0 265 / 512 8.4s Mpmcq parallel
[ ] 270 0 0 270 / 512 8.7s Mpmcq parallel
[ ] 275 0 0 275 / 512 8.8s Mpmcq parallel
[ ] 279 0 0 279 / 512 9.0s Mpmcq parallel
[ ] 286 0 0 286 / 512 9.2s Mpmcq parallel
[ ] 293 0 0 293 / 512 9.3s Mpmcq parallel
[ ] 300 0 0 300 / 512 9.4s Mpmcq parallel
[ ] 302 0 0 302 / 512 9.5s Mpmcq parallel
[ ] 309 0 0 309 / 512 9.6s Mpmcq parallel
[ ] 310 0 0 310 / 512 9.7s Mpmcq parallel
[ ] 315 0 0 315 / 512 9.8s Mpmcq parallel
[ ] 321 0 0 321 / 512 9.9s Mpmcq parallel
[ ] 324 0 0 324 / 512 10.1s Mpmcq parallel
[ ] 328 0 0 328 / 512 10.3s Mpmcq parallel
[ ] 334 0 0 334 / 512 10.4s Mpmcq parallel
[ ] 341 0 0 341 / 512 10.6s Mpmcq parallel
[ ] 343 0 0 343 / 512 10.7s Mpmcq parallel
[ ] 347 0 0 347 / 512 10.8s Mpmcq parallel
[ ] 353 0 0 353 / 512 11.0s Mpmcq parallel
[ ] 361 0 0 361 / 512 11.1s Mpmcq parallel
[ ] 365 0 0 365 / 512 11.2s Mpmcq parallel
[ ] 371 0 0 371 / 512 11.3s Mpmcq parallel
[ ] 375 0 0 375 / 512 11.4s Mpmcq parallel
[ ] 382 0 0 382 / 512 11.5s Mpmcq parallel
[ ] 390 0 0 390 / 512 11.6s Mpmcq parallel
[ ] 394 0 0 394 / 512 11.7s Mpmcq parallel
[ ] 401 0 0 401 / 512 11.8s Mpmcq parallel
[ ] 408 0 0 408 / 512 12.0s Mpmcq parallel
[ ] 416 0 0 416 / 512 12.1s Mpmcq parallel
[ ] 417 0 0 417 / 512 12.2s Mpmcq parallel
[ ] 424 0 0 424 / 512 12.3s Mpmcq parallel
[ ] 431 0 0 431 / 512 12.4s Mpmcq parallel
[ ] 432 0 0 432 / 512 12.5s Mpmcq parallel
[ ] 439 0 0 439 / 512 12.6s Mpmcq parallel
[ ] 445 0 0 445 / 512 12.7s Mpmcq parallel
[ ] 450 0 0 450 / 512 12.9s Mpmcq parallel
[ ] 456 0 0 456 / 512 13.0s Mpmcq parallel
[ ] 462 0 0 462 / 512 13.1s Mpmcq parallel
[ ] 464 0 0 464 / 512 13.2s Mpmcq parallel
[ ] 469 0 0 469 / 512 13.4s Mpmcq parallel
[ ] 474 0 0 474 / 512 13.5s Mpmcq parallel
[ ] 479 0 0 479 / 512 13.6s Mpmcq parallel
[ ] 486 0 0 486 / 512 13.7s Mpmcq parallel
[ ] 491 0 0 491 / 512 13.9s Mpmcq parallel
[ ] 492 0 0 492 / 512 14.0s Mpmcq parallel
[ ] 496 0 0 496 / 512 14.1s Mpmcq parallel
[ ] 500 0 0 500 / 512 14.2s Mpmcq parallel
[ ] 507 0 0 507 / 512 14.4s Mpmcq parallel
[✓] 512 0 0 512 / 512 14.5s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 2597744357697801069
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
[ ] 6 0 0 6 / 32 0.1s Mpmcq parallel
[ ] 8 0 0 8 / 32 0.3s Mpmcq parallel
[ ] 14 0 0 14 / 32 0.4s Mpmcq parallel
[ ] 18 0 0 18 / 32 0.5s Mpmcq parallel
[ ] 26 0 0 26 / 32 0.6s Mpmcq parallel
[✓] 32 0 0 32 / 32 0.7s Mpmcq parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_mutex.exe)
random seed: 728355134666615803
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
[ ] 2 0 0 2 / 32 0.1s Mutex parallel
[ ] 5 0 0 5 / 32 0.3s Mutex parallel
[ ] 7 0 0 7 / 32 0.4s Mutex parallel
[ ] 10 0 0 10 / 32 0.5s Mutex parallel
[ ] 11 0 0 11 / 32 0.6s Mutex parallel
[ ] 13 0 0 13 / 32 0.8s Mutex parallel
[ ] 16 0 0 16 / 32 0.9s Mutex parallel
[ ] 19 0 0 19 / 32 1.0s Mutex parallel
[ ] 21 0 0 21 / 32 1.1s Mutex parallel
[ ] 23 0 0 23 / 32 1.2s Mutex parallel
[ ] 26 0 0 26 / 32 1.4s Mutex parallel
[ ] 29 0 0 29 / 32 1.5s Mutex parallel
[ ] 32 0 0 32 / 32 1.6s Mutex parallel
[✓] 32 0 0 32 / 32 1.6s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 2094064912226036364
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
[ ] 3 0 0 3 / 64 0.1s Mutex parallel
[ ] 6 0 0 6 / 64 0.2s Mutex parallel
[ ] 9 0 0 9 / 64 0.3s Mutex parallel
[ ] 12 0 0 12 / 64 0.5s Mutex parallel
[ ] 15 0 0 15 / 64 0.6s Mutex parallel
[ ] 17 0 0 17 / 64 0.8s Mutex parallel
[ ] 20 0 0 20 / 64 1.0s Mutex parallel
[ ] 23 0 0 23 / 64 1.1s Mutex parallel
[ ] 26 0 0 26 / 64 1.2s Mutex parallel
[ ] 29 0 0 29 / 64 1.3s Mutex parallel
[ ] 31 0 0 31 / 64 1.4s Mutex parallel
[ ] 34 0 0 34 / 64 1.5s Mutex parallel
[ ] 37 0 0 37 / 64 1.7s Mutex parallel
[ ] 40 0 0 40 / 64 1.8s Mutex parallel
[ ] 42 0 0 42 / 64 1.9s Mutex parallel
[ ] 45 0 0 45 / 64 2.0s Mutex parallel
[ ] 48 0 0 48 / 64 2.1s Mutex parallel
[ ] 52 0 0 52 / 64 2.2s Mutex parallel
[ ] 55 0 0 55 / 64 2.3s Mutex parallel
[ ] 58 0 0 58 / 64 2.5s Mutex parallel
[ ] 61 0 0 61 / 64 2.6s Mutex parallel
[ ] 64 0 0 64 / 64 2.7s Mutex parallel
[✓] 64 0 0 64 / 64 2.7s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 1804153683257387538
generated error fail pass / total time test name
[ ] 0 0 0 0 / 128 0.0s Mutex sequential
[✓] 128 0 0 128 / 128 0.0s Mutex sequential
[ ] 0 0 0 0 / 128 0.0s Mutex parallel
[ ] 3 0 0 3 / 128 0.2s Mutex parallel
[ ] 7 0 0 7 / 128 0.4s Mutex parallel
[ ] 10 0 0 10 / 128 0.5s Mutex parallel
[ ] 13 0 0 13 / 128 0.6s Mutex parallel
[ ] 17 0 0 17 / 128 0.8s Mutex parallel
[ ] 20 0 0 20 / 128 0.9s Mutex parallel
[ ] 23 0 0 23 / 128 1.0s Mutex parallel
[ ] 27 0 0 27 / 128 1.1s Mutex parallel
[ ] 30 0 0 30 / 128 1.3s Mutex parallel
[ ] 34 0 0 34 / 128 1.4s Mutex parallel
[ ] 37 0 0 37 / 128 1.6s Mutex parallel
[ ] 39 0 0 39 / 128 1.7s Mutex parallel
[ ] 41 0 0 41 / 128 1.8s Mutex parallel
[ ] 45 0 0 45 / 128 1.9s Mutex parallel
[ ] 48 0 0 48 / 128 2.1s Mutex parallel
[ ] 52 0 0 52 / 128 2.2s Mutex parallel
[ ] 56 0 0 56 / 128 2.3s Mutex parallel
[ ] 60 0 0 60 / 128 2.5s Mutex parallel
[ ] 63 0 0 63 / 128 2.6s Mutex parallel
[ ] 66 0 0 66 / 128 2.7s Mutex parallel
[ ] 70 0 0 70 / 128 2.8s Mutex parallel
[ ] 73 0 0 73 / 128 3.0s Mutex parallel
[ ] 76 0 0 76 / 128 3.2s Mutex parallel
[ ] 77 0 0 77 / 128 3.3s Mutex parallel
[ ] 80 0 0 80 / 128 3.4s Mutex parallel
[ ] 84 0 0 84 / 128 3.5s Mutex parallel
[ ] 87 0 0 87 / 128 3.6s Mutex parallel
[ ] 90 0 0 90 / 128 3.7s Mutex parallel
[ ] 95 0 0 95 / 128 3.8s Mutex parallel
[ ] 99 0 0 99 / 128 4.0s Mutex parallel
[ ] 103 0 0 103 / 128 4.1s Mutex parallel
[ ] 106 0 0 106 / 128 4.2s Mutex parallel
[ ] 109 0 0 109 / 128 4.3s Mutex parallel
[ ] 110 0 0 110 / 128 4.4s Mutex parallel
[ ] 113 0 0 113 / 128 4.5s Mutex parallel
[ ] 116 0 0 116 / 128 4.7s Mutex parallel
[ ] 119 0 0 119 / 128 4.8s Mutex parallel
[ ] 123 0 0 123 / 128 4.9s Mutex parallel
[ ] 126 0 0 126 / 128 5.0s Mutex parallel
[ ] 128 0 0 128 / 128 5.1s Mutex parallel
[✓] 128 0 0 128 / 128 5.1s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 3039653924425478780
generated error fail pass / total time test name
[ ] 0 0 0 0 / 256 0.0s Mutex sequential
[✓] 256 0 0 256 / 256 0.0s Mutex sequential
[ ] 0 0 0 0 / 256 0.0s Mutex parallel
[ ] 4 0 0 4 / 256 0.1s Mutex parallel
[ ] 8 0 0 8 / 256 0.3s Mutex parallel
[ ] 11 0 0 11 / 256 0.5s Mutex parallel
[ ] 15 0 0 15 / 256 0.6s Mutex parallel
[ ] 19 0 0 19 / 256 0.7s Mutex parallel
[ ] 22 0 0 22 / 256 0.9s Mutex parallel
[ ] 26 0 0 26 / 256 1.0s Mutex parallel
[ ] 29 0 0 29 / 256 1.2s Mutex parallel
[ ] 32 0 0 32 / 256 1.3s Mutex parallel
[ ] 34 0 0 34 / 256 1.4s Mutex parallel
[ ] 38 0 0 38 / 256 1.5s Mutex parallel
[ ] 41 0 0 41 / 256 1.6s Mutex parallel
[ ] 44 0 0 44 / 256 1.7s Mutex parallel
[ ] 46 0 0 46 / 256 1.9s Mutex parallel
[ ] 49 0 0 49 / 256 2.0s Mutex parallel
[ ] 51 0 0 51 / 256 2.1s Mutex parallel
[ ] 55 0 0 55 / 256 2.3s Mutex parallel
[ ] 58 0 0 58 / 256 2.4s Mutex parallel
[ ] 62 0 0 62 / 256 2.5s Mutex parallel
[ ] 66 0 0 66 / 256 2.6s Mutex parallel
[ ] 69 0 0 69 / 256 2.7s Mutex parallel
[ ] 74 0 0 74 / 256 2.9s Mutex parallel
[ ] 76 0 0 76 / 256 3.0s Mutex parallel
[ ] 78 0 0 78 / 256 3.1s Mutex parallel
[ ] 81 0 0 81 / 256 3.2s Mutex parallel
[ ] 82 0 0 82 / 256 3.3s Mutex parallel
[ ] 85 0 0 85 / 256 3.4s Mutex parallel
[ ] 88 0 0 88 / 256 3.6s Mutex parallel
[ ] 92 0 0 92 / 256 3.8s Mutex parallel
[ ] 93 0 0 93 / 256 3.9s Mutex parallel
[ ] 97 0 0 97 / 256 4.0s Mutex parallel
[ ] 101 0 0 101 / 256 4.2s Mutex parallel
[ ] 104 0 0 104 / 256 4.3s Mutex parallel
[ ] 107 0 0 107 / 256 4.4s Mutex parallel
[ ] 111 0 0 111 / 256 4.5s Mutex parallel
[ ] 114 0 0 114 / 256 4.7s Mutex parallel
[ ] 117 0 0 117 / 256 4.8s Mutex parallel
[ ] 120 0 0 120 / 256 4.9s Mutex parallel
[ ] 124 0 0 124 / 256 5.0s Mutex parallel
[ ] 128 0 0 128 / 256 5.2s Mutex parallel
[ ] 131 0 0 131 / 256 5.4s Mutex parallel
[ ] 132 0 0 132 / 256 5.5s Mutex parallel
[ ] 136 0 0 136 / 256 5.6s Mutex parallel
[ ] 139 0 0 139 / 256 5.7s Mutex parallel
[ ] 141 0 0 141 / 256 5.8s Mutex parallel
[ ] 145 0 0 145 / 256 6.0s Mutex parallel
[ ] 149 0 0 149 / 256 6.1s Mutex parallel
[ ] 153 0 0 153 / 256 6.2s Mutex parallel
[ ] 156 0 0 156 / 256 6.3s Mutex parallel
[ ] 159 0 0 159 / 256 6.5s Mutex parallel
[ ] 160 0 0 160 / 256 6.7s Mutex parallel
[ ] 164 0 0 164 / 256 6.8s Mutex parallel
[ ] 168 0 0 168 / 256 6.9s Mutex parallel
[ ] 172 0 0 172 / 256 7.0s Mutex parallel
[ ] 174 0 0 174 / 256 7.1s Mutex parallel
[ ] 177 0 0 177 / 256 7.3s Mutex parallel
[ ] 179 0 0 179 / 256 7.5s Mutex parallel
[ ] 183 0 0 183 / 256 7.6s Mutex parallel
[ ] 185 0 0 185 / 256 7.8s Mutex parallel
[ ] 188 0 0 188 / 256 7.9s Mutex parallel
[ ] 192 0 0 192 / 256 8.0s Mutex parallel
[ ] 195 0 0 195 / 256 8.1s Mutex parallel
[ ] 197 0 0 197 / 256 8.3s Mutex parallel
[ ] 201 0 0 201 / 256 8.4s Mutex parallel
[ ] 205 0 0 205 / 256 8.6s Mutex parallel
[ ] 209 0 0 209 / 256 8.7s Mutex parallel
[ ] 213 0 0 213 / 256 8.9s Mutex parallel
[ ] 215 0 0 215 / 256 9.0s Mutex parallel
[ ] 217 0 0 217 / 256 9.2s Mutex parallel
[ ] 220 0 0 220 / 256 9.3s Mutex parallel
[ ] 223 0 0 223 / 256 9.4s Mutex parallel
[ ] 227 0 0 227 / 256 9.5s Mutex parallel
[ ] 232 0 0 232 / 256 9.7s Mutex parallel
[ ] 236 0 0 236 / 256 9.8s Mutex parallel
[ ] 239 0 0 239 / 256 9.9s Mutex parallel
[ ] 242 0 0 242 / 256 10.0s Mutex parallel
[ ] 246 0 0 246 / 256 10.2s Mutex parallel
[ ] 249 0 0 249 / 256 10.3s Mutex parallel
[ ] 251 0 0 251 / 256 10.4s Mutex parallel
[ ] 254 0 0 254 / 256 10.5s Mutex parallel
[ ] 256 0 0 256 / 256 10.7s Mutex parallel
[✓] 256 0 0 256 / 256 10.7s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 707489196139680335
generated error fail pass / total time test name
[ ] 0 0 0 0 / 512 0.0s Mutex sequential
[✓] 512 0 0 512 / 512 0.0s Mutex sequential
[ ] 0 0 0 0 / 512 0.0s Mutex parallel
[ ] 3 0 0 3 / 512 0.1s Mutex parallel
[ ] 7 0 0 7 / 512 0.2s Mutex parallel
[ ] 10 0 0 10 / 512 0.4s Mutex parallel
[ ] 14 0 0 14 / 512 0.5s Mutex parallel
[ ] 18 0 0 18 / 512 0.6s Mutex parallel
[ ] 22 0 0 22 / 512 0.7s Mutex parallel
[ ] 26 0 0 26 / 512 0.8s Mutex parallel
[ ] 29 0 0 29 / 512 1.0s Mutex parallel
[ ] 33 0 0 33 / 512 1.1s Mutex parallel
[ ] 35 0 0 35 / 512 1.2s Mutex parallel
[ ] 38 0 0 38 / 512 1.3s Mutex parallel
[ ] 42 0 0 42 / 512 1.5s Mutex parallel
[ ] 44 0 0 44 / 512 1.6s Mutex parallel
[ ] 48 0 0 48 / 512 1.7s Mutex parallel
[ ] 51 0 0 51 / 512 1.8s Mutex parallel
[ ] 55 0 0 55 / 512 2.0s Mutex parallel
[ ] 59 0 0 59 / 512 2.1s Mutex parallel
[ ] 63 0 0 63 / 512 2.2s Mutex parallel
[ ] 64 0 0 64 / 512 2.3s Mutex parallel
[ ] 67 0 0 67 / 512 2.4s Mutex parallel
[ ] 70 0 0 70 / 512 2.6s Mutex parallel
[ ] 72 0 0 72 / 512 2.7s Mutex parallel
[ ] 76 0 0 76 / 512 2.8s Mutex parallel
[ ] 79 0 0 79 / 512 2.9s Mutex parallel
[ ] 83 0 0 83 / 512 3.0s Mutex parallel
[ ] 87 0 0 87 / 512 3.1s Mutex parallel
[ ] 91 0 0 91 / 512 3.3s Mutex parallel
[ ] 95 0 0 95 / 512 3.4s Mutex parallel
[ ] 98 0 0 98 / 512 3.5s Mutex parallel
[ ] 102 0 0 102 / 512 3.7s Mutex parallel
[ ] 106 0 0 106 / 512 3.8s Mutex parallel
[ ] 109 0 0 109 / 512 3.9s Mutex parallel
[ ] 113 0 0 113 / 512 4.1s Mutex parallel
[ ] 114 0 0 114 / 512 4.2s Mutex parallel
[ ] 118 0 0 118 / 512 4.3s Mutex parallel
[ ] 122 0 0 122 / 512 4.4s Mutex parallel
[ ] 126 0 0 126 / 512 4.6s Mutex parallel
[ ] 130 0 0 130 / 512 4.7s Mutex parallel
[ ] 134 0 0 134 / 512 4.8s Mutex parallel
[ ] 136 0 0 136 / 512 4.9s Mutex parallel
[ ] 140 0 0 140 / 512 5.1s Mutex parallel
[ ] 144 0 0 144 / 512 5.2s Mutex parallel
[ ] 148 0 0 148 / 512 5.3s Mutex parallel
[ ] 152 0 0 152 / 512 5.4s Mutex parallel
[ ] 157 0 0 157 / 512 5.6s Mutex parallel
[ ] 160 0 0 160 / 512 5.7s Mutex parallel
[ ] 163 0 0 163 / 512 5.8s Mutex parallel
[ ] 165 0 0 165 / 512 5.9s Mutex parallel
[ ] 168 0 0 168 / 512 6.1s Mutex parallel
[ ] 172 0 0 172 / 512 6.2s Mutex parallel
[ ] 175 0 0 175 / 512 6.3s Mutex parallel
[ ] 178 0 0 178 / 512 6.4s Mutex parallel
[ ] 183 0 0 183 / 512 6.5s Mutex parallel
[ ] 186 0 0 186 / 512 6.6s Mutex parallel
[ ] 190 0 0 190 / 512 6.8s Mutex parallel
[ ] 194 0 0 194 / 512 6.9s Mutex parallel
[ ] 198 0 0 198 / 512 7.1s Mutex parallel
[ ] 202 0 0 202 / 512 7.2s Mutex parallel
[ ] 208 0 0 208 / 512 7.4s Mutex parallel
[ ] 213 0 0 213 / 512 7.6s Mutex parallel
[ ] 217 0 0 217 / 512 7.7s Mutex parallel
[ ] 219 0 0 219 / 512 7.8s Mutex parallel
[ ] 223 0 0 223 / 512 7.9s Mutex parallel
[ ] 225 0 0 225 / 512 8.1s Mutex parallel
[ ] 231 0 0 231 / 512 8.3s Mutex parallel
[ ] 237 0 0 237 / 512 8.4s Mutex parallel
[ ] 243 0 0 243 / 512 8.5s Mutex parallel
[ ] 246 0 0 246 / 512 8.6s Mutex parallel
[ ] 253 0 0 253 / 512 8.7s Mutex parallel
[ ] 259 0 0 259 / 512 8.8s Mutex parallel
[ ] 264 0 0 264 / 512 9.0s Mutex parallel
[ ] 269 0 0 269 / 512 9.1s Mutex parallel
[ ] 275 0 0 275 / 512 9.3s Mutex parallel
[ ] 279 0 0 279 / 512 9.4s Mutex parallel
[ ] 282 0 0 282 / 512 9.5s Mutex parallel
[ ] 285 0 0 285 / 512 9.6s Mutex parallel
[ ] 291 0 0 291 / 512 9.8s Mutex parallel
[ ] 297 0 0 297 / 512 9.9s Mutex parallel
[ ] 303 0 0 303 / 512 10.0s Mutex parallel
[ ] 304 0 0 304 / 512 10.1s Mutex parallel
[ ] 306 0 0 306 / 512 10.3s Mutex parallel
[ ] 313 0 0 313 / 512 10.4s Mutex parallel
[ ] 318 0 0 318 / 512 10.5s Mutex parallel
[ ] 319 0 0 319 / 512 10.6s Mutex parallel
[ ] 324 0 0 324 / 512 10.7s Mutex parallel
[ ] 331 0 0 331 / 512 10.8s Mutex parallel
[ ] 334 0 0 334 / 512 10.9s Mutex parallel
[ ] 341 0 0 341 / 512 11.0s Mutex parallel
[ ] 346 0 0 346 / 512 11.1s Mutex parallel
[ ] 352 0 0 352 / 512 11.3s Mutex parallel
[ ] 359 0 0 359 / 512 11.4s Mutex parallel
[ ] 363 0 0 363 / 512 11.5s Mutex parallel
[ ] 367 0 0 367 / 512 11.6s Mutex parallel
[ ] 374 0 0 374 / 512 11.8s Mutex parallel
[ ] 381 0 0 381 / 512 11.9s Mutex parallel
[ ] 385 0 0 385 / 512 12.0s Mutex parallel
[ ] 392 0 0 392 / 512 12.1s Mutex parallel
[ ] 398 0 0 398 / 512 12.2s Mutex parallel
[ ] 405 0 0 405 / 512 12.4s Mutex parallel
[ ] 412 0 0 412 / 512 12.5s Mutex parallel
[ ] 417 0 0 417 / 512 12.6s Mutex parallel
[ ] 420 0 0 420 / 512 12.7s Mutex parallel
[ ] 424 0 0 424 / 512 12.9s Mutex parallel
[ ] 430 0 0 430 / 512 13.0s Mutex parallel
[ ] 432 0 0 432 / 512 13.1s Mutex parallel
[ ] 440 0 0 440 / 512 13.2s Mutex parallel
[ ] 447 0 0 447 / 512 13.3s Mutex parallel
[ ] 451 0 0 451 / 512 13.5s Mutex parallel
[ ] 453 0 0 453 / 512 13.6s Mutex parallel
[ ] 460 0 0 460 / 512 13.7s Mutex parallel
[ ] 462 0 0 462 / 512 13.8s Mutex parallel
[ ] 465 0 0 465 / 512 14.0s Mutex parallel
[ ] 471 0 0 471 / 512 14.1s Mutex parallel
[ ] 474 0 0 474 / 512 14.2s Mutex parallel
[ ] 481 0 0 481 / 512 14.3s Mutex parallel
[ ] 487 0 0 487 / 512 14.4s Mutex parallel
[ ] 494 0 0 494 / 512 14.5s Mutex parallel
[ ] 497 0 0 497 / 512 14.6s Mutex parallel
[ ] 503 0 0 503 / 512 14.7s Mutex parallel
[ ] 507 0 0 507 / 512 14.9s Mutex parallel
[✓] 512 0 0 512 / 512 15.0s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 514580379483567571
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
[ ] 4 0 0 4 / 32 0.1s Mutex parallel
[ ] 11 0 0 11 / 32 0.2s Mutex parallel
[ ] 18 0 0 18 / 32 0.4s Mutex parallel
[ ] 20 0 0 20 / 32 0.6s Mutex parallel
[ ] 28 0 0 28 / 32 0.7s Mutex parallel
[✓] 32 0 0 32 / 32 0.7s Mutex parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_lock.exe)
random seed: 2490324222492256437
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
[ ] 2 0 0 2 / 32 0.1s Lock parallel
[ ] 3 0 0 3 / 32 0.2s Lock parallel
[ ] 6 0 0 6 / 32 0.4s Lock parallel
[ ] 9 0 0 9 / 32 0.5s Lock parallel
[ ] 13 0 0 13 / 32 0.6s Lock parallel
[ ] 16 0 0 16 / 32 0.7s Lock parallel
[ ] 19 0 0 19 / 32 0.8s Lock parallel
[ ] 22 0 0 22 / 32 1.0s Lock parallel
[ ] 24 0 0 24 / 32 1.1s Lock parallel
[ ] 25 0 0 25 / 32 1.2s Lock parallel
[ ] 28 0 0 28 / 32 1.4s Lock parallel
[ ] 30 0 0 30 / 32 1.5s Lock parallel
[✓] 32 0 0 32 / 32 1.6s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 2051287163180872666
generated error fail pass / total time test name
[ ] 0 0 0 0 / 64 0.0s Lock sequential
[✓] 64 0 0 64 / 64 0.0s Lock sequential
[ ] 0 0 0 0 / 64 0.0s Lock parallel
[ ] 2 0 0 2 / 64 0.1s Lock parallel
[ ] 5 0 0 5 / 64 0.2s Lock parallel
[ ] 8 0 0 8 / 64 0.3s Lock parallel
[ ] 11 0 0 11 / 64 0.4s Lock parallel
[ ] 14 0 0 14 / 64 0.6s Lock parallel
[ ] 17 0 0 17 / 64 0.7s Lock parallel
[ ] 19 0 0 19 / 64 0.9s Lock parallel
[ ] 21 0 0 21 / 64 1.0s Lock parallel
[ ] 24 0 0 24 / 64 1.1s Lock parallel
[ ] 27 0 0 27 / 64 1.3s Lock parallel
[ ] 30 0 0 30 / 64 1.5s Lock parallel
[ ] 34 0 0 34 / 64 1.6s Lock parallel
[ ] 37 0 0 37 / 64 1.7s Lock parallel
[ ] 40 0 0 40 / 64 1.8s Lock parallel
[ ] 43 0 0 43 / 64 1.9s Lock parallel
[ ] 46 0 0 46 / 64 2.1s Lock parallel
[ ] 49 0 0 49 / 64 2.2s Lock parallel
[ ] 52 0 0 52 / 64 2.3s Lock parallel
[ ] 54 0 0 54 / 64 2.5s Lock parallel
[ ] 57 0 0 57 / 64 2.6s Lock parallel
[ ] 61 0 0 61 / 64 2.7s Lock parallel
[✓] 64 0 0 64 / 64 2.8s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 1829564774843922631
generated error fail pass / total time test name
[ ] 0 0 0 0 / 128 0.0s Lock sequential
[✓] 128 0 0 128 / 128 0.0s Lock sequential
[ ] 0 0 0 0 / 128 0.0s Lock parallel
[ ] 3 0 0 3 / 128 0.1s Lock parallel
[ ] 5 0 0 5 / 128 0.2s Lock parallel
[ ] 7 0 0 7 / 128 0.4s Lock parallel
[ ] 10 0 0 10 / 128 0.5s Lock parallel
[ ] 13 0 0 13 / 128 0.6s Lock parallel
[ ] 16 0 0 16 / 128 0.7s Lock parallel
[ ] 19 0 0 19 / 128 0.8s Lock parallel
[ ] 22 0 0 22 / 128 0.9s Lock parallel
[ ] 25 0 0 25 / 128 1.0s Lock parallel
[ ] 29 0 0 29 / 128 1.2s Lock parallel
[ ] 32 0 0 32 / 128 1.3s Lock parallel
[ ] 34 0 0 34 / 128 1.4s Lock parallel
[ ] 38 0 0 38 / 128 1.6s Lock parallel
[ ] 41 0 0 41 / 128 1.7s Lock parallel
[ ] 45 0 0 45 / 128 1.8s Lock parallel
[ ] 49 0 0 49 / 128 1.9s Lock parallel
[ ] 52 0 0 52 / 128 2.0s Lock parallel
[ ] 54 0 0 54 / 128 2.1s Lock parallel
[ ] 57 0 0 57 / 128 2.4s Lock parallel
[ ] 60 0 0 60 / 128 2.5s Lock parallel
[ ] 63 0 0 63 / 128 2.6s Lock parallel
[ ] 66 0 0 66 / 128 2.8s Lock parallel
[ ] 68 0 0 68 / 128 2.9s Lock parallel
[ ] 71 0 0 71 / 128 3.0s Lock parallel
[ ] 74 0 0 74 / 128 3.1s Lock parallel
[ ] 77 0 0 77 / 128 3.3s Lock parallel
[ ] 79 0 0 79 / 128 3.4s Lock parallel
[ ] 82 0 0 82 / 128 3.5s Lock parallel
[ ] 85 0 0 85 / 128 3.6s Lock parallel
[ ] 89 0 0 89 / 128 3.7s Lock parallel
[ ] 92 0 0 92 / 128 3.8s Lock parallel
[ ] 96 0 0 96 / 128 3.9s Lock parallel
[ ] 100 0 0 100 / 128 4.1s Lock parallel
[ ] 103 0 0 103 / 128 4.3s Lock parallel
[ ] 106 0 0 106 / 128 4.4s Lock parallel
[ ] 109 0 0 109 / 128 4.5s Lock parallel
[ ] 113 0 0 113 / 128 4.6s Lock parallel
[ ] 117 0 0 117 / 128 4.7s Lock parallel
[ ] 121 0 0 121 / 128 4.9s Lock parallel
[ ] 123 0 0 123 / 128 5.1s Lock parallel
[ ] 126 0 0 126 / 128 5.2s Lock parallel
[✓] 128 0 0 128 / 128 5.3s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 2408417894190034805
generated error fail pass / total time test name
[ ] 0 0 0 0 / 256 0.0s Lock sequential
[✓] 256 0 0 256 / 256 0.0s Lock sequential
[ ] 0 0 0 0 / 256 0.0s Lock parallel
[ ] 2 0 0 2 / 256 0.1s Lock parallel
[ ] 5 0 0 5 / 256 0.2s Lock parallel
[ ] 8 0 0 8 / 256 0.3s Lock parallel
[ ] 12 0 0 12 / 256 0.5s Lock parallel
[ ] 16 0 0 16 / 256 0.6s Lock parallel
[ ] 19 0 0 19 / 256 0.8s Lock parallel
[ ] 22 0 0 22 / 256 1.0s Lock parallel
[ ] 26 0 0 26 / 256 1.1s Lock parallel
[ ] 29 0 0 29 / 256 1.2s Lock parallel
[ ] 32 0 0 32 / 256 1.4s Lock parallel
[ ] 35 0 0 35 / 256 1.6s Lock parallel
[ ] 39 0 0 39 / 256 1.7s Lock parallel
[ ] 42 0 0 42 / 256 1.9s Lock parallel
[ ] 45 0 0 45 / 256 2.0s Lock parallel
[ ] 48 0 0 48 / 256 2.1s Lock parallel
[ ] 52 0 0 52 / 256 2.2s Lock parallel
[ ] 56 0 0 56 / 256 2.4s Lock parallel
[ ] 60 0 0 60 / 256 2.5s Lock parallel
[ ] 63 0 0 63 / 256 2.6s Lock parallel
[ ] 67 0 0 67 / 256 2.7s Lock parallel
[ ] 70 0 0 70 / 256 2.8s Lock parallel
[ ] 73 0 0 73 / 256 2.9s Lock parallel
[ ] 77 0 0 77 / 256 3.1s Lock parallel
[ ] 81 0 0 81 / 256 3.2s Lock parallel
[ ] 85 0 0 85 / 256 3.3s Lock parallel
[ ] 89 0 0 89 / 256 3.4s Lock parallel
[ ] 93 0 0 93 / 256 3.6s Lock parallel
[ ] 97 0 0 97 / 256 3.7s Lock parallel
[ ] 99 0 0 99 / 256 3.8s Lock parallel
[ ] 103 0 0 103 / 256 3.9s Lock parallel
[ ] 105 0 0 105 / 256 4.1s Lock parallel
[ ] 109 0 0 109 / 256 4.2s Lock parallel
[ ] 113 0 0 113 / 256 4.4s Lock parallel
[ ] 117 0 0 117 / 256 4.5s Lock parallel
[ ] 119 0 0 119 / 256 4.7s Lock parallel
[ ] 122 0 0 122 / 256 4.8s Lock parallel
[ ] 126 0 0 126 / 256 4.9s Lock parallel
[ ] 130 0 0 130 / 256 5.0s Lock parallel
[ ] 133 0 0 133 / 256 5.2s Lock parallel
[ ] 136 0 0 136 / 256 5.4s Lock parallel
[ ] 139 0 0 139 / 256 5.5s Lock parallel
[ ] 142 0 0 142 / 256 5.6s Lock parallel
[ ] 145 0 0 145 / 256 5.8s Lock parallel
[ ] 149 0 0 149 / 256 6.0s Lock parallel
[ ] 152 0 0 152 / 256 6.1s Lock parallel
[ ] 154 0 0 154 / 256 6.2s Lock parallel
[ ] 157 0 0 157 / 256 6.4s Lock parallel
[ ] 161 0 0 161 / 256 6.5s Lock parallel
[ ] 165 0 0 165 / 256 6.6s Lock parallel
[ ] 168 0 0 168 / 256 6.7s Lock parallel
[ ] 172 0 0 172 / 256 6.8s Lock parallel
[ ] 176 0 0 176 / 256 7.0s Lock parallel
[ ] 180 0 0 180 / 256 7.1s Lock parallel
[ ] 185 0 0 185 / 256 7.2s Lock parallel
[ ] 189 0 0 189 / 256 7.3s Lock parallel
[ ] 193 0 0 193 / 256 7.5s Lock parallel
[ ] 196 0 0 196 / 256 7.6s Lock parallel
[ ] 198 0 0 198 / 256 7.8s Lock parallel
[ ] 200 0 0 200 / 256 7.9s Lock parallel
[ ] 204 0 0 204 / 256 8.0s Lock parallel
[ ] 207 0 0 207 / 256 8.1s Lock parallel
[ ] 211 0 0 211 / 256 8.3s Lock parallel
[ ] 213 0 0 213 / 256 8.4s Lock parallel
[ ] 216 0 0 216 / 256 8.6s Lock parallel
[ ] 219 0 0 219 / 256 8.7s Lock parallel
[ ] 222 0 0 222 / 256 8.8s Lock parallel
[ ] 224 0 0 224 / 256 9.0s Lock parallel
[ ] 228 0 0 228 / 256 9.1s Lock parallel
[ ] 231 0 0 231 / 256 9.2s Lock parallel
[ ] 235 0 0 235 / 256 9.3s Lock parallel
[ ] 239 0 0 239 / 256 9.5s Lock parallel
[ ] 240 0 0 240 / 256 9.6s Lock parallel
[ ] 243 0 0 243 / 256 9.8s Lock parallel
[ ] 247 0 0 247 / 256 9.9s Lock parallel
[ ] 250 0 0 250 / 256 10.1s Lock parallel
[ ] 254 0 0 254 / 256 10.2s Lock parallel
[✓] 256 0 0 256 / 256 10.3s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 1190175007653316502
generated error fail pass / total time test name
[ ] 0 0 0 0 / 512 0.0s Lock sequential
[✓] 512 0 0 512 / 512 0.0s Lock sequential
[ ] 0 0 0 0 / 512 0.0s Lock parallel
[ ] 3 0 0 3 / 512 0.2s Lock parallel
[ ] 6 0 0 6 / 512 0.3s Lock parallel
[ ] 10 0 0 10 / 512 0.4s Lock parallel
[ ] 12 0 0 12 / 512 0.6s Lock parallel
[ ] 13 0 0 13 / 512 0.7s Lock parallel
[ ] 16 0 0 16 / 512 1.0s Lock parallel
[ ] 20 0 0 20 / 512 1.1s Lock parallel
[ ] 24 0 0 24 / 512 1.2s Lock parallel
[ ] 27 0 0 27 / 512 1.3s Lock parallel
[ ] 30 0 0 30 / 512 1.5s Lock parallel
[ ] 32 0 0 32 / 512 1.6s Lock parallel
[ ] 35 0 0 35 / 512 1.7s Lock parallel
[ ] 38 0 0 38 / 512 1.8s Lock parallel
[ ] 42 0 0 42 / 512 1.9s Lock parallel
[ ] 45 0 0 45 / 512 2.0s Lock parallel
[ ] 49 0 0 49 / 512 2.1s Lock parallel
[ ] 52 0 0 52 / 512 2.4s Lock parallel
[ ] 56 0 0 56 / 512 2.5s Lock parallel
[ ] 60 0 0 60 / 512 2.6s Lock parallel
[ ] 64 0 0 64 / 512 2.9s Lock parallel
[ ] 67 0 0 67 / 512 3.0s Lock parallel
[ ] 71 0 0 71 / 512 3.1s Lock parallel
[ ] 73 0 0 73 / 512 3.3s Lock parallel
[ ] 76 0 0 76 / 512 3.4s Lock parallel
[ ] 79 0 0 79 / 512 3.5s Lock parallel
[ ] 83 0 0 83 / 512 3.6s Lock parallel
[ ] 86 0 0 86 / 512 3.7s Lock parallel
[ ] 90 0 0 90 / 512 3.8s Lock parallel
[ ] 93 0 0 93 / 512 4.0s Lock parallel
[ ] 96 0 0 96 / 512 4.1s Lock parallel
[ ] 97 0 0 97 / 512 4.2s Lock parallel
[ ] 101 0 0 101 / 512 4.3s Lock parallel
[ ] 105 0 0 105 / 512 4.5s Lock parallel
[ ] 106 0 0 106 / 512 4.6s Lock parallel
[ ] 109 0 0 109 / 512 4.7s Lock parallel
[ ] 112 0 0 112 / 512 4.9s Lock parallel
[ ] 114 0 0 114 / 512 5.0s Lock parallel
[ ] 117 0 0 117 / 512 5.1s Lock parallel
[ ] 120 0 0 120 / 512 5.2s Lock parallel
[ ] 123 0 0 123 / 512 5.3s Lock parallel
[ ] 127 0 0 127 / 512 5.4s Lock parallel
[ ] 131 0 0 131 / 512 5.7s Lock parallel
[ ] 136 0 0 136 / 512 5.8s Lock parallel
[ ] 140 0 0 140 / 512 5.9s Lock parallel
[ ] 142 0 0 142 / 512 6.0s Lock parallel
[ ] 146 0 0 146 / 512 6.2s Lock parallel
[ ] 150 0 0 150 / 512 6.3s Lock parallel
[ ] 153 0 0 153 / 512 6.4s Lock parallel
[ ] 157 0 0 157 / 512 6.5s Lock parallel
[ ] 159 0 0 159 / 512 6.7s Lock parallel
[ ] 163 0 0 163 / 512 6.8s Lock parallel
[ ] 168 0 0 168 / 512 6.9s Lock parallel
[ ] 172 0 0 172 / 512 7.0s Lock parallel
[ ] 176 0 0 176 / 512 7.2s Lock parallel
[ ] 182 0 0 182 / 512 7.3s Lock parallel
[ ] 187 0 0 187 / 512 7.5s Lock parallel
[ ] 190 0 0 190 / 512 7.7s Lock parallel
[ ] 194 0 0 194 / 512 7.8s Lock parallel
[ ] 198 0 0 198 / 512 7.9s Lock parallel
[ ] 203 0 0 203 / 512 8.0s Lock parallel
[ ] 208 0 0 208 / 512 8.1s Lock parallel
[ ] 214 0 0 214 / 512 8.2s Lock parallel
[ ] 218 0 0 218 / 512 8.4s Lock parallel
[ ] 224 0 0 224 / 512 8.5s Lock parallel
[ ] 230 0 0 230 / 512 8.7s Lock parallel
[ ] 235 0 0 235 / 512 8.8s Lock parallel
[ ] 239 0 0 239 / 512 9.0s Lock parallel
[ ] 245 0 0 245 / 512 9.1s Lock parallel
[ ] 252 0 0 252 / 512 9.2s Lock parallel
[ ] 258 0 0 258 / 512 9.3s Lock parallel
[ ] 262 0 0 262 / 512 9.4s Lock parallel
[ ] 263 0 0 263 / 512 9.5s Lock parallel
[ ] 269 0 0 269 / 512 9.6s Lock parallel
[ ] 272 0 0 272 / 512 9.8s Lock parallel
[ ] 276 0 0 276 / 512 9.9s Lock parallel
[ ] 282 0 0 282 / 512 10.0s Lock parallel
[ ] 289 0 0 289 / 512 10.1s Lock parallel
[ ] 293 0 0 293 / 512 10.2s Lock parallel
[ ] 300 0 0 300 / 512 10.3s Lock parallel
[ ] 305 0 0 305 / 512 10.5s Lock parallel
[ ] 311 0 0 311 / 512 10.6s Lock parallel
[ ] 317 0 0 317 / 512 10.8s Lock parallel
[ ] 320 0 0 320 / 512 10.9s Lock parallel
[ ] 322 0 0 322 / 512 11.0s Lock parallel
[ ] 329 0 0 329 / 512 11.1s Lock parallel
[ ] 337 0 0 337 / 512 11.3s Lock parallel
[ ] 341 0 0 341 / 512 11.4s Lock parallel
[ ] 349 0 0 349 / 512 11.6s Lock parallel
[ ] 352 0 0 352 / 512 11.7s Lock parallel
[ ] 353 0 0 353 / 512 11.8s Lock parallel
[ ] 360 0 0 360 / 512 11.9s Lock parallel
[ ] 366 0 0 366 / 512 12.0s Lock parallel
[ ] 373 0 0 373 / 512 12.2s Lock parallel
[ ] 378 0 0 378 / 512 12.3s Lock parallel
[ ] 385 0 0 385 / 512 12.4s Lock parallel
[ ] 389 0 0 389 / 512 12.6s Lock parallel
[ ] 396 0 0 396 / 512 12.7s Lock parallel
[ ] 402 0 0 402 / 512 12.8s Lock parallel
[ ] 405 0 0 405 / 512 12.9s Lock parallel
[ ] 412 0 0 412 / 512 13.1s Lock parallel
[ ] 419 0 0 419 / 512 13.2s Lock parallel
[ ] 426 0 0 426 / 512 13.3s Lock parallel
[ ] 432 0 0 432 / 512 13.4s Lock parallel
[ ] 434 0 0 434 / 512 13.5s Lock parallel
[ ] 440 0 0 440 / 512 13.7s Lock parallel
[ ] 447 0 0 447 / 512 13.8s Lock parallel
[ ] 451 0 0 451 / 512 13.9s Lock parallel
[ ] 452 0 0 452 / 512 14.0s Lock parallel
[ ] 458 0 0 458 / 512 14.1s Lock parallel
[ ] 463 0 0 463 / 512 14.2s Lock parallel
[ ] 469 0 0 469 / 512 14.3s Lock parallel
[ ] 475 0 0 475 / 512 14.4s Lock parallel
[ ] 483 0 0 483 / 512 14.5s Lock parallel
[ ] 487 0 0 487 / 512 14.7s Lock parallel
[ ] 491 0 0 491 / 512 14.8s Lock parallel
[ ] 495 0 0 495 / 512 14.9s Lock parallel
[ ] 496 0 0 496 / 512 15.0s Lock parallel
[ ] 500 0 0 500 / 512 15.1s Lock parallel
[ ] 507 0 0 507 / 512 15.2s Lock parallel
[ ] 512 0 0 512 / 512 15.4s Lock parallel
[✓] 512 0 0 512 / 512 15.4s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 84701703024479827
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
[ ] 4 0 0 4 / 32 0.2s Lock parallel
[ ] 8 0 0 8 / 32 0.3s Lock parallel
[ ] 15 0 0 15 / 32 0.4s Lock parallel
[ ] 22 0 0 22 / 32 0.6s Lock parallel
[ ] 23 0 0 23 / 32 0.7s Lock parallel
[ ] 31 0 0 31 / 32 0.8s Lock parallel
[✓] 32 0 0 32 / 32 0.8s Lock parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_sem.exe)
random seed: 717861505037358708
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
[ ] 2 0 0 2 / 32 0.2s Sem parallel
[ ] 4 0 0 4 / 32 0.4s Sem parallel
[ ] 6 0 0 6 / 32 0.6s Sem parallel
[ ] 9 0 0 9 / 32 0.7s Sem parallel
[ ] 12 0 0 12 / 32 0.8s Sem parallel
[ ] 15 0 0 15 / 32 1.0s Sem parallel
[ ] 17 0 0 17 / 32 1.1s Sem parallel
[ ] 20 0 0 20 / 32 1.2s Sem parallel
[ ] 23 0 0 23 / 32 1.3s Sem parallel
[ ] 24 0 0 24 / 32 1.5s Sem parallel
[ ] 27 0 0 27 / 32 1.6s Sem parallel
[ ] 30 0 0 30 / 32 1.7s Sem parallel
[ ] 31 0 0 31 / 32 1.9s Sem parallel
[✓] 32 0 0 32 / 32 1.9s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 3045708578271117601
generated error fail pass / total time test name
[ ] 0 0 0 0 / 64 0.0s Sem sequential
[✓] 64 0 0 64 / 64 0.0s Sem sequential
[ ] 0 0 0 0 / 64 0.0s Sem parallel
[ ] 3 0 0 3 / 64 0.1s Sem parallel
[ ] 5 0 0 5 / 64 0.3s Sem parallel
[ ] 8 0 0 8 / 64 0.4s Sem parallel
[ ] 11 0 0 11 / 64 0.5s Sem parallel
[ ] 15 0 0 15 / 64 0.6s Sem parallel
[ ] 17 0 0 17 / 64 0.8s Sem parallel
[ ] 18 0 0 18 / 64 0.9s Sem parallel
[ ] 21 0 0 21 / 64 1.0s Sem parallel
[ ] 23 0 0 23 / 64 1.2s Sem parallel
[ ] 26 0 0 26 / 64 1.3s Sem parallel
[ ] 29 0 0 29 / 64 1.4s Sem parallel
[ ] 32 0 0 32 / 64 1.5s Sem parallel
[ ] 35 0 0 35 / 64 1.6s Sem parallel
[ ] 38 0 0 38 / 64 1.7s Sem parallel
[ ] 41 0 0 41 / 64 1.9s Sem parallel
[ ] 44 0 0 44 / 64 2.0s Sem parallel
[ ] 47 0 0 47 / 64 2.1s Sem parallel
[ ] 50 0 0 50 / 64 2.2s Sem parallel
[ ] 53 0 0 53 / 64 2.3s Sem parallel
[ ] 56 0 0 56 / 64 2.4s Sem parallel
[ ] 58 0 0 58 / 64 2.5s Sem parallel
[ ] 61 0 0 61 / 64 2.6s Sem parallel
[ ] 64 0 0 64 / 64 2.8s Sem parallel
[✓] 64 0 0 64 / 64 2.8s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 2032239202560915796
generated error fail pass / total time test name
[ ] 0 0 0 0 / 128 0.0s Sem sequential
[✓] 128 0 0 128 / 128 0.0s Sem sequential
[ ] 0 0 0 0 / 128 0.0s Sem parallel
[ ] 1 0 0 1 / 128 0.2s Sem parallel
[ ] 4 0 0 4 / 128 0.3s Sem parallel
[ ] 7 0 0 7 / 128 0.4s Sem parallel
[ ] 10 0 0 10 / 128 0.5s Sem parallel
[ ] 13 0 0 13 / 128 0.6s Sem parallel
[ ] 16 0 0 16 / 128 0.7s Sem parallel
[ ] 20 0 0 20 / 128 0.8s Sem parallel
[ ] 23 0 0 23 / 128 0.9s Sem parallel
[ ] 26 0 0 26 / 128 1.1s Sem parallel
[ ] 29 0 0 29 / 128 1.3s Sem parallel
[ ] 32 0 0 32 / 128 1.4s Sem parallel
[ ] 36 0 0 36 / 128 1.5s Sem parallel
[ ] 39 0 0 39 / 128 1.6s Sem parallel
[ ] 42 0 0 42 / 128 1.7s Sem parallel
[ ] 46 0 0 46 / 128 1.8s Sem parallel
[ ] 50 0 0 50 / 128 2.1s Sem parallel
[ ] 53 0 0 53 / 128 2.2s Sem parallel
[ ] 57 0 0 57 / 128 2.4s Sem parallel
[ ] 61 0 0 61 / 128 2.5s Sem parallel
[ ] 64 0 0 64 / 128 2.6s Sem parallel
[ ] 67 0 0 67 / 128 2.7s Sem parallel
[ ] 70 0 0 70 / 128 2.8s Sem parallel
[ ] 73 0 0 73 / 128 2.9s Sem parallel
[ ] 76 0 0 76 / 128 3.1s Sem parallel
[ ] 80 0 0 80 / 128 3.2s Sem parallel
[ ] 83 0 0 83 / 128 3.3s Sem parallel
[ ] 87 0 0 87 / 128 3.4s Sem parallel
[ ] 90 0 0 90 / 128 3.5s Sem parallel
[ ] 94 0 0 94 / 128 3.6s Sem parallel
[ ] 97 0 0 97 / 128 3.7s Sem parallel
[ ] 100 0 0 100 / 128 3.8s Sem parallel
[ ] 103 0 0 103 / 128 4.0s Sem parallel
[ ] 105 0 0 105 / 128 4.1s Sem parallel
[ ] 108 0 0 108 / 128 4.2s Sem parallel
[ ] 112 0 0 112 / 128 4.3s Sem parallel
[ ] 116 0 0 116 / 128 4.5s Sem parallel
[ ] 119 0 0 119 / 128 4.6s Sem parallel
[ ] 122 0 0 122 / 128 4.8s Sem parallel
[ ] 125 0 0 125 / 128 5.0s Sem parallel
[ ] 128 0 0 128 / 128 5.1s Sem parallel
[✓] 128 0 0 128 / 128 5.1s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 2788218042857223572
generated error fail pass / total time test name
[ ] 0 0 0 0 / 256 0.0s Sem sequential
[✓] 256 0 0 256 / 256 0.0s Sem sequential
[ ] 0 0 0 0 / 256 0.0s Sem parallel
[ ] 3 0 0 3 / 256 0.1s Sem parallel
[ ] 7 0 0 7 / 256 0.2s Sem parallel
[ ] 11 0 0 11 / 256 0.4s Sem parallel
[ ] 14 0 0 14 / 256 0.5s Sem parallel
[ ] 17 0 0 17 / 256 0.6s Sem parallel
[ ] 20 0 0 20 / 256 0.8s Sem parallel
[ ] 23 0 0 23 / 256 0.9s Sem parallel
[ ] 26 0 0 26 / 256 1.0s Sem parallel
[ ] 29 0 0 29 / 256 1.1s Sem parallel
[ ] 32 0 0 32 / 256 1.3s Sem parallel
[ ] 35 0 0 35 / 256 1.4s Sem parallel
[ ] 38 0 0 38 / 256 1.6s Sem parallel
[ ] 42 0 0 42 / 256 1.7s Sem parallel
[ ] 45 0 0 45 / 256 1.8s Sem parallel
[ ] 48 0 0 48 / 256 1.9s Sem parallel
[ ] 52 0 0 52 / 256 2.1s Sem parallel
[ ] 55 0 0 55 / 256 2.2s Sem parallel
[ ] 58 0 0 58 / 256 2.3s Sem parallel
[ ] 63 0 0 63 / 256 2.4s Sem parallel
[ ] 67 0 0 67 / 256 2.5s Sem parallel
[ ] 71 0 0 71 / 256 2.7s Sem parallel
[ ] 74 0 0 74 / 256 2.8s Sem parallel
[ ] 77 0 0 77 / 256 2.9s Sem parallel
[ ] 80 0 0 80 / 256 3.0s Sem parallel
[ ] 84 0 0 84 / 256 3.2s Sem parallel
[ ] 87 0 0 87 / 256 3.3s Sem parallel
[ ] 91 0 0 91 / 256 3.4s Sem parallel
[ ] 94 0 0 94 / 256 3.6s Sem parallel
[ ] 98 0 0 98 / 256 3.7s Sem parallel
[ ] 101 0 0 101 / 256 3.8s Sem parallel
[ ] 105 0 0 105 / 256 4.1s Sem parallel
[ ] 109 0 0 109 / 256 4.2s Sem parallel
[ ] 113 0 0 113 / 256 4.4s Sem parallel
[ ] 116 0 0 116 / 256 4.6s Sem parallel
[ ] 119 0 0 119 / 256 4.8s Sem parallel
[ ] 121 0 0 121 / 256 5.0s Sem parallel
[ ] 125 0 0 125 / 256 5.1s Sem parallel
[ ] 128 0 0 128 / 256 5.2s Sem parallel
[ ] 131 0 0 131 / 256 5.3s Sem parallel
[ ] 133 0 0 133 / 256 5.6s Sem parallel
[ ] 137 0 0 137 / 256 5.7s Sem parallel
[ ] 141 0 0 141 / 256 5.8s Sem parallel
[ ] 143 0 0 143 / 256 5.9s Sem parallel
[ ] 147 0 0 147 / 256 6.0s Sem parallel
[ ] 150 0 0 150 / 256 6.1s Sem parallel
[ ] 153 0 0 153 / 256 6.2s Sem parallel
[ ] 156 0 0 156 / 256 6.3s Sem parallel
[ ] 158 0 0 158 / 256 6.5s Sem parallel
[ ] 160 0 0 160 / 256 6.6s Sem parallel
[ ] 163 0 0 163 / 256 6.7s Sem parallel
[ ] 167 0 0 167 / 256 6.8s Sem parallel
[ ] 170 0 0 170 / 256 6.9s Sem parallel
[ ] 171 0 0 171 / 256 7.1s Sem parallel
[ ] 173 0 0 173 / 256 7.2s Sem parallel
[ ] 175 0 0 175 / 256 7.3s Sem parallel
[ ] 179 0 0 179 / 256 7.4s Sem parallel
[ ] 182 0 0 182 / 256 7.6s Sem parallel
[ ] 183 0 0 183 / 256 7.7s Sem parallel
[ ] 187 0 0 187 / 256 7.8s Sem parallel
[ ] 190 0 0 190 / 256 7.9s Sem parallel
[ ] 191 0 0 191 / 256 8.1s Sem parallel
[ ] 194 0 0 194 / 256 8.2s Sem parallel
[ ] 198 0 0 198 / 256 8.3s Sem parallel
[ ] 202 0 0 202 / 256 8.5s Sem parallel
[ ] 205 0 0 205 / 256 8.6s Sem parallel
[ ] 208 0 0 208 / 256 8.7s Sem parallel
[ ] 210 0 0 210 / 256 8.8s Sem parallel
[ ] 214 0 0 214 / 256 8.9s Sem parallel
[ ] 215 0 0 215 / 256 9.1s Sem parallel
[ ] 216 0 0 216 / 256 9.2s Sem parallel
[ ] 220 0 0 220 / 256 9.3s Sem parallel
[ ] 224 0 0 224 / 256 9.5s Sem parallel
[ ] 227 0 0 227 / 256 9.6s Sem parallel
[ ] 231 0 0 231 / 256 9.7s Sem parallel
[ ] 233 0 0 233 / 256 9.8s Sem parallel
[ ] 235 0 0 235 / 256 10.0s Sem parallel
[ ] 239 0 0 239 / 256 10.1s Sem parallel
[ ] 242 0 0 242 / 256 10.2s Sem parallel
[ ] 245 0 0 245 / 256 10.3s Sem parallel
[ ] 249 0 0 249 / 256 10.4s Sem parallel
[ ] 251 0 0 251 / 256 10.5s Sem parallel
[ ] 255 0 0 255 / 256 10.6s Sem parallel
[✓] 256 0 0 256 / 256 10.7s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 2797699945668391127
generated error fail pass / total time test name
[ ] 0 0 0 0 / 512 0.0s Sem sequential
[✓] 512 0 0 512 / 512 0.0s Sem sequential
[ ] 0 0 0 0 / 512 0.0s Sem parallel
[ ] 4 0 0 4 / 512 0.1s Sem parallel
[ ] 7 0 0 7 / 512 0.3s Sem parallel
[ ] 10 0 0 10 / 512 0.5s Sem parallel
[ ] 13 0 0 13 / 512 0.6s Sem parallel
[ ] 15 0 0 15 / 512 0.8s Sem parallel
[ ] 18 0 0 18 / 512 0.9s Sem parallel
[ ] 22 0 0 22 / 512 1.0s Sem parallel
[ ] 26 0 0 26 / 512 1.1s Sem parallel
[ ] 29 0 0 29 / 512 1.2s Sem parallel
[ ] 33 0 0 33 / 512 1.3s Sem parallel
[ ] 37 0 0 37 / 512 1.5s Sem parallel
[ ] 41 0 0 41 / 512 1.6s Sem parallel
[ ] 42 0 0 42 / 512 1.8s Sem parallel
[ ] 46 0 0 46 / 512 1.9s Sem parallel
[ ] 50 0 0 50 / 512 2.0s Sem parallel
[ ] 54 0 0 54 / 512 2.2s Sem parallel
[ ] 56 0 0 56 / 512 2.3s Sem parallel
[ ] 60 0 0 60 / 512 2.6s Sem parallel
[ ] 61 0 0 61 / 512 2.7s Sem parallel
[ ] 65 0 0 65 / 512 2.8s Sem parallel
[ ] 68 0 0 68 / 512 2.9s Sem parallel
[ ] 72 0 0 72 / 512 3.1s Sem parallel
[ ] 73 0 0 73 / 512 3.2s Sem parallel
[ ] 76 0 0 76 / 512 3.4s Sem parallel
[ ] 78 0 0 78 / 512 3.6s Sem parallel
[ ] 81 0 0 81 / 512 3.7s Sem parallel
[ ] 85 0 0 85 / 512 3.8s Sem parallel
[ ] 89 0 0 89 / 512 4.0s Sem parallel
[ ] 93 0 0 93 / 512 4.1s Sem parallel
[ ] 96 0 0 96 / 512 4.2s Sem parallel
[ ] 100 0 0 100 / 512 4.4s Sem parallel
[ ] 104 0 0 104 / 512 4.5s Sem parallel
[ ] 107 0 0 107 / 512 4.6s Sem parallel
[ ] 110 0 0 110 / 512 4.7s Sem parallel
[ ] 114 0 0 114 / 512 4.9s Sem parallel
[ ] 116 0 0 116 / 512 5.0s Sem parallel
[ ] 120 0 0 120 / 512 5.1s Sem parallel
[ ] 124 0 0 124 / 512 5.2s Sem parallel
[ ] 128 0 0 128 / 512 5.4s Sem parallel
[ ] 132 0 0 132 / 512 5.5s Sem parallel
[ ] 136 0 0 136 / 512 5.6s Sem parallel
[ ] 139 0 0 139 / 512 5.9s Sem parallel
[ ] 143 0 0 143 / 512 6.0s Sem parallel
[ ] 148 0 0 148 / 512 6.1s Sem parallel
[ ] 153 0 0 153 / 512 6.2s Sem parallel
[ ] 157 0 0 157 / 512 6.3s Sem parallel
[ ] 162 0 0 162 / 512 6.5s Sem parallel
[ ] 167 0 0 167 / 512 6.6s Sem parallel
[ ] 168 0 0 168 / 512 6.8s Sem parallel
[ ] 170 0 0 170 / 512 6.9s Sem parallel
[ ] 174 0 0 174 / 512 7.1s Sem parallel
[ ] 176 0 0 176 / 512 7.3s Sem parallel
[ ] 180 0 0 180 / 512 7.4s Sem parallel
[ ] 185 0 0 185 / 512 7.5s Sem parallel
[ ] 190 0 0 190 / 512 7.6s Sem parallel
[ ] 194 0 0 194 / 512 7.7s Sem parallel
[ ] 200 0 0 200 / 512 7.8s Sem parallel
[ ] 203 0 0 203 / 512 7.9s Sem parallel
[ ] 209 0 0 209 / 512 8.1s Sem parallel
[ ] 214 0 0 214 / 512 8.2s Sem parallel
[ ] 220 0 0 220 / 512 8.3s Sem parallel
[ ] 226 0 0 226 / 512 8.4s Sem parallel
[ ] 231 0 0 231 / 512 8.6s Sem parallel
[ ] 236 0 0 236 / 512 8.7s Sem parallel
[ ] 243 0 0 243 / 512 8.8s Sem parallel
[ ] 250 0 0 250 / 512 8.9s Sem parallel
[ ] 255 0 0 255 / 512 9.1s Sem parallel
[ ] 258 0 0 258 / 512 9.2s Sem parallel
[ ] 261 0 0 261 / 512 9.3s Sem parallel
[ ] 264 0 0 264 / 512 9.4s Sem parallel
[ ] 270 0 0 270 / 512 9.6s Sem parallel
[ ] 276 0 0 276 / 512 9.7s Sem parallel
[ ] 283 0 0 283 / 512 9.8s Sem parallel
[ ] 290 0 0 290 / 512 9.9s Sem parallel
[ ] 294 0 0 294 / 512 10.0s Sem parallel
[ ] 300 0 0 300 / 512 10.1s Sem parallel
[ ] 305 0 0 305 / 512 10.2s Sem parallel
[ ] 310 0 0 310 / 512 10.3s Sem parallel
[ ] 316 0 0 316 / 512 10.4s Sem parallel
[ ] 321 0 0 321 / 512 10.5s Sem parallel
[ ] 328 0 0 328 / 512 10.6s Sem parallel
[ ] 332 0 0 332 / 512 10.7s Sem parallel
[ ] 336 0 0 336 / 512 10.8s Sem parallel
[ ] 344 0 0 344 / 512 10.9s Sem parallel
[ ] 349 0 0 349 / 512 11.1s Sem parallel
[ ] 355 0 0 355 / 512 11.2s Sem parallel
[ ] 361 0 0 361 / 512 11.3s Sem parallel
[ ] 367 0 0 367 / 512 11.4s Sem parallel
[ ] 373 0 0 373 / 512 11.5s Sem parallel
[ ] 376 0 0 376 / 512 11.6s Sem parallel
[ ] 383 0 0 383 / 512 11.7s Sem parallel
[ ] 385 0 0 385 / 512 11.9s Sem parallel
[ ] 392 0 0 392 / 512 12.0s Sem parallel
[ ] 395 0 0 395 / 512 12.1s Sem parallel
[ ] 401 0 0 401 / 512 12.2s Sem parallel
[ ] 403 0 0 403 / 512 12.4s Sem parallel
[ ] 404 0 0 404 / 512 12.5s Sem parallel
[ ] 410 0 0 410 / 512 12.6s Sem parallel
[ ] 414 0 0 414 / 512 12.7s Sem parallel
[ ] 422 0 0 422 / 512 12.9s Sem parallel
[ ] 429 0 0 429 / 512 13.0s Sem parallel
[ ] 436 0 0 436 / 512 13.1s Sem parallel
[ ] 443 0 0 443 / 512 13.2s Sem parallel
[ ] 450 0 0 450 / 512 13.3s Sem parallel
[ ] 456 0 0 456 / 512 13.4s Sem parallel
[ ] 463 0 0 463 / 512 13.5s Sem parallel
[ ] 465 0 0 465 / 512 13.7s Sem parallel
[ ] 468 0 0 468 / 512 13.8s Sem parallel
[ ] 475 0 0 475 / 512 14.0s Sem parallel
[ ] 479 0 0 479 / 512 14.1s Sem parallel
[ ] 483 0 0 483 / 512 14.2s Sem parallel
[ ] 489 0 0 489 / 512 14.3s Sem parallel
[ ] 490 0 0 490 / 512 14.4s Sem parallel
[ ] 492 0 0 492 / 512 14.5s Sem parallel
[ ] 499 0 0 499 / 512 14.6s Sem parallel
[ ] 501 0 0 501 / 512 14.7s Sem parallel
[ ] 509 0 0 509 / 512 14.9s Sem parallel
[✓] 512 0 0 512 / 512 14.9s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 2153543390267024509
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
[ ] 5 0 0 5 / 32 0.2s Sem parallel
[ ] 13 0 0 13 / 32 0.3s Sem parallel
[ ] 20 0 0 20 / 32 0.4s Sem parallel
[ ] 25 0 0 25 / 32 0.6s Sem parallel
[ ] 28 0 0 28 / 32 0.7s Sem parallel
[✓] 32 0 0 32 / 32 0.8s Sem parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_rwlock.exe)
random seed: 1166336274939726160
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
[ ] 2 0 0 2 / 32 0.1s Rwlock parallel
[ ] 5 0 0 5 / 32 0.2s Rwlock parallel
[ ] 6 0 0 6 / 32 0.4s Rwlock parallel
[ ] 9 0 0 9 / 32 0.5s Rwlock parallel
[ ] 12 0 0 12 / 32 0.7s Rwlock parallel
[ ] 15 0 0 15 / 32 0.9s Rwlock parallel
[ ] 17 0 0 17 / 32 1.0s Rwlock parallel
[ ] 19 0 0 19 / 32 1.2s Rwlock parallel
[ ] 22 0 0 22 / 32 1.3s Rwlock parallel
[ ] 25 0 0 25 / 32 1.4s Rwlock parallel
[ ] 28 0 0 28 / 32 1.5s Rwlock parallel
[ ] 31 0 0 31 / 32 1.6s Rwlock parallel
[✓] 32 0 0 32 / 32 1.7s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 2254401250828100614
generated error fail pass / total time test name
[ ] 0 0 0 0 / 64 0.0s Rwlock sequential
[✓] 64 0 0 64 / 64 0.0s Rwlock sequential
[ ] 0 0 0 0 / 64 0.0s Rwlock parallel
[ ] 3 0 0 3 / 64 0.1s Rwlock parallel
[ ] 6 0 0 6 / 64 0.2s Rwlock parallel
[ ] 8 0 0 8 / 64 0.4s Rwlock parallel
[ ] 11 0 0 11 / 64 0.5s Rwlock parallel
[ ] 14 0 0 14 / 64 0.6s Rwlock parallel
[ ] 16 0 0 16 / 64 0.7s Rwlock parallel
[ ] 19 0 0 19 / 64 0.8s Rwlock parallel
[ ] 21 0 0 21 / 64 1.0s Rwlock parallel
[ ] 24 0 0 24 / 64 1.1s Rwlock parallel
[ ] 27 0 0 27 / 64 1.2s Rwlock parallel
[ ] 30 0 0 30 / 64 1.4s Rwlock parallel
[ ] 33 0 0 33 / 64 1.5s Rwlock parallel
[ ] 36 0 0 36 / 64 1.6s Rwlock parallel
[ ] 39 0 0 39 / 64 1.7s Rwlock parallel
[ ] 42 0 0 42 / 64 1.9s Rwlock parallel
[ ] 45 0 0 45 / 64 2.0s Rwlock parallel
[ ] 48 0 0 48 / 64 2.1s Rwlock parallel
[ ] 50 0 0 50 / 64 2.2s Rwlock parallel
[ ] 53 0 0 53 / 64 2.4s Rwlock parallel
[ ] 56 0 0 56 / 64 2.5s Rwlock parallel
[ ] 59 0 0 59 / 64 2.6s Rwlock parallel
[ ] 63 0 0 63 / 64 2.7s Rwlock parallel
[✓] 64 0 0 64 / 64 2.8s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 4150447577783717095
generated error fail pass / total time test name
[ ] 0 0 0 0 / 128 0.0s Rwlock sequential
[✓] 128 0 0 128 / 128 0.0s Rwlock sequential
[ ] 0 0 0 0 / 128 0.0s Rwlock parallel
[ ] 1 0 0 1 / 128 0.2s Rwlock parallel
[ ] 4 0 0 4 / 128 0.4s Rwlock parallel
[ ] 8 0 0 8 / 128 0.5s Rwlock parallel
[ ] 9 0 0 9 / 128 0.7s Rwlock parallel
[ ] 12 0 0 12 / 128 0.8s Rwlock parallel
[ ] 16 0 0 16 / 128 0.9s Rwlock parallel
[ ] 19 0 0 19 / 128 1.1s Rwlock parallel
[ ] 22 0 0 22 / 128 1.2s Rwlock parallel
[ ] 24 0 0 24 / 128 1.3s Rwlock parallel
[ ] 28 0 0 28 / 128 1.4s Rwlock parallel
[ ] 31 0 0 31 / 128 1.5s Rwlock parallel
[ ] 35 0 0 35 / 128 1.7s Rwlock parallel
[ ] 37 0 0 37 / 128 1.8s Rwlock parallel
[ ] 40 0 0 40 / 128 2.0s Rwlock parallel
[ ] 43 0 0 43 / 128 2.1s Rwlock parallel
[ ] 47 0 0 47 / 128 2.2s Rwlock parallel
[ ] 50 0 0 50 / 128 2.3s Rwlock parallel
[ ] 53 0 0 53 / 128 2.5s Rwlock parallel
[ ] 56 0 0 56 / 128 2.6s Rwlock parallel
[ ] 59 0 0 59 / 128 2.7s Rwlock parallel
[ ] 61 0 0 61 / 128 2.9s Rwlock parallel
[ ] 63 0 0 63 / 128 3.0s Rwlock parallel
[ ] 67 0 0 67 / 128 3.2s Rwlock parallel
[ ] 70 0 0 70 / 128 3.4s Rwlock parallel
[ ] 73 0 0 73 / 128 3.5s Rwlock parallel
[ ] 77 0 0 77 / 128 3.6s Rwlock parallel
[ ] 80 0 0 80 / 128 3.8s Rwlock parallel
[ ] 84 0 0 84 / 128 3.9s Rwlock parallel
[ ] 87 0 0 87 / 128 4.0s Rwlock parallel
[ ] 90 0 0 90 / 128 4.2s Rwlock parallel
[ ] 94 0 0 94 / 128 4.3s Rwlock parallel
[ ] 96 0 0 96 / 128 4.4s Rwlock parallel
[ ] 100 0 0 100 / 128 4.6s Rwlock parallel
[ ] 104 0 0 104 / 128 4.7s Rwlock parallel
[ ] 108 0 0 108 / 128 4.8s Rwlock parallel
[ ] 111 0 0 111 / 128 4.9s Rwlock parallel
[ ] 115 0 0 115 / 128 5.0s Rwlock parallel
[ ] 118 0 0 118 / 128 5.1s Rwlock parallel
[ ] 121 0 0 121 / 128 5.2s Rwlock parallel
[ ] 124 0 0 124 / 128 5.4s Rwlock parallel
[ ] 127 0 0 127 / 128 5.5s Rwlock parallel
[✓] 128 0 0 128 / 128 5.5s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 4047311133349145873
generated error fail pass / total time test name
[ ] 0 0 0 0 / 256 0.0s Rwlock sequential
[✓] 256 0 0 256 / 256 0.0s Rwlock sequential
[ ] 0 0 0 0 / 256 0.0s Rwlock parallel
[ ] 1 0 0 1 / 256 0.1s Rwlock parallel
[ ] 4 0 0 4 / 256 0.3s Rwlock parallel
[ ] 8 0 0 8 / 256 0.5s Rwlock parallel
[ ] 11 0 0 11 / 256 0.6s Rwlock parallel
[ ] 14 0 0 14 / 256 0.7s Rwlock parallel
[ ] 17 0 0 17 / 256 0.8s Rwlock parallel
[ ] 21 0 0 21 / 256 1.0s Rwlock parallel
[ ] 25 0 0 25 / 256 1.1s Rwlock parallel
[ ] 280 0 28 / 256 1.2s Rwlock parallel
[ ] 32 0 0 32 / 256 1.4s Rwlock parallel
[ ] 35 0 0 35 / 256 1.5s Rwlock parallel
[ ] 39 0 0 39 / 256 1.6s Rwlock parallel
[ ] 41 0 0 41 / 256 1.8s Rwlock parallel
[ ] 44 0 0 44 / 256 1.9s Rwlock parallel
[ ] 46 0 0 46 / 256 2.0s Rwlock parallel
[ ] 49 0 0 49 / 256 2.1s Rwlock parallel
[ ] 51 0 0 51 / 256 2.2s Rwlock parallel
[ ] 55 0 0 55 / 256 2.3s Rwlock parallel
[ ] 56 0 0 56 / 256 2.5s Rwlock parallel
[ ] 60 0 0 60 / 256 2.6s Rwlock parallel
[ ] 63 0 0 63 / 256 2.7s Rwlock parallel
[ ] 67 0 0 67 / 256 2.8s Rwlock parallel
[ ] 70 0 0 70 / 256 2.9s Rwlock parallel
[ ] 74 0 0 74 / 256 3.0s Rwlock parallel
[ ] 78 0 0 78 / 256 3.2s Rwlock parallel
[ ] 82 0 0 82 / 256 3.3s Rwlock parallel
[ ] 85 0 0 85 / 256 3.4s Rwlock parallel
[ ] 89 0 0 89 / 256 3.7s Rwlock parallel
[ ] 93 0 0 93 / 256 3.8s Rwlock parallel
[ ] 96 0 0 96 / 256 4.0s Rwlock parallel
[ ] 100 0 0 100 / 256 4.1s Rwlock parallel
[ ] 103 0 0 103 / 256 4.3s Rwlock parallel
[ ] 107 0 0 107 / 256 4.4s Rwlock parallel
[ ] 111 0 0 111 / 256 4.6s Rwlock parallel
[ ] 113 0 0 113 / 256 4.7s Rwlock parallel
[ ] 116 0 0 116 / 256 4.9s Rwlock parallel
[ ] 120 0 0 120 / 256 5.0s Rwlock parallel
[ ] 124 0 0 124 / 256 5.2s Rwlock parallel
[ ] 127 0 0 127 / 256 5.3s Rwlock parallel
[ ] 130 0 0 130 / 256 5.4s Rwlock parallel
[ ] 134 0 0 134 / 256 5.5s Rwlock parallel
[ ] 135 0 0 135 / 256 5.7s Rwlock parallel
[ ] 139 0 0 139 / 256 5.8s Rwlock parallel
[ ] 141 0 0 141 / 256 6.0s Rwlock parallel
[ ] 146 0 0 146 / 256 6.1s Rwlock parallel
[ ] 150 0 0 150 / 256 6.2s Rwlock parallel
[ ] 153 0 0 153 / 256 6.3s Rwlock parallel
[ ] 155 0 0 155 / 256 6.5s Rwlock parallel
[ ] 159 0 0 159 / 256 6.6s Rwlock parallel
[ ] 163 0 0 163 / 256 6.8s Rwlock parallel
[ ] 167 0 0 167 / 256 6.9s Rwlock parallel
[ ] 168 0 0 168 / 256 7.0s Rwlock parallel
[ ] 171 0 0 171 / 256 7.1s Rwlock parallel
[ ] 173 0 0 173 / 256 7.2s Rwlock parallel
[ ] 177 0 0 177 / 256 7.4s Rwlock parallel
[ ] 181 0 0 181 / 256 7.5s Rwlock parallel
[ ] 185 0 0 185 / 256 7.6s Rwlock parallel
[ ] 189 0 0 189 / 256 7.7s Rwlock parallel
[ ] 192 0 0 192 / 256 7.8s Rwlock parallel
[ ] 195 0 0 195 / 256 7.9s Rwlock parallel
[ ] 198 0 0 198 / 256 8.1s Rwlock parallel
[ ] 200 0 0 200 / 256 8.2s Rwlock parallel
[ ] 201 0 0 201 / 256 8.4s Rwlock parallel
[ ] 204 0 0 204 / 256 8.5s Rwlock parallel
[ ] 206 0 0 206 / 256 8.6s Rwlock parallel
[ ] 210 0 0 210 / 256 8.7s Rwlock parallel
[ ] 214 0 0 214 / 256 8.8s Rwlock parallel
[ ] 217 0 0 217 / 256 8.9s Rwlock parallel
[ ] 220 0 0 220 / 256 9.1s Rwlock parallel
[ ] 224 0 0 224 / 256 9.3s Rwlock parallel
[ ] 226 0 0 226 / 256 9.4s Rwlock parallel
[ ] 229 0 0 229 / 256 9.5s Rwlock parallel
[ ] 232 0 0 232 / 256 9.7s Rwlock parallel
[ ] 235 0 0 235 / 256 9.8s Rwlock parallel
[ ] 238 0 0 238 / 256 10.0s Rwlock parallel
[ ] 241 0 0 241 / 256 10.1s Rwlock parallel
[ ] 244 0 0 244 / 256 10.2s Rwlock parallel
[ ] 247 0 0 247 / 256 10.3s Rwlock parallel
[ ] 250 0 0 250 / 256 10.4s Rwlock parallel
[ ] 251 0 0 251 / 256 10.6s Rwlock parallel
[ ] 252 0 0 252 / 256 10.7s Rwlock parallel
[ ] 256 0 0 256 / 256 10.8s Rwlock parallel
[✓] 256 0 0 256 / 256 10.8s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 1167864077774068290
generated error fail pass / total time test name
[ ] 0 0 0 0 / 512 0.0s Rwlock sequential
[✓] 512 0 0 512 / 512 0.0s Rwlock sequential
[ ] 0 0 0 0 / 512 0.0s Rwlock parallel
[ ] 2 0 0 2 / 512 0.2s Rwlock parallel
[ ] 6 0 0 6 / 512 0.3s Rwlock parallel
[ ] 10 0 0 10 / 512 0.4s Rwlock parallel
[ ] 13 0 0 13 / 512 0.6s Rwlock parallel
[ ] 16 0 0 16 / 512 0.7s Rwlock parallel
[ ] 19 0 0 19 / 512 0.9s Rwlock parallel
[ ] 22 0 0 22 / 512 1.0s Rwlock parallel
[ ] 24 0 0 24 / 512 1.2s Rwlock parallel
[ ] 26 0 0 26 / 512 1.3s Rwlock parallel
[ ] 28 0 0 28 / 512 1.4s Rwlock parallel
[ ] 31 0 0 31 / 512 1.5s Rwlock parallel
[ ] 34 0 0 34 / 512 1.7s Rwlock parallel
[ ] 38 0 0 38 / 512 1.8s Rwlock parallel
[ ] 39 0 0 39 / 512 1.9s Rwlock parallel
[ ] 43 0 0 43 / 512 2.1s Rwlock parallel
[ ] 45 0 0 45 / 512 2.2s Rwlock parallel
[ ] 49 0 0 49 / 512 2.3s Rwlock parallel
[ ] 53 0 0 53 / 512 2.4s Rwlock parallel
[ ] 57 0 0 57 / 512 2.6s Rwlock parallel
[ ] 60 0 0 60 / 512 2.7s Rwlock parallel
[ ] 63 0 0 63 / 512 2.8s Rwlock parallel
[ ] 66 0 0 66 / 512 2.9s Rwlock parallel
[ ] 70 0 0 70 / 512 3.0s Rwlock parallel
[ ] 74 0 0 74 / 512 3.1s Rwlock parallel
[ ] 77 0 0 77 / 512 3.2s Rwlock parallel
[ ] 81 0 0 81 / 512 3.4s Rwlock parallel
[ ] 84 0 0 84 / 512 3.5s Rwlock parallel
[ ] 86 0 0 86 / 512 3.6s Rwlock parallel
[ ] 88 0 0 88 / 512 3.8s Rwlock parallel
[ ] 89 0 0 89 / 512 3.9s Rwlock parallel
[ ] 92 0 0 92 / 512 4.1s Rwlock parallel
[ ] 95 0 0 95 / 512 4.2s Rwlock parallel
[ ] 96 0 0 96 / 512 4.3s Rwlock parallel
[ ] 99 0 0 99 / 512 4.4s Rwlock parallel
[ ] 102 0 0 102 / 512 4.6s Rwlock parallel
[ ] 105 0 0 105 / 512 4.7s Rwlock parallel
[ ] 110 0 0 110 / 512 4.8s Rwlock parallel
[ ] 115 0 0 115 / 512 4.9s Rwlock parallel
[ ] 119 0 0 119 / 512 5.0s Rwlock parallel
[ ] 124 0 0 124 / 512 5.2s Rwlock parallel
[ ] 128 0 0 128 / 512 5.3s Rwlock parallel
[ ] 133 0 0 133 / 512 5.5s Rwlock parallel
[ ] 138 0 0 138 / 512 5.6s Rwlock parallel
[ ] 139 0 0 139 / 512 5.7s Rwlock parallel
[ ] 143 0 0 143 / 512 5.8s Rwlock parallel
[ ] 148 0 0 148 / 512 5.9s Rwlock parallel
[ ] 152 0 0 152 / 512 6.0s Rwlock parallel
[ ] 156 0 0 156 / 512 6.2s Rwlock parallel
[ ] 158 0 0 158 / 512 6.3s Rwlock parallel
[ ] 163 0 0 163 / 512 6.4s Rwlock parallel
[ ] 166 0 0 166 / 512 6.5s Rwlock parallel
[ ] 167 0 0 167 / 512 6.6s Rwlock parallel
[ ] 173 0 0 173 / 512 6.7s Rwlock parallel
[ ] 178 0 0 178 / 512 6.8s Rwlock parallel
[ ] 183 0 0 183 / 512 6.9s Rwlock parallel
[ ] 186 0 0 186 / 512 7.1s Rwlock parallel
[ ] 190 0 0 190 / 512 7.2s Rwlock parallel
[ ] 196 0 0 196 / 512 7.3s Rwlock parallel
[ ] 202 0 0 202 / 512 7.6s Rwlock parallel
[ ] 208 0 0 208 / 512 7.7s Rwlock parallel
[ ] 211 0 0 211 / 512 7.8s Rwlock parallel
[ ] 214 0 0 214 / 512 8.0s Rwlock parallel
[ ] 219 0 0 219 / 512 8.1s Rwlock parallel
[ ] 222 0 0 222 / 512 8.3s Rwlock parallel
[ ] 229 0 0 229 / 512 8.4s Rwlock parallel
[ ] 235 0 0 235 / 512 8.5s Rwlock parallel
[ ] 241 0 0 241 / 512 8.6s Rwlock parallel
[ ] 245 0 0 245 / 512 8.7s Rwlock parallel
[ ] 249 0 0 249 / 512 8.8s Rwlock parallel
[ ] 253 0 0 253 / 512 9.0s Rwlock parallel
[ ] 258 0 0 258 / 512 9.1s Rwlock parallel
[ ] 264 0 0 264 / 512 9.2s Rwlock parallel
[ ] 269 0 0 269 / 512 9.3s Rwlock parallel
[ ] 273 0 0 273 / 512 9.4s Rwlock parallel
[ ] 279 0 0 279 / 512 9.5s Rwlock parallel
[ ] 284 0 0 284 / 512 9.7s Rwlock parallel
[ ] 288 0 0 288 / 512 9.8s Rwlock parallel
[ ] 294 0 0 294 / 512 9.9s Rwlock parallel
[ ] 301 0 0 301 / 512 10.0s Rwlock parallel
[ ] 305 0 0 305 / 512 10.1s Rwlock parallel
[ ] 312 0 0 312 / 512 10.2s Rwlock parallel
[ ] 319 0 0 319 / 512 10.3s Rwlock parallel
[ ] 326 0 0 326 / 512 10.4s Rwlock parallel
[ ] 328 0 0 328 / 512 10.5s Rwlock parallel
[ ] 334 0 0 334 / 512 10.7s Rwlock parallel
[ ] 341 0 0 341 / 512 10.8s Rwlock parallel
[ ] 348 0 0 348 / 512 10.9s Rwlock parallel
[ ] 353 0 0 353 / 512 11.1s Rwlock parallel
[ ] 361 0 0 361 / 512 11.2s Rwlock parallel
[ ] 362 0 0 362 / 512 11.3s Rwlock parallel
[ ] 365 0 0 365 / 512 11.5s Rwlock parallel
[ ] 370 0 0 370 / 512 11.6s Rwlock parallel
[ ] 374 0 0 374 / 512 11.7s Rwlock parallel
[ ] 382 0 0 382 / 512 11.9s Rwlock parallel
[ ] 388 0 0 388 / 512 12.0s Rwlock parallel
[ ] 395 0 0 395 / 512 12.1s Rwlock parallel
[ ] 396 0 0 396 / 512 12.2s Rwlock parallel
[ ] 402 0 0 402 / 512 12.3s Rwlock parallel
[ ] 410 0 0 410 / 512 12.4s Rwlock parallel
[ ] 417 0 0 417 / 512 12.5s Rwlock parallel
[ ] 424 0 0 424 / 512 12.6s Rwlock parallel
[ ] 425 0 0 425 / 512 12.7s Rwlock parallel
[ ] 430 0 0 430 / 512 12.9s Rwlock parallel
[ ] 435 0 0 435 / 512 13.0s Rwlock parallel
[ ] 442 0 0 442 / 512 13.1s Rwlock parallel
[ ] 446 0 0 446 / 512 13.2s Rwlock parallel
[ ] 454 0 0 454 / 512 13.3s Rwlock parallel
[ ] 460 0 0 460 / 512 13.4s Rwlock parallel
[ ] 463 0 0 463 / 512 13.6s Rwlock parallel
[ ] 464 0 0 464 / 512 13.7s Rwlock parallel
[ ] 469 0 0 469 / 512 13.8s Rwlock parallel
[ ] 475 0 0 475 / 512 13.9s Rwlock parallel
[ ] 482 0 0 482 / 512 14.0s Rwlock parallel
[ ] 489 0 0 489 / 512 14.1s Rwlock parallel
[ ] 496 0 0 496 / 512 14.2s Rwlock parallel
[ ] 499 0 0 499 / 512 14.3s Rwlock parallel
[ ] 506 0 0 506 / 512 14.4s Rwlock parallel
[ ] 510 0 0 510 / 512 14.6s Rwlock parallel
[ ] 512 0 0 512 / 512 14.7s Rwlock parallel
[✓] 512 0 0 512 / 512 14.7s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 2789900230258215885
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
[ ] 7 0 0 7 / 32 0.1s Rwlock parallel
[ ] 8 0 0 8 / 32 0.2s Rwlock parallel
[ ] 16 0 0 16 / 32 0.3s Rwlock parallel
[ ] 17 0 0 17 / 32 0.5s Rwlock parallel
[ ] 24 0 0 24 / 32 0.6s Rwlock parallel
[ ] 31 0 0 31 / 32 0.8s Rwlock parallel
[✓] 32 0 0 32 / 32 0.8s Rwlock parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_htbl.exe)
random seed: 1089129881890031990
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
[ ] 2 0 0 2 / 32 0.1s Htbl parallel
[ ] 5 0 0 5 / 32 0.3s Htbl parallel
[ ] 7 0 0 7 / 32 0.4s Htbl parallel
[ ] 10 0 0 10 / 32 0.5s Htbl parallel
[ ] 14 0 0 14 / 32 0.6s Htbl parallel
[ ] 15 0 0 15 / 32 0.8s Htbl parallel
[ ] 18 0 0 18 / 32 0.9s Htbl parallel
[ ] 21 0 0 21 / 32 1.0s Htbl parallel
[ ] 24 0 0 24 / 32 1.1s Htbl parallel
[ ] 27 0 0 27 / 32 1.2s Htbl parallel
[ ] 29 0 0 29 / 32 1.4s Htbl parallel
[ ] 32 0 0 32 / 32 1.5s Htbl parallel
[✓] 32 0 0 32 / 32 1.5s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 142827946545980238
generated error fail pass / total time test name
[ ] 0 0 0 0 / 64 0.0s Htbl sequential
[✓] 64 0 0 64 / 64 0.0s Htbl sequential
[ ] 0 0 0 0 / 64 0.0s Htbl parallel
[ ] 2 0 0 2 / 64 0.1s Htbl parallel
[ ] 3 0 0 3 / 64 0.2s Htbl parallel
[ ] 6 0 0 6 / 64 0.4s Htbl parallel
[ ] 9 0 0 9 / 64 0.5s Htbl parallel
[ ] 12 0 0 12 / 64 0.6s Htbl parallel
[ ] 14 0 0 14 / 64 0.7s Htbl parallel
[ ] 17 0 0 17 / 64 0.8s Htbl parallel
[ ] 19 0 0 19 / 64 0.9s Htbl parallel
[ ] 22 0 0 22 / 64 1.1s Htbl parallel
[ ] 25 0 0 25 / 64 1.2s Htbl parallel
[ ] 27 0 0 27 / 64 1.4s Htbl parallel
[ ] 30 0 0 30 / 64 1.5s Htbl parallel
[ ] 32 0 0 32 / 64 1.7s Htbl parallel
[ ] 36 0 0 36 / 64 1.8s Htbl parallel
[ ] 39 0 0 39 / 64 2.0s Htbl parallel
[ ] 42 0 0 42 / 64 2.1s Htbl parallel
[ ] 45 0 0 45 / 64 2.2s Htbl parallel
[ ] 47 0 0 47 / 64 2.3s Htbl parallel
[ ] 50 0 0 50 / 64 2.4s Htbl parallel
[ ] 53 0 0 53 / 64 2.6s Htbl parallel
[ ] 56 0 0 56 / 64 2.7s Htbl parallel
[ ] 59 0 0 59 / 64 2.8s Htbl parallel
[ ] 62 0 0 62 / 64 3.0s Htbl parallel
[✓] 64 0 0 64 / 64 3.0s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 2962423381321934276
generated error fail pass / total time test name
[ ] 0 0 0 0 / 128 0.0s Htbl sequential
[✓] 128 0 0 128 / 128 0.0s Htbl sequential
[ ] 0 0 0 0 / 128 0.0s Htbl parallel
[ ] 3 0 0 3 / 128 0.1s Htbl parallel
[ ] 4 0 0 4 / 128 0.3s Htbl parallel
[ ] 7 0 0 7 / 128 0.4s Htbl parallel
[ ] 10 0 0 10 / 128 0.5s Htbl parallel
[ ] 13 0 0 13 / 128 0.6s Htbl parallel
[ ] 17 0 0 17 / 128 0.8s Htbl parallel
[ ] 18 0 0 18 / 128 0.9s Htbl parallel
[ ] 21 0 0 21 / 128 1.0s Htbl parallel
[ ] 25 0 0 25 / 128 1.1s Htbl parallel
[ ] 28 0 0 28 / 128 1.2s Htbl parallel
[ ] 32 0 0 32 / 128 1.3s Htbl parallel
[ ] 34 0 0 34 / 128 1.4s Htbl parallel
[ ] 37 0 0 37 / 128 1.5s Htbl parallel
[ ] 38 0 0 38 / 128 1.6s Htbl parallel
[ ] 39 0 0 39 / 128 1.9s Htbl parallel
[ ] 42 0 0 42 / 128 2.0s Htbl parallel
[ ] 46 0 0 46 / 128 2.1s Htbl parallel
[ ] 50 0 0 50 / 128 2.2s Htbl parallel
[ ] 53 0 0 53 / 128 2.3s Htbl parallel
[ ] 56 0 0 56 / 128 2.5s Htbl parallel
[ ] 59 0 0 59 / 128 2.6s Htbl parallel
[ ] 62 0 0 62 / 128 2.8s Htbl parallel
[ ] 66 0 0 66 / 128 2.9s Htbl parallel
[ ] 69 0 0 69 / 128 3.1s Htbl parallel
[ ] 70 0 0 70 / 128 3.2s Htbl parallel
[ ] 73 0 0 73 / 128 3.4s Htbl parallel
[ ] 76 0 0 76 / 128 3.5s Htbl parallel
[ ] 80 0 0 80 / 128 3.6s Htbl parallel
[ ] 84 0 0 84 / 128 3.9s Htbl parallel
[ ] 88 0 0 88 / 128 4.0s Htbl parallel
[ ] 90 0 0 90 / 128 4.2s Htbl parallel
[ ] 93 0 0 93 / 128 4.3s Htbl parallel
[ ] 97 0 0 97 / 128 4.4s Htbl parallel
[ ] 101 0 0 101 / 128 4.5s Htbl parallel
[ ] 104 0 0 104 / 128 4.6s Htbl parallel
[ ] 108 0 0 108 / 128 4.8s Htbl parallel
[ ] 111 0 0 111 / 128 4.9s Htbl parallel
[ ] 114 0 0 114 / 128 5.0s Htbl parallel
[ ] 116 0 0 116 / 128 5.2s Htbl parallel
[ ] 120 0 0 120 / 128 5.3s Htbl parallel
[ ] 122 0 0 122 / 128 5.4s Htbl parallel
[ ] 125 0 0 125 / 128 5.5s Htbl parallel
[✓] 128 0 0 128 / 128 5.6s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 2866001833048285247
generated error fail pass / total time test name
[ ] 0 0 0 0 / 256 0.0s Htbl sequential
[✓] 256 0 0 256 / 256 0.0s Htbl sequential
[ ] 0 0 0 0 / 256 0.0s Htbl parallel
[ ] 2 0 0 2 / 256 0.2s Htbl parallel
[ ] 5 0 0 5 / 256 0.3s Htbl parallel
[ ] 6 0 0 6 / 256 0.5s Htbl parallel
[ ] 10 0 0 10 / 256 0.6s Htbl parallel
[ ] 13 0 0 13 / 256 0.7s Htbl parallel
[ ] 15 0 0 15 / 256 0.9s Htbl parallel
[ ] 19 0 0 19 / 256 1.0s Htbl parallel
[ ] 22 0 0 22 / 256 1.1s Htbl parallel
[ ] 26 0 0 26 / 256 1.2s Htbl parallel
[ ] 30 0 0 30 / 256 1.4s Htbl parallel
[ ] 33 0 0 33 / 256 1.5s Htbl parallel
[ ] 36 0 0 36 / 256 1.6s Htbl parallel
[ ] 40 0 0 40 / 256 1.7s Htbl parallel
[ ] 41 0 0 41 / 256 1.9s Htbl parallel
[ ] 45 0 0 45 / 256 2.1s Htbl parallel
[ ] 47 0 0 47 / 256 2.3s Htbl parallel
[ ] 50 0 0 50 / 256 2.5s Htbl parallel
[ ] 54 0 0 54 / 256 2.6s Htbl parallel
[ ] 58 0 0 58 / 256 2.7s Htbl parallel
[ ] 61 0 0 61 / 256 2.8s Htbl parallel
[ ] 63 0 0 63 / 256 3.0s Htbl parallel
[ ] 65 0 0 65 / 256 3.1s Htbl parallel
[ ] 68 0 0 68 / 256 3.2s Htbl parallel
[ ] 72 0 0 72 / 256 3.3s Htbl parallel
[ ] 76 0 0 76 / 256 3.4s Htbl parallel
[ ] 80 0 0 80 / 256 3.5s Htbl parallel
[ ] 83 0 0 83 / 256 3.6s Htbl parallel
[ ] 86 0 0 86 / 256 3.8s Htbl parallel
[ ] 89 0 0 89 / 256 3.9s Htbl parallel
[ ] 92 0 0 92 / 256 4.0s Htbl parallel
[ ] 95 0 0 95 / 256 4.1s Htbl parallel
[ ] 98 0 0 98 / 256 4.4s Htbl parallel
[ ] 101 0 0 101 / 256 4.5s Htbl parallel
[ ] 105 0 0 105 / 256 4.6s Htbl parallel
[ ] 109 0 0 109 / 256 4.8s Htbl parallel
[ ] 113 0 0 113 / 256 4.9s Htbl parallel
[ ] 116 0 0 116 / 256 5.0s Htbl parallel
[ ] 120 0 0 120 / 256 5.1s Htbl parallel
[ ] 122 0 0 122 / 256 5.3s Htbl parallel
[ ] 125 0 0 125 / 256 5.4s Htbl parallel
[ ] 129 0 0 129 / 256 5.5s Htbl parallel
[ ] 132 0 0 132 / 256 5.6s Htbl parallel
[ ] 135 0 0 135 / 256 5.8s Htbl parallel
[ ] 139 0 0 139 / 256 5.9s Htbl parallel
[ ] 140 0 0 140 / 256 6.0s Htbl parallel
[ ] 144 0 0 144 / 256 6.2s Htbl parallel
[ ] 148 0 0 148 / 256 6.3s Htbl parallel
[ ] 151 0 0 151 / 256 6.4s Htbl parallel
[ ] 154 0 0 154 / 256 6.6s Htbl parallel
[ ] 157 0 0 157 / 256 6.8s Htbl parallel
[ ] 158 0 0 158 / 256 7.0s Htbl parallel
[ ] 162 0 0 162 / 256 7.1s Htbl parallel
[ ] 165 0 0 165 / 256 7.2s Htbl parallel
[ ] 167 0 0 167 / 256 7.3s Htbl parallel
[ ] 170 0 0 170 / 256 7.4s Htbl parallel
[ ] 174 0 0 174 / 256 7.7s Htbl parallel
[ ] 178 0 0 178 / 256 7.8s Htbl parallel
[ ] 180 0 0 180 / 256 7.9s Htbl parallel
[ ] 184 0 0 184 / 256 8.1s Htbl parallel
[ ] 187 0 0 187 / 256 8.2s Htbl parallel
[ ] 190 0 0 190 / 256 8.3s Htbl parallel
[ ] 194 0 0 194 / 256 8.4s Htbl parallel
[ ] 198 0 0 198 / 256 8.5s Htbl parallel
[ ] 199 0 0 199 / 256 8.8s Htbl parallel
[ ] 202 0 0 202 / 256 8.9s Htbl parallel
[ ] 203 0 0 203 / 256 9.1s Htbl parallel
[ ] 206 0 0 206 / 256 9.2s Htbl parallel
[ ] 209 0 0 209 / 256 9.3s Htbl parallel
[ ] 211 0 0 211 / 256 9.4s Htbl parallel
[ ] 214 0 0 214 / 256 9.6s Htbl parallel
[ ] 217 0 0 217 / 256 9.7s Htbl parallel
[ ] 220 0 0 220 / 256 9.8s Htbl parallel
[ ] 223 0 0 223 / 256 9.9s Htbl parallel
[ ] 226 0 0 226 / 256 10.0s Htbl parallel
[ ] 230 0 0 230 / 256 10.1s Htbl parallel
[ ] 233 0 0 233 / 256 10.2s Htbl parallel
[ ] 237 0 0 237 / 256 10.4s Htbl parallel
[ ] 241 0 0 241 / 256 10.6s Htbl parallel
[ ] 244 0 0 244 / 256 10.8s Htbl parallel
[ ] 246 0 0 246 / 256 11.0s Htbl parallel
[ ] 250 0 0 250 / 256 11.1s Htbl parallel
[ ] 252 0 0 252 / 256 11.2s Htbl parallel
[ ] 256 0 0 256 / 256 11.4s Htbl parallel
[✓] 256 0 0 256 / 256 11.4s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 3178732765996576706
generated error fail pass / total time test name
[ ] 0 0 0 0 / 512 0.0s Htbl sequential
[✓] 512 0 0 512 / 512 0.0s Htbl sequential
[ ] 0 0 0 0 / 512 0.0s Htbl parallel
[ ] 3 0 0 3 / 512 0.2s Htbl parallel
[ ] 6 0 0 6 / 512 0.3s Htbl parallel
[ ] 9 0 0 9 / 512 0.6s Htbl parallel
[ ] 12 0 0 12 / 512 0.7s Htbl parallel
[ ] 16 0 0 16 / 512 0.8s Htbl parallel
[ ] 18 0 0 18 / 512 1.0s Htbl parallel
[ ] 20 0 0 20 / 512 1.1s Htbl parallel
[ ] 21 0 0 21 / 512 1.2s Htbl parallel
[ ] 24 0 0 24 / 512 1.3s Htbl parallel
[ ] 27 0 0 27 / 512 1.4s Htbl parallel
[ ] 31 0 0 31 / 512 1.5s Htbl parallel
[ ] 33 0 0 33 / 512 1.7s Htbl parallel
[ ] 37 0 0 37 / 512 1.8s Htbl parallel
[ ] 40 0 0 40 / 512 1.9s Htbl parallel
[ ] 44 0 0 44 / 512 2.0s Htbl parallel
[ ] 48 0 0 48 / 512 2.2s Htbl parallel
[ ] 51 0 0 51 / 512 2.3s Htbl parallel
[ ] 54 0 0 54 / 512 2.4s Htbl parallel
[ ] 55 0 0 55 / 512 2.5s Htbl parallel
[ ] 58 0 0 58 / 512 2.6s Htbl parallel
[ ] 62 0 0 62 / 512 2.8s Htbl parallel
[ ] 66 0 0 66 / 512 2.9s Htbl parallel
[ ] 69 0 0 69 / 512 3.0s Htbl parallel
[ ] 71 0 0 71 / 512 3.1s Htbl parallel
[ ] 73 0 0 73 / 512 3.2s Htbl parallel
[ ] 75 0 0 75 / 512 3.4s Htbl parallel
[ ] 78 0 0 78 / 512 3.6s Htbl parallel
[ ] 82 0 0 82 / 512 3.7s Htbl parallel
[ ] 84 0 0 84 / 512 3.9s Htbl parallel
[ ] 87 0 0 87 / 512 4.0s Htbl parallel
[ ] 90 0 0 90 / 512 4.3s Htbl parallel
[ ] 94 0 0 94 / 512 4.4s Htbl parallel
[ ] 98 0 0 98 / 512 4.5s Htbl parallel
[ ] 101 0 0 101 / 512 4.6s Htbl parallel
[ ] 106 0 0 106 / 512 4.7s Htbl parallel
[ ] 109 0 0 109 / 512 5.0s Htbl parallel
[ ] 114 0 0 114 / 512 5.1s Htbl parallel
[ ] 118 0 0 118 / 512 5.2s Htbl parallel
[ ] 123 0 0 123 / 512 5.3s Htbl parallel
[ ] 128 0 0 128 / 512 5.4s Htbl parallel
[ ] 132 0 0 132 / 512 5.5s Htbl parallel
[ ] 136 0 0 136 / 512 5.6s Htbl parallel
[ ] 141 0 0 141 / 512 5.8s Htbl parallel
[ ] 146 0 0 146 / 512 5.9s Htbl parallel
[ ] 151 0 0 151 / 512 6.1s Htbl parallel
[ ] 155 0 0 155 / 512 6.2s Htbl parallel
[ ] 159 0 0 159 / 512 6.4s Htbl parallel
[ ] 162 0 0 162 / 512 6.5s Htbl parallel
[ ] 168 0 0 168 / 512 6.7s Htbl parallel
[ ] 169 0 0 169 / 512 6.9s Htbl parallel
[ ] 175 0 0 175 / 512 7.0s Htbl parallel
[ ] 178 0 0 178 / 512 7.1s Htbl parallel
[ ] 182 0 0 182 / 512 7.2s Htbl parallel
[ ] 185 0 0 185 / 512 7.3s Htbl parallel
[ ] 189 0 0 189 / 512 7.5s Htbl parallel
[ ] 193 0 0 193 / 512 7.6s Htbl parallel
[ ] 200 0 0 200 / 512 7.8s Htbl parallel
[ ] 204 0 0 204 / 512 7.9s Htbl parallel
[ ] 207 0 0 207 / 512 8.0s Htbl parallel
[ ] 210 0 0 210 / 512 8.1s Htbl parallel
[ ] 216 0 0 216 / 512 8.2s Htbl parallel
[ ] 220 0 0 220 / 512 8.4s Htbl parallel
[ ] 223 0 0 223 / 512 8.6s Htbl parallel
[ ] 229 0 0 229 / 512 8.8s Htbl parallel
[ ] 231 0 0 231 / 512 8.9s Htbl parallel
[ ] 236 0 0 236 / 512 9.0s Htbl parallel
[ ] 243 0 0 243 / 512 9.2s Htbl parallel
[ ] 246 0 0 246 / 512 9.3s Htbl parallel
[ ] 251 0 0 251 / 512 9.4s Htbl parallel
[ ] 256 0 0 256 / 512 9.5s Htbl parallel
[ ] 260 0 0 260 / 512 9.7s Htbl parallel
[ ] 266 0 0 266 / 512 9.9s Htbl parallel
[ ] 269 0 0 269 / 512 10.0s Htbl parallel
[ ] 274 0 0 274 / 512 10.1s Htbl parallel
[ ] 280 0 0 280 / 512 10.2s Htbl parallel
[ ] 286 0 0 286 / 512 10.4s Htbl parallel
[ ] 292 0 0 292 / 512 10.5s Htbl parallel
[ ] 296 0 0 296 / 512 10.6s Htbl parallel
[ ] 301 0 0 301 / 512 10.8s Htbl parallel
[ ] 305 0 0 305 / 512 10.9s Htbl parallel
[ ] 311 0 0 311 / 512 11.0s Htbl parallel
[ ] 317 0 0 317 / 512 11.1s Htbl parallel
[ ] 321 0 0 321 / 512 11.2s Htbl parallel
[ ] 326 0 0 326 / 512 11.3s Htbl parallel
[ ] 333 0 0 333 / 512 11.5s Htbl parallel
[ ] 338 0 0 338 / 512 11.6s Htbl parallel
[ ] 345 0 0 345 / 512 11.7s Htbl parallel
[ ] 350 0 0 350 / 512 11.8s Htbl parallel
[ ] 357 0 0 357 / 512 11.9s Htbl parallel
[ ] 365 0 0 365 / 512 12.0s Htbl parallel
[ ] 372 0 0 372 / 512 12.1s Htbl parallel
[ ] 377 0 0 377 / 512 12.2s Htbl parallel
[ ] 380 0 0 380 / 512 12.4s Htbl parallel
[ ] 387 0 0 387 / 512 12.5s Htbl parallel
[ ] 390 0 0 390 / 512 12.6s Htbl parallel
[ ] 397 0 0 397 / 512 12.8s Htbl parallel
[ ] 403 0 0 403 / 512 12.9s Htbl parallel
[ ] 410 0 0 410 / 512 13.0s Htbl parallel
[ ] 415 0 0 415 / 512 13.2s Htbl parallel
[ ] 416 0 0 416 / 512 13.4s Htbl parallel
[ ] 420 0 0 420 / 512 13.6s Htbl parallel
[ ] 427 0 0 427 / 512 13.7s Htbl parallel
[ ] 432 0 0 432 / 512 13.8s Htbl parallel
[ ] 435 0 0 435 / 512 14.0s Htbl parallel
[ ] 443 0 0 443 / 512 14.1s Htbl parallel
[ ] 444 0 0 444 / 512 14.2s Htbl parallel
[ ] 452 0 0 452 / 512 14.3s Htbl parallel
[ ] 458 0 0 458 / 512 14.4s Htbl parallel
[ ] 462 0 0 462 / 512 14.5s Htbl parallel
[ ] 469 0 0 469 / 512 14.6s Htbl parallel
[ ] 475 0 0 475 / 512 14.7s Htbl parallel
[ ] 481 0 0 481 / 512 14.8s Htbl parallel
[ ] 488 0 0 488 / 512 14.9s Htbl parallel
[ ] 491 0 0 491 / 512 15.0s Htbl parallel
[ ] 494 0 0 494 / 512 15.2s Htbl parallel
[ ] 498 0 0 498 / 512 15.3s Htbl parallel
[ ] 505 0 0 505 / 512 15.4s Htbl parallel
[ ] 510 0 0 510 / 512 15.5s Htbl parallel
[ ] 512 0 0 512 / 512 15.6s Htbl parallel
[✓] 512 0 0 512 / 512 15.6s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 3518919622766602044
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
[ ] 3 0 0 3 / 32 0.1s Htbl parallel
[ ] 11 0 0 11 / 32 0.2s Htbl parallel
[ ] 16 0 0 16 / 32 0.6s Htbl parallel
[ ] 22 0 0 22 / 32 0.7s Htbl parallel
[ ] 28 0 0 28 / 32 0.8s Htbl parallel
[✓] 32 0 0 32 / 32 0.9s Htbl parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_mpscq.exe)
random seed: 1376585805956365693
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
[ ] 3 0 0 3 / 32 0.1s Mpscq parallel
[ ] 6 0 0 6 / 32 0.2s Mpscq parallel
[ ] 9 0 0 9 / 32 0.4s Mpscq parallel
[ ] 12 0 0 12 / 32 0.6s Mpscq parallel
[ ] 15 0 0 15 / 32 0.7s Mpscq parallel
[ ] 18 0 0 18 / 32 0.8s Mpscq parallel
[ ] 21 0 0 21 / 32 0.9s Mpscq parallel
[ ] 24 0 0 24 / 32 1.0s Mpscq parallel
[ ] 27 0 0 27 / 32 1.2s Mpscq parallel
[ ] 30 0 0 30 / 32 1.3s Mpscq parallel
[✓] 32 0 0 32 / 32 1.4s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 1660978935619824642
generated error fail pass / total time test name
[ ] 0 0 0 0 / 64 0.0s Mpscq sequential
[✓] 64 0 0 64 / 64 0.0s Mpscq sequential
[ ] 0 0 0 0 / 64 0.0s Mpscq parallel
[ ] 2 0 0 2 / 64 0.2s Mpscq parallel
[ ] 5 0 0 5 / 64 0.3s Mpscq parallel
[ ] 8 0 0 8 / 64 0.4s Mpscq parallel
[ ] 11 0 0 11 / 64 0.6s Mpscq parallel
[ ] 13 0 0 13 / 64 0.8s Mpscq parallel
[ ] 15 0 0 15 / 64 0.9s Mpscq parallel
[ ] 19 0 0 19 / 64 1.0s Mpscq parallel
[ ] 22 0 0 22 / 64 1.2s Mpscq parallel
[ ] 25 0 0 25 / 64 1.3s Mpscq parallel
[ ] 28 0 0 28 / 64 1.6s Mpscq parallel
[ ] 31 0 0 31 / 64 1.7s Mpscq parallel
[ ] 34 0 0 34 / 64 1.8s Mpscq parallel
[ ] 38 0 0 38 / 64 1.9s Mpscq parallel
[ ] 41 0 0 41 / 64 2.0s Mpscq parallel
[ ] 44 0 0 44 / 64 2.2s Mpscq parallel
[ ] 46 0 0 46 / 64 2.3s Mpscq parallel
[ ] 48 0 0 48 / 64 2.6s Mpscq parallel
[ ] 50 0 0 50 / 64 2.7s Mpscq parallel
[ ] 53 0 0 53 / 64 2.9s Mpscq parallel
[ ] 56 0 0 56 / 64 3.6s Mpscq parallel
[ ] 59 0 0 59 / 64 3.7s Mpscq parallel
[ ] 62 0 0 62 / 64 3.8s Mpscq parallel
[ ] 63 0 0 63 / 64 4.0s Mpscq parallel
[✓] 64 0 0 64 / 64 4.0s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 3058534262086979029
generated error fail pass / total time test name
[ ] 0 0 0 0 / 128 0.0s Mpscq sequential
[✓] 128 0 0 128 / 128 0.0s Mpscq sequential
[ ] 0 0 0 0 / 128 0.0s Mpscq parallel
[ ] 3 0 0 3 / 128 0.1s Mpscq parallel
[ ] 5 0 0 5 / 128 0.2s Mpscq parallel
[ ] 8 0 0 8 / 128 0.3s Mpscq parallel
[ ] 9 0 0 9 / 128 0.5s Mpscq parallel
[ ] 13 0 0 13 / 128 0.6s Mpscq parallel
[ ] 16 0 0 16 / 128 0.8s Mpscq parallel
[ ] 20 0 0 20 / 128 0.9s Mpscq parallel
[ ] 23 0 0 23 / 128 1.0s Mpscq parallel
[ ] 26 0 0 26 / 128 1.1s Mpscq parallel
[ ] 30 0 0 30 / 128 1.3s Mpscq parallel
[ ] 33 0 0 33 / 128 1.4s Mpscq parallel
[ ] 34 0 0 34 / 128 1.5s Mpscq parallel
[ ] 37 0 0 37 / 128 1.7s Mpscq parallel
[ ] 39 0 0 39 / 128 1.8s Mpscq parallel
[ ] 43 0 0 43 / 128 2.0s Mpscq parallel
[ ] 45 0 0 45 / 128 2.2s Mpscq parallel
[ ] 46 0 0 46 / 128 2.4s Mpscq parallel
[ ] 50 0 0 50 / 128 2.5s Mpscq parallel
[ ] 54 0 0 54 / 128 2.7s Mpscq parallel
[ ] 56 0 0 56 / 128 2.8s Mpscq parallel
[ ] 58 0 0 58 / 128 2.9s Mpscq parallel
[ ] 61 0 0 61 / 128 3.0s Mpscq parallel
[ ] 65 0 0 65 / 128 3.3s Mpscq parallel
[ ] 68 0 0 68 / 128 3.4s Mpscq parallel
[ ] 71 0 0 71 / 128 3.5s Mpscq parallel
[ ] 74 0 0 74 / 128 3.6s Mpscq parallel
[ ] 77 0 0 77 / 128 3.9s Mpscq parallel
[ ] 80 0 0 80 / 128 4.0s Mpscq parallel
[ ] 83 0 0 83 / 128 4.2s Mpscq parallel
[ ] 85 0 0 85 / 128 4.6s Mpscq parallel
[ ] 87 0 0 87 / 128 4.7s Mpscq parallel
[ ] 90 0 0 90 / 128 4.9s Mpscq parallel
[ ] 94 0 0 94 / 128 5.0s Mpscq parallel
[ ] 98 0 0 98 / 128 5.1s Mpscq parallel
[ ] 102 0 0 102 / 128 5.3s Mpscq parallel
[ ] 105 0 0 105 / 128 5.4s Mpscq parallel
[ ] 107 0 0 107 / 128 5.6s Mpscq parallel
[ ] 109 0 0 109 / 128 5.8s Mpscq parallel
[ ] 112 0 0 112 / 128 5.9s Mpscq parallel
[ ] 115 0 0 115 / 128 6.1s Mpscq parallel
[ ] 119 0 0 119 / 128 6.2s Mpscq parallel
[ ] 123 0 0 123 / 128 6.3s Mpscq parallel
[ ] 126 0 0 126 / 128 6.4s Mpscq parallel
[✓] 128 0 0 128 / 128 6.5s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 1271396722077804228
generated error fail pass / total time test name
[ ] 0 0 0 0 / 256 0.0s Mpscq sequential
[✓] 256 0 0 256 / 256 0.0s Mpscq sequential
[ ] 0 0 0 0 / 256 0.0s Mpscq parallel
[ ] 4 0 0 4 / 256 0.1s Mpscq parallel
[ ] 8 0 0 8 / 256 0.2s Mpscq parallel
[ ] 13 0 0 13 / 256 0.4s Mpscq parallel
[ ] 17 0 0 17 / 256 0.5s Mpscq parallel
[ ] 19 0 0 19 / 256 0.6s Mpscq parallel
[ ] 23 0 0 23 / 256 0.7s Mpscq parallel
[ ] 27 0 0 27 / 256 0.8s Mpscq parallel
[ ] 30 0 0 30 / 256 1.0s Mpscq parallel
[ ] 32 0 0 32 / 256 1.1s Mpscq parallel
[ ] 36 0 0 36 / 256 1.2s Mpscq parallel
[ ] 39 0 0 39 / 256 1.4s Mpscq parallel
[ ] 43 0 0 43 / 256 1.5s Mpscq parallel
[ ] 47 0 0 47 / 256 1.6s Mpscq parallel
[ ] 51 0 0 51 / 256 1.8s Mpscq parallel
[ ] 54 0 0 54 / 256 1.9s Mpscq parallel
[ ] 57 0 0 57 / 256 2.1s Mpscq parallel
[ ] 58 0 0 58 / 256 2.3s Mpscq parallel
[ ] 61 0 0 61 / 256 2.4s Mpscq parallel
[ ] 64 0 0 64 / 256 2.5s Mpscq parallel
[ ] 65 0 0 65 / 256 2.7s Mpscq parallel
[ ] 69 0 0 69 / 256 2.8s Mpscq parallel
[ ] 71 0 0 71 / 256 3.0s Mpscq parallel
[ ] 75 0 0 75 / 256 3.2s Mpscq parallel
[ ] 78 0 0 78 / 256 3.3s Mpscq parallel
[ ] 82 0 0 82 / 256 3.4s Mpscq parallel
[ ] 86 0 0 86 / 256 3.6s Mpscq parallel
[ ] 90 0 0 90 / 256 3.7s Mpscq parallel
[ ] 94 0 0 94 / 256 3.8s Mpscq parallel
[ ] 98 0 0 98 / 256 3.9s Mpscq parallel
[ ] 99 0 0 99 / 256 4.1s Mpscq parallel
[ ] 104 0 0 104 / 256 4.2s Mpscq parallel
[ ] 108 0 0 108 / 256 4.4s Mpscq parallel
[ ] 111 0 0 111 / 256 4.5s Mpscq parallel
[ ] 115 0 0 115 / 256 4.6s Mpscq parallel
[ ] 118 0 0 118 / 256 4.7s Mpscq parallel
[ ] 121 0 0 121 / 256 4.8s Mpscq parallel
[ ] 125 0 0 125 / 256 4.9s Mpscq parallel
[ ] 129 0 0 129 / 256 5.0s Mpscq parallel
[ ] 131 0 0 131 / 256 5.2s Mpscq parallel
[ ] 135 0 0 135 / 256 5.3s Mpscq parallel
[ ] 138 0 0 138 / 256 5.4s Mpscq parallel
[ ] 142 0 0 142 / 256 5.5s Mpscq parallel
[ ] 146 0 0 146 / 256 5.6s Mpscq parallel
[ ] 150 0 0 150 / 256 5.8s Mpscq parallel
[ ] 154 0 0 154 / 256 5.9s Mpscq parallel
[ ] 155 0 0 155 / 256 6.1s Mpscq parallel
[ ] 158 0 0 158 / 256 6.3s Mpscq parallel
[ ] 162 0 0 162 / 256 6.4s Mpscq parallel
[ ] 166 0 0 166 / 256 6.5s Mpscq parallel
[ ] 170 0 0 170 / 256 6.6s Mpscq parallel
[ ] 174 0 0 174 / 256 6.7s Mpscq parallel
[ ] 177 0 0 177 / 256 6.8s Mpscq parallel
[ ] 178 0 0 178 / 256 7.0s Mpscq parallel
[ ] 181 0 0 181 / 256 7.1s Mpscq parallel
[ ] 185 0 0 185 / 256 7.2s Mpscq parallel
[ ] 187 0 0 187 / 256 7.4s Mpscq parallel
[ ] 190 0 0 190 / 256 7.6s Mpscq parallel
[ ] 193 0 0 193 / 256 7.7s Mpscq parallel
[ ] 197 0 0 197 / 256 7.8s Mpscq parallel
[ ] 198 0 0 198 / 256 8.0s Mpscq parallel
[ ] 200 0 0 200 / 256 8.1s Mpscq parallel
[ ] 203 0 0 203 / 256 8.2s Mpscq parallel
[ ] 206 0 0 206 / 256 8.3s Mpscq parallel
[ ] 209 0 0 209 / 256 8.4s Mpscq parallel
[ ] 213 0 0 213 / 256 8.6s Mpscq parallel
[ ] 214 0 0 214 / 256 8.7s Mpscq parallel
[ ] 218 0 0 218 / 256 8.8s Mpscq parallel
[ ] 219 0 0 219 / 256 9.0s Mpscq parallel
[ ] 223 0 0 223 / 256 9.1s Mpscq parallel
[ ] 227 0 0 227 / 256 9.2s Mpscq parallel
[ ] 231 0 0 231 / 256 9.4s Mpscq parallel
[ ] 233 0 0 233 / 256 9.5s Mpscq parallel
[ ] 237 0 0 237 / 256 9.6s Mpscq parallel
[ ] 239 0 0 239 / 256 9.7s Mpscq parallel
[ ] 242 0 0 242 / 256 9.8s Mpscq parallel
[ ] 246 0 0 246 / 256 10.0s Mpscq parallel
[ ] 247 0 0 247 / 256 10.1s Mpscq parallel
[ ] 249 0 0 249 / 256 10.2s Mpscq parallel
[ ] 252 0 0 252 / 256 10.4s Mpscq parallel
[ ] 255 0 0 255 / 256 10.5s Mpscq parallel
[✓] 256 0 0 256 / 256 10.5s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 3724031140150433312
generated error fail pass / total time test name
[ ] 0 0 0 0 / 512 0.0s Mpscq sequential
[✓] 512 0 0 512 / 512 0.0s Mpscq sequential
[ ] 0 0 0 0 / 512 0.0s Mpscq parallel
[ ] 4 0 0 4 / 512 0.1s Mpscq parallel
[ ] 6 0 0 6 / 512 0.3s Mpscq parallel
[ ] 10 0 0 10 / 512 0.4s Mpscq parallel
[ ] 13 0 0 13 / 512 0.5s Mpscq parallel
[ ] 17 0 0 17 / 512 0.6s Mpscq parallel
[ ] 20 0 0 20 / 512 0.8s Mpscq parallel
[ ] 24 0 0 24 / 512 0.9s Mpscq parallel
[ ] 26 0 0 26 / 512 1.1s Mpscq parallel
[ ] 30 0 0 30 / 512 1.2s Mpscq parallel
[ ] 33 0 0 33 / 512 1.4s Mpscq parallel
[ ] 37 0 0 37 / 512 1.7s Mpscq parallel
[ ] 40 0 0 40 / 512 1.8s Mpscq parallel
[ ] 43 0 0 43 / 512 2.0s Mpscq parallel
[ ] 47 0 0 47 / 512 2.1s Mpscq parallel
[ ] 50 0 0 50 / 512 2.2s Mpscq parallel
[ ] 54 0 0 54 / 512 2.3s Mpscq parallel
[ ] 58 0 0 58 / 512 2.5s Mpscq parallel
[ ] 61 0 0 61 / 512 2.6s Mpscq parallel
[ ] 65 0 0 65 / 512 2.7s Mpscq parallel
[ ] 68 0 0 68 / 512 2.8s Mpscq parallel
[ ] 72 0 0 72 / 512 2.9s Mpscq parallel
[ ] 76 0 0 76 / 512 3.1s Mpscq parallel
[ ] 79 0 0 79 / 512 3.2s Mpscq parallel
[ ] 84 0 0 84 / 512 3.3s Mpscq parallel
[ ] 85 0 0 85 / 512 3.5s Mpscq parallel
[ ] 90 0 0 90 / 512 3.7s Mpscq parallel
[ ] 93 0 0 93 / 512 3.8s Mpscq parallel
[ ] 99 0 0 99 / 512 3.9s Mpscq parallel
[ ] 105 0 0 105 / 512 4.0s Mpscq parallel
[ ] 108 0 0 108 / 512 4.1s Mpscq parallel
[ ] 111 0 0 111 / 512 4.2s Mpscq parallel
[ ] 113 0 0 113 / 512 4.4s Mpscq parallel
[ ] 118 0 0 118 / 512 4.5s Mpscq parallel
[ ] 123 0 0 123 / 512 4.6s Mpscq parallel
[ ] 129 0 0 129 / 512 4.9s Mpscq parallel
[ ] 135 0 0 135 / 512 5.0s Mpscq parallel
[ ] 139 0 0 139 / 512 5.1s Mpscq parallel
[ ] 142 0 0 142 / 512 5.2s Mpscq parallel
[ ] 148 0 0 148 / 512 5.4s Mpscq parallel
[ ] 152 0 0 152 / 512 5.5s Mpscq parallel
[ ] 154 0 0 154 / 512 5.7s Mpscq parallel
[ ] 158 0 0 158 / 512 5.9s Mpscq parallel
[ ] 161 0 0 161 / 512 6.0s Mpscq parallel
[ ] 168 0 0 168 / 512 6.1s Mpscq parallel
[ ] 174 0 0 174 / 512 6.3s Mpscq parallel
[ ] 180 0 0 180 / 512 6.4s Mpscq parallel
[ ] 185 0 0 185 / 512 6.5s Mpscq parallel
[ ] 190 0 0 190 / 512 6.6s Mpscq parallel
[ ] 193 0 0 193 / 512 6.9s Mpscq parallel
[ ] 195 0 0 195 / 512 7.0s Mpscq parallel
[ ] 199 0 0 199 / 512 7.1s Mpscq parallel
[ ] 204 0 0 204 / 512 7.2s Mpscq parallel
[ ] 211 0 0 211 / 512 7.3s Mpscq parallel
[ ] 214 0 0 214 / 512 7.6s Mpscq parallel
[ ] 219 0 0 219 / 512 7.7s Mpscq parallel
[ ] 225 0 0 225 / 512 7.9s Mpscq parallel
[ ] 229 0 0 229 / 512 8.1s Mpscq parallel
[ ] 235 0 0 235 / 512 8.2s Mpscq parallel
[ ] 241 0 0 241 / 512 8.3s Mpscq parallel
[ ] 248 0 0 248 / 512 8.5s Mpscq parallel
[ ] 255 0 0 255 / 512 8.6s Mpscq parallel
[ ] 258 0 0 258 / 512 8.8s Mpscq parallel
[ ] 265 0 0 265 / 512 9.0s Mpscq parallel
[ ] 269 0 0 269 / 512 9.1s Mpscq parallel
[ ] 272 0 0 272 / 512 9.2s Mpscq parallel
[ ] 280 0 0 280 / 512 9.3s Mpscq parallel
[ ] 284 0 0 284 / 512 9.4s Mpscq parallel
[ ] 288 0 0 288 / 512 9.6s Mpscq parallel
[ ] 295 0 0 295 / 512 9.7s Mpscq parallel
[ ] 301 0 0 301 / 512 9.8s Mpscq parallel
[ ] 309 0 0 309 / 512 9.9s Mpscq parallel
[ ] 315 0 0 315 / 512 10.1s Mpscq parallel
[ ] 322 0 0 322 / 512 10.2s Mpscq parallel
[ ] 329 0 0 329 / 512 10.3s Mpscq parallel
[ ] 335 0 0 335 / 512 10.4s Mpscq parallel
[ ] 339 0 0 339 / 512 10.6s Mpscq parallel
[ ] 341 0 0 341 / 512 10.7s Mpscq parallel
[ ] 347 0 0 347 / 512 10.8s Mpscq parallel
[ ] 348 0 0 348 / 512 11.0s Mpscq parallel
[ ] 353 0 0 353 / 512 11.1s Mpscq parallel
[ ] 360 0 0 360 / 512 11.2s Mpscq parallel
[ ] 368 0 0 368 / 512 11.3s Mpscq parallel
[ ] 375 0 0 375 / 512 11.5s Mpscq parallel
[ ] 381 0 0 381 / 512 11.6s Mpscq parallel
[ ] 389 0 0 389 / 512 11.8s Mpscq parallel
[ ] 395 0 0 395 / 512 11.9s Mpscq parallel
[ ] 401 0 0 401 / 512 12.2s Mpscq parallel
[ ] 409 0 0 409 / 512 12.3s Mpscq parallel
[ ] 415 0 0 415 / 512 12.4s Mpscq parallel
[ ] 421 0 0 421 / 512 12.5s Mpscq parallel
[ ] 425 0 0 425 / 512 12.7s Mpscq parallel
[ ] 426 0 0 426 / 512 12.8s Mpscq parallel
[ ] 428 0 0 428 / 512 13.0s Mpscq parallel
[ ] 433 0 0 433 / 512 13.1s Mpscq parallel
[ ] 437 0 0 437 / 512 13.2s Mpscq parallel
[ ] 445 0 0 445 / 512 13.4s Mpscq parallel
[ ] 449 0 0 449 / 512 13.5s Mpscq parallel
[ ] 457 0 0 457 / 512 13.6s Mpscq parallel
[ ] 462 0 0 462 / 512 13.8s Mpscq parallel
[ ] 468 0 0 468 / 512 13.9s Mpscq parallel
[ ] 475 0 0 475 / 512 14.0s Mpscq parallel
[ ] 480 0 0 480 / 512 14.1s Mpscq parallel
[ ] 482 0 0 482 / 512 14.4s Mpscq parallel
[ ] 488 0 0 488 / 512 14.5s Mpscq parallel
[ ] 493 0 0 493 / 512 14.6s Mpscq parallel
[ ] 497 0 0 497 / 512 14.7s Mpscq parallel
[ ] 503 0 0 503 / 512 14.9s Mpscq parallel
[ ] 512 0 0 512 / 512 15.0s Mpscq parallel
[✓] 512 0 0 512 / 512 15.0s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 4324840482193433839
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
[ ] 3 0 0 3 / 32 0.1s Mpscq parallel
[ ] 7 0 0 7 / 32 0.3s Mpscq parallel
[ ] 13 0 0 13 / 32 0.4s Mpscq parallel
[ ] 20 0 0 20 / 32 0.5s Mpscq parallel
[ ] 23 0 0 23 / 32 0.7s Mpscq parallel
[ ] 27 0 0 27 / 32 0.8s Mpscq parallel
[ ] 29 0 0 29 / 32 0.9s Mpscq parallel
[✓] 32 0 0 32 / 32 0.9s Mpscq parallel
================================================================================
success (ran 2 tests)
(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:
18.33 M/s
operations over time/1 worker, 10% reads with Rwlock:
18.39 M/s
operations over time/1 worker, 10% reads with Sem:
18.57 M/s
operations over time/1 worker, 100% reads with Lock:
25.50 M/s
operations over time/1 worker, 100% reads with Rwlock:
31.70 M/s
operations over time/1 worker, 100% reads with Sem:
29.71 M/s
operations over time/1 worker, 50% reads with Lock:
18.76 M/s
operations over time/1 worker, 50% reads with Rwlock:
17.19 M/s
operations over time/1 worker, 50% reads with Sem:
18.50 M/s
operations over time/1 worker, 90% reads with Lock:
27.13 M/s
operations over time/1 worker, 90% reads with Rwlock:
24.50 M/s
operations over time/1 worker, 90% reads with Sem:
23.13 M/s
operations over time/1 worker, 95% reads with Lock:
23.89 M/s
operations over time/1 worker, 95% reads with Rwlock:
25.61 M/s
operations over time/1 worker, 95% reads with Sem:
25.35 M/s
operations over time/2 workers, 10% reads with Lock:
3.75 M/s
operations over time/2 workers, 10% reads with Rwlock:
3.15 M/s
operations over time/2 workers, 10% reads with Sem:
3.95 M/s
operations over time/2 workers, 100% reads with Lock:
11.80 M/s
operations over time/2 workers, 100% reads with Rwlock:
19.39 M/s
operations over time/2 workers, 100% reads with Sem:
10.91 M/s
operations over time/2 workers, 50% reads with Lock:
4.31 M/s
operations over time/2 workers, 50% reads with Rwlock:
8.06 M/s
operations over time/2 workers, 50% reads with Sem:
7.73 M/s
operations over time/2 workers, 90% reads with Lock:
6.81 M/s
operations over time/2 workers, 90% reads with Rwlock:
6.71 M/s
operations over time/2 workers, 90% reads with Sem:
6.47 M/s
operations over time/2 workers, 95% reads with Lock:
8.23 M/s
operations over time/2 workers, 95% reads with Rwlock:
10.67 M/s
operations over time/2 workers, 95% reads with Sem:
6.75 M/s
operations over time/4 workers, 10% reads with Lock:
1.95 M/s
operations over time/4 workers, 10% reads with Rwlock:
2.12 M/s
operations over time/4 workers, 10% reads with Sem:
1.97 M/s
operations over time/4 workers, 100% reads with Lock:
4.78 M/s
operations over time/4 workers, 100% reads with Rwlock:
20.96 M/s
operations over time/4 workers, 100% reads with Sem:
5.23 M/s
operations over time/4 workers, 50% reads with Lock:
4.48 M/s
operations over time/4 workers, 50% reads with Rwlock:
1.97 M/s
operations over time/4 workers, 50% reads with Sem:
2.01 M/s
operations over time/4 workers, 90% reads with Lock:
4.24 M/s
operations over time/4 workers, 90% reads with Rwlock:
5.11 M/s
operations over time/4 workers, 90% reads with Sem:
6.46 M/s
operations over time/4 workers, 95% reads with Lock:
3.53 M/s
operations over time/4 workers, 95% reads with Rwlock:
12.84 M/s
operations over time/4 workers, 95% reads with Sem:
3.53 M/s
operations over time/8 workers, 10% reads with Lock:
1.17 M/s
operations over time/8 workers, 10% reads with Rwlock:
1.18 M/s
operations over time/8 workers, 10% reads with Sem:
1.61 M/s
operations over time/8 workers, 100% reads with Lock:
2.83 M/s
operations over time/8 workers, 100% reads with Rwlock:
15.21 M/s
operations over time/8 workers, 100% reads with Sem:
2.76 M/s
operations over time/8 workers, 50% reads with Lock:
1.71 M/s
operations over time/8 workers, 50% reads with Rwlock:
1.28 M/s
operations over time/8 workers, 50% reads with Sem:
1.65 M/s
operations over time/8 workers, 90% reads with Lock:
3.59 M/s
operations over time/8 workers, 90% reads with Rwlock:
3.02 M/s
operations over time/8 workers, 90% reads with Sem:
2.43 M/s
operations over time/8 workers, 95% reads with Lock:
2.18 M/s
operations over time/8 workers, 95% reads with Rwlock:
5.20 M/s
operations over time/8 workers, 95% reads with Sem:
1.56 M/s
time per operation/1 worker, 10% reads with Lock:
54.56 ns
time per operation/1 worker, 10% reads with Rwlock:
54.37 ns
time per operation/1 worker, 10% reads with Sem:
53.86 ns
time per operation/1 worker, 100% reads with Lock:
39.70 ns
time per operation/1 worker, 100% reads with Rwlock:
31.55 ns
time per operation/1 worker, 100% reads with Sem:
33.66 ns
time per operation/1 worker, 50% reads with Lock:
53.43 ns
time per operation/1 worker, 50% reads with Rwlock:
58.25 ns
time per operation/1 worker, 50% reads with Sem:
54.14 ns
time per operation/1 worker, 90% reads with Lock:
36.88 ns
time per operation/1 worker, 90% reads with Rwlock:
40.83 ns
time per operation/1 worker, 90% reads with Sem:
43.67 ns
time per operation/1 worker, 95% reads with Lock:
41.97 ns
time per operation/1 worker, 95% reads with Rwlock:
39.17 ns
time per operation/1 worker, 95% reads with Sem:
39.52 ns
time per operation/2 workers, 10% reads with Lock:
533.19 ns
time per operation/2 workers, 10% reads with Rwlock:
634.24 ns
time per operation/2 workers, 10% reads with Sem:
506.05 ns
time per operation/2 workers, 100% reads with Lock:
169.50 ns
time per operation/2 workers, 100% reads with Rwlock:
103.15 ns
time per operation/2 workers, 100% reads with Sem:
183.32 ns
time per operation/2 workers, 50% reads with Lock:
463.67 ns
time per operation/2 workers, 50% reads with Rwlock:
248.22 ns
time per operation/2 workers, 50% reads with Sem:
258.78 ns
time per operation/2 workers, 90% reads with Lock:
293.57 ns
time per operation/2 workers, 90% reads with Rwlock:
298.16 ns
time per operation/2 workers, 90% reads with Sem:
309.30 ns
time per operation/2 workers, 95% reads with Lock:
243.06 ns
time per operation/2 workers, 95% reads with Rwlock:
187.40 ns
time per operation/2 workers, 95% reads with Sem:
296.36 ns
time per operation/4 workers, 10% reads with Lock:
2056.51 ns
time per operation/4 workers, 10% reads with Rwlock:
1882.86 ns
time per operation/4 workers, 10% reads with Sem:
2028.33 ns
time per operation/4 workers, 100% reads with Lock:
837.66 ns
time per operation/4 workers, 100% reads with Rwlock:
190.86 ns
time per operation/4 workers, 100% reads with Sem:
764.83 ns
time per operation/4 workers, 50% reads with Lock:
893.31 ns
time per operation/4 workers, 50% reads with Rwlock:
2027.75 ns
time per operation/4 workers, 50% reads with Sem:
1993.98 ns
time per operation/4 workers, 90% reads with Lock:
942.42 ns
time per operation/4 workers, 90% reads with Rwlock:
782.76 ns
time per operation/4 workers, 90% reads with Sem:
619.55 ns
time per operation/4 workers, 95% reads with Lock:
1133.66 ns
time per operation/4 workers, 95% reads with Rwlock:
311.51 ns
time per operation/4 workers, 95% reads with Sem:
1134.21 ns
time per operation/8 workers, 10% reads with Lock:
6824.00 ns
time per operation/8 workers, 10% reads with Rwlock:
6804.40 ns
time per operation/8 workers, 10% reads with Sem:
4983.58 ns
time per operation/8 workers, 100% reads with Lock:
2828.26 ns
time per operation/8 workers, 100% reads with Rwlock:
526.01 ns
time per operation/8 workers, 100% reads with Sem:
2901.48 ns
time per operation/8 workers, 50% reads with Lock:
4690.92 ns
time per operation/8 workers, 50% reads with Rwlock:
6250.72 ns
time per operation/8 workers, 50% reads with Sem:
4853.15 ns
time per operation/8 workers, 90% reads with Lock:
2230.54 ns
time per operation/8 workers, 90% reads with Rwlock:
2650.31 ns
time per operation/8 workers, 90% reads with Sem:
3287.00 ns
time per operation/8 workers, 95% reads with Lock:
3675.97 ns
time per operation/8 workers, 95% reads with Rwlock:
1538.29 ns
time per operation/8 workers, 95% reads with Sem:
5124.95 ns
(cd _build/default/bench && ./main.exe -brief Picos_stdio)
Picos_stdio:
blocking reads over time/1 worker:
0.16 M/s
blocking reads over time/2 workers:
0.23 M/s
blocking reads over time/4 workers:
0.49 M/s
non-blocking reads over time/1 worker:
1.29 M/s
non-blocking reads over time/2 workers:
1.76 M/s
non-blocking reads over time/4 workers:
4.00 M/s
time per blocking read/1 worker:
6287.17 ns
time per blocking read/2 workers:
8681.87 ns
time per blocking read/4 workers:
8242.98 ns
time per non-blocking read/1 worker:
777.30 ns
time per non-blocking read/2 workers:
1138.85 ns
time per non-blocking read/4 workers:
1000.24 ns
(cd _build/default/bench && ./main.exe -brief 'Picos_sync Stream')
Picos_sync Stream:
messages over time/1 nb pusher, 1 nb reader:
5.78 M/s
messages over time/2 nb pushers, 1 nb reader:
3.09 M/s
messages over time/4 nb pushers, 1 nb reader:
3.55 M/s
messages over time/one domain:
11.03 M/s
time per message/1 nb pusher, 1 nb reader:
345.79 ns
time per message/2 nb pushers, 1 nb reader:
972.41 ns
time per message/4 nb pushers, 1 nb reader:
1409.12 ns
time per message/one domain:
90.70 ns
(cd _build/default/bench && ./main.exe -brief Fib)
Fib:
spawns over time/1 mfifo, fib 20:
1.16 M/s
spawns over time/2 mfifos, fib 20:
1.62 M/s
spawns over time/4 mfifos, fib 20:
2.20 M/s
spawns over time/8 mfifos, fib 20:
2.49 M/s
time per spawn/1 mfifo, fib 20:
865.36 ns
time per spawn/2 mfifos, fib 20:
1233.80 ns
time per spawn/4 mfifos, fib 20:
1818.39 ns
time per spawn/8 mfifos, fib 20:
3217.53 ns
(cd _build/default/bench && ./main.exe -brief 'Picos binaries')
Picos binaries:
binary size/picos:
95.67 kB
binary size/picos.domain:
5.15 kB
binary size/picos.thread:
4.59 kB
binary size/picos_aux.htbl:
58.20 kB
binary size/picos_aux.mpmcq:
17.24 kB
binary size/picos_aux.mpscq:
20.76 kB
binary size/picos_aux.rc:
20.17 kB
binary size/picos_io:
116.07 kB
binary size/picos_io.fd:
10.80 kB
binary size/picos_io.select:
67.40 kB
binary size/picos_io_cohttp:
48.62 kB
binary size/picos_lwt:
30.08 kB
binary size/picos_lwt.unix:
16.27 kB
binary size/picos_mux.fifo:
30.51 kB
binary size/picos_mux.fifothread:
34.63 kB
binary size/picos_mux.multififo:
67.73 kB
binary size/picos_mux.random:
53.26 kB
binary size/picos_mux.thread:
26.84 kB
binary size/picos_std.awaitable:
36.62 kB
binary size/picos_std.event:
26.28 kB
binary size/picos_std.finally:
21.00 kB
binary size/picos_std.structured:
94.96 kB
binary size/picos_std.sync:
212.90 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.59 M/s
messages over time/1 adder, 2 takers with Lock:
1.32 M/s
messages over time/1 adder, 4 takers with Lock:
0.70 M/s
messages over time/2 adders, 1 taker with Lock:
1.15 M/s
messages over time/2 adders, 2 takers with Lock:
0.63 M/s
messages over time/2 adders, 4 takers with Lock:
0.47 M/s
messages over time/4 adders, 1 taker with Lock:
0.83 M/s
messages over time/4 adders, 2 takers with Lock:
0.84 M/s
messages over time/4 adders, 4 takers with Lock:
0.62 M/s
messages over time/one domain with Lock:
18.16 M/s
time per message/1 adder, 1 taker with Lock:
772.45 ns
time per message/1 adder, 2 takers with Lock:
2309.32 ns
time per message/1 adder, 4 takers with Lock:
7106.82 ns
time per message/2 adders, 1 taker with Lock:
2628.22 ns
time per message/2 adders, 2 takers with Lock:
6325.21 ns
time per message/2 adders, 4 takers with Lock:
12846.49 ns
time per message/4 adders, 1 taker with Lock:
6000.69 ns
time per message/4 adders, 2 takers with Lock:
7108.09 ns
time per message/4 adders, 4 takers with Lock:
12961.56 ns
time per message/one domain with Lock:
55.07 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-24 15:44.56 ---> saved as "a671f9132e1bc2863e53c875a297a87fdce8cf35ce329b52151d61b0d5d961c9"
Job succeeded
2025-12-24 15:44.56: Job succeeded