2025-08-04 10:20.36: New job: test ocaml-multicore/picos https://github.com/ocaml-multicore/picos.git#refs/heads/new-mpmc-queue (7434f839cd89c64d35902475ba6bf61c3f11e241) (linux-x86_64:opensuse-15.6-5.3_opam-2.4)
Base: ocaml/opam:opensuse-15.6-ocaml-5.3@sha256:5a5ba8ce58e93bb22fa17ecef857f8c82a0864b92abaedcdc83e748b1b91e729
Opam project build
To reproduce locally:
git clone --recursive "https://github.com/ocaml-multicore/picos.git" -b "new-mpmc-queue" && cd "picos" && git reset --hard 7434f839
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-15.6-ocaml-5.3@sha256:5a5ba8ce58e93bb22fa17ecef857f8c82a0864b92abaedcdc83e748b1b91e729
# opensuse-15.6-5.3_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 6129d098e5bdb58a83ef764c0af49db775a2987c || git fetch origin master) && git reset -q --hard 6129d098e5bdb58a83ef764c0af49db775a2987c && 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.0 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.1 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.1.3.0 cohttp.6.1.1 cohttp-lwt.6.1.1 cohttp-lwt-unix.6.1.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.4.1 domain_shims.0.1.0 dscheck.0.5.0 dune.3.19.1 dune-configurator.3.19.1 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.1.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.9.0 lwt.5.9.1 macaddr.5.6.1 magic-mime.1.3.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-crypto.2.0.1 mirage-crypto-ec.2.0.1 mirage-crypto-pk.2.0.1 mirage-crypto-rng.2.0.1 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.1 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.36.0 ppxlib_jane.v0.17.4 psq.0.2.1 ptime.1.2.0 qcheck-core.0.26 qcheck-multicoretests-util.0.9 qcheck-stm.0.9 re.1.13.2 result.1.5 rresult.0.7.0 sedlex.3.6 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.0 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-08-04 10:20.36: Using cache hint "ocaml-multicore/picos-ocaml/opam:opensuse-15.6-ocaml-5.3@sha256:5a5ba8ce58e93bb22fa17ecef857f8c82a0864b92abaedcdc83e748b1b91e729-opensuse-15.6-5.3_opam-2.4-6f4d1e9b050a2cf4b58fb26563c83810"
2025-08-04 10:20.36: Using OBuilder spec:
((from ocaml/opam:opensuse-15.6-ocaml-5.3@sha256:5a5ba8ce58e93bb22fa17ecef857f8c82a0864b92abaedcdc83e748b1b91e729)
(comment opensuse-15.6-5.3_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 6129d098e5bdb58a83ef764c0af49db775a2987c || git fetch origin master) && git reset -q --hard 6129d098e5bdb58a83ef764c0af49db775a2987c && 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.0 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.1 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.1.3.0 cohttp.6.1.1 cohttp-lwt.6.1.1 cohttp-lwt-unix.6.1.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.4.1 domain_shims.0.1.0 dscheck.0.5.0 dune.3.19.1 dune-configurator.3.19.1 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.1.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.9.0 lwt.5.9.1 macaddr.5.6.1 magic-mime.1.3.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-crypto.2.0.1 mirage-crypto-ec.2.0.1 mirage-crypto-pk.2.0.1 mirage-crypto-rng.2.0.1 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.1 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.36.0 ppxlib_jane.v0.17.4 psq.0.2.1 ptime.1.2.0 qcheck-core.0.26 qcheck-multicoretests-util.0.9 qcheck-stm.0.9 re.1.13.2 result.1.5 rresult.0.7.0 sedlex.3.6 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.0 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-08-04 10:20.36: Waiting for resource in pool OCluster
2025-08-04 10:28.40: Waiting for worker…
2025-08-04 10:28.48: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
HEAD is now at 7434f83 New MPMC queue using cooperative pointer reversal
(from ocaml/opam:opensuse-15.6-ocaml-5.3@sha256:5a5ba8ce58e93bb22fa17ecef857f8c82a0864b92abaedcdc83e748b1b91e729)
2025-08-04 10:28.50 ---> using "dbb72b99235b71bb04b11172c3b3a5d67e431e75ea5569c676e352fafb1ea8a6" from cache
/: (comment opensuse-15.6-5.3_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-08-04 10:28.50 ---> using "87e2375a109a58f695d34cacfbdf38b2a462911c00110b164a89b323c1c404ce" 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-08-04 10:28.50 ---> using "38171c60acc1f538f362b7636a118033ac9040c2fb28349cd89ff2a7826930d9" from cache
/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-134-generic
The OCaml toplevel, version 5.3.0
2.4.1
2025-08-04 10:28.50 ---> using "44fccd86dc31f97721e525150ad51232b9780edd426f935d21a9c21108171cef" from cache
/src: (workdir /src)
/src: (run (shell "sudo chown opam /src"))
2025-08-04 10:28.50 ---> using "01bb9945d330e7dcbc82a99d2f1d88d6111b7704d7a2675db148a702f9f8247e" from cache
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 6129d098e5bdb58a83ef764c0af49db775a2987c || git fetch origin master) && git reset -q --hard 6129d098e5bdb58a83ef764c0af49db775a2987c && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch master -> FETCH_HEAD
ee8b9193dd..6129d098e5 master -> origin/master
6129d098e5 Merge pull request #28274 from hhugo/release-js_of_ocaml-6.2.0
<><> 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-08-04 10:28.50 ---> using "7b2c224dee64727b6598e618b6606c15b682246d311a7048fdfb7ee63a3b50a0" 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-08-04 10:28.51 ---> saved as "06510f3a28a2b52635e086a18a71fbf52840385f0b184011134b18aa464070ae"
/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-08-04 10:29.01 ---> saved as "20ae7fe58cebd593703f9754622638fbe833e64d8a399cf77502243645eb00ee"
/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-08-04 10:29.02 ---> saved as "1d3a9a9d813cd65db12b93cc9459f7bc1209fbbefd0086d470e916a8cda159f5"
/src: (env DEPS "alcotest.1.9.0 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.1 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.1.3.0 cohttp.6.1.1 cohttp-lwt.6.1.1 cohttp-lwt-unix.6.1.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.4.1 domain_shims.0.1.0 dscheck.0.5.0 dune.3.19.1 dune-configurator.3.19.1 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.1.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.9.0 lwt.5.9.1 macaddr.5.6.1 magic-mime.1.3.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-crypto.2.0.1 mirage-crypto-ec.2.0.1 mirage-crypto-pk.2.0.1 mirage-crypto-rng.2.0.1 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.1 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.36.0 ppxlib_jane.v0.17.4 psq.0.2.1 ptime.1.2.0 qcheck-core.0.26 qcheck-multicoretests-util.0.9 qcheck-stm.0.9 re.1.13.2 result.1.5 rresult.0.7.0 sedlex.3.6 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.0 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 "zypper" "--non-interactive" "refresh"
- Retrieving repository 'Update repository of openSUSE Backports' metadata [.
- .
- Looking for gpg keys in repository Update repository of openSUSE Backports.
- gpgkey=http://download.opensuse.org/update/leap/15.6/backports/repodata/repomd.xml.key
- ..
- ............
- ........
- ..done]
- Building repository 'Update repository of openSUSE Backports' cache [..
- ..done]
- Retrieving repository 'Update repository with updates from SUSE Linux Enterprise 15' metadata [..
- Looking for gpg keys in repository Update repository with updates from SUSE Linux Enterprise 15.
- gpgkey=http://download.opensuse.org/update/leap/15.6/sle/repodata/repomd.xml.key
- ..
- ..........
- ..........
- ..........
- ..........
- ..........
- ..........
- ..........
- ......
- .........
- ..........
- .........
- .........
- ..........
- .........
- ......
- ..done]
- Building repository 'Update repository with updates from SUSE Linux Enterprise 15' cache [..
- ..done]
- Retrieving repository 'Main Update Repository' metadata [..
- Looking for gpg keys in repository Main Update Repository.
- gpgkey=http://download.opensuse.org/update/leap/15.6/oss/repodata/repomd.xml.key
- ..
- ....done]
- Building repository 'Main Update Repository' cache [....done]
- Repository 'Update Repository (Non-Oss)' is up to date.
- Repository 'Non-OSS Repository' is up to date.
- Repository 'Main Repository' is up to date.
- All repositories have been refreshed.
<><> 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.3.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml is already installed (current version is 5.3.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-devel npm-default
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
+ /usr/bin/sudo "zypper" "--non-interactive" "install" "gmp-devel" "npm-default"
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
-
- The following 9 NEW packages are going to be installed:
- gmp-devel libgmpxx4 libicu73_2 libicu73_2-ledata nodejs-common nodejs-default nodejs20 npm-default npm20
-
- 9 new packages to install.
-
- Package download size: 23.6 MiB
-
- Package install size change:
- | 94.8 MiB required by packages that will be installed
- 94.8 MiB | - 0 B released by packages that will be removed
-
- Backend: classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Retrieving: libgmpxx4-6.1.2-4.9.1.x86_64 (Main Repository) (1/9), 17.1 KiB
- Retrieving: libgmpxx4-6.1.2-4.9.1.x86_64.rpm [.done]
- Retrieving: libicu73_2-ledata-73.2-150000.1.7.1.noarch (Main Repository) (2/9), 7.3 MiB
- Retrieving: libicu73_2-ledata-73.2-150000.1.7.1.noarch.rpm [....done (5.0 MiB/s)]
- Retrieving: gmp-devel-6.1.2-4.9.1.x86_64 (Main Repository) (3/9), 2.2 MiB
- Retrieving: gmp-devel-6.1.2-4.9.1.x86_64.rpm [.done]
- Retrieving: libicu73_2-73.2-150000.1.7.1.x86_64 (Main Repository) (4/9), 1.8 MiB
- Retrieving: libicu73_2-73.2-150000.1.7.1.x86_64.rpm [.
- done]
- Retrieving: nodejs-common-6.0-150600.1.5.x86_64 (Main Repository) (5/9), 14.5 KiB
- Retrieving: nodejs-common-6.0-150600.1.5.x86_64.rpm [.done]
- Retrieving: nodejs20-20.19.2-150600.3.12.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (6/9), 10.6 MiB
- Retrieving: nodejs20-20.19.2-150600.3.12.1.x86_64.rpm [........done (10.0 MiB/s)]
- Retrieving: nodejs-default-6.0-150600.1.5.x86_64 (Main Repository) (7/9), 9.8 KiB
- Retrieving: nodejs-default-6.0-150600.1.5.x86_64.rpm [.done]
- Retrieving: npm20-20.19.2-150600.3.12.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (8/9), 1.8 MiB
- Retrieving: npm20-20.19.2-150600.3.12.1.x86_64.rpm [...done (1.5 MiB/s)]
- Retrieving: npm-default-6.0-150600.1.5.x86_64 (Main Repository) (9/9), 9.8 KiB
- Retrieving: npm-default-6.0-150600.1.5.x86_64.rpm [.done]
-
- Checking for file conflicts: [....done]
- (1/9) Installing: libgmpxx4-6.1.2-4.9.1.x86_64 [..done]
- (2/9) Installing: libicu73_2-ledata-73.2-150000.1.7.1.noarch [....
- ..........
- .....done]
- (3/9) Installing: gmp-devel-6.1.2-4.9.1.x86_64 [......
- done]
- (4/9) Installing: libicu73_2-73.2-150000.1.7.1.x86_64 [.....done]
- (5/9) Installing: nodejs-common-6.0-150600.1.5.x86_64 [..done]
- (6/9) Installing: nodejs20-20.19.2-150600.3.12.1.x86_64 [.....
- ..........
- ..........
- .
- update-alternatives: using /usr/bin/node20 to provide /usr/bin/node-default (node-default) in auto mode
- done]
- (7/9) Installing: nodejs-default-6.0-150600.1.5.x86_64 [..done]
- (8/9) Installing: npm20-20.19.2-150600.3.12.1.x86_64 [.........
-
- update-alternatives: using /usr/bin/npm20 to provide /usr/bin/npm-default (npm-default) in auto mode
- update-alternatives: using /usr/bin/npx20 to provide /usr/bin/npx-default (npx-default) in auto mode
- done]
- (9/9) Installing: npm-default-6.0-150600.1.5.x86_64 [..done]
2025-08-04 10:30.37 ---> saved as "fa652e74a085d264d9f5b3120090eea99793feb3c0aa1df85a2dab3d810d9095"
/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.3.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml is already installed (current version is 5.3.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.0
- 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.1
- install bigstringaf 0.10.0
- install bos 0.2.1
- install ca-certs 1.0.1
- install camlp-streams 5.0.1
- install cmdliner 1.3.0
- install cohttp 6.1.1
- install cohttp-lwt 6.1.1
- install cohttp-lwt-unix 6.1.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.4.1
- install domain_shims 0.1.0
- install dscheck 0.5.0
- install dune 3.19.1
- install dune-configurator 3.19.1
- 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.1.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.9.0
- install lwt 5.9.1
- install macaddr 5.6.1
- install magic-mime 1.3.1
- install mdx 2.5.0
- install menhir 20240715
- install menhirCST 20240715
- install menhirLib 20240715
- install menhirSdk 20240715
- install mirage-crypto 2.0.1
- install mirage-crypto-ec 2.0.1
- install mirage-crypto-pk 2.0.1
- install mirage-crypto-rng 2.0.1
- 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.1
- 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.36.0
- install ppxlib_jane v0.17.4
- install psq 0.2.1
- install ptime 1.2.0
- install qcheck-core 0.26
- install qcheck-multicoretests-util 0.9
- install qcheck-stm 0.9
- install re 1.13.2
- install result 1.5
- install rresult 0.7.0
- install sedlex 3.6
- 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.0
- 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.0 (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.1 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved base.v0.17.3 (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.1.3.0 (cached)
-> retrieved cohttp.6.1.1, cohttp-lwt.6.1.1, cohttp-lwt-unix.6.1.1, http.6.1.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)
-> retrieved domain-local-await.1.0.1 (cached)
-> retrieved domain-name.0.4.1 (cached)
-> installed conf-gmp-powm-sec.4
-> 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 dune.3.19.1, dune-configurator.3.19.1 (cached)
-> retrieved digestif.1.3.0 (cached)
-> retrieved js_of_ocaml.6.2.0, js_of_ocaml-compiler.6.2.0 (cached)
-> retrieved kdf.1.0.0 (cached)
-> retrieved logs.0.9.0 (cached)
-> retrieved lwt.5.9.1 (cached)
-> retrieved magic-mime.1.3.1 (cached)
-> installed cmdliner.1.3.0
-> retrieved mdx.2.5.0 (cached)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached)
-> retrieved mtime.2.1.0 (cached)
-> 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.1 (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocplib-endian.1.2 (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 mirage-crypto.2.0.1, mirage-crypto-ec.2.0.1, mirage-crypto-pk.2.0.1, mirage-crypto-rng.2.0.1 (cached)
-> retrieved psq.0.2.1 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved qcheck-core.0.26 (cached)
-> retrieved qcheck-multicoretests-util.0.9, qcheck-stm.0.9 (cached)
-> retrieved ppxlib.0.36.0 (cached)
-> retrieved re.1.13.2 (cached)
-> retrieved result.1.5 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved rresult.0.7.0 (cached)
-> retrieved sedlex.3.6 (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 topkg.1.1.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0 (cached)
-> retrieved yojson.3.0.0 (cached)
-> retrieved x509.1.0.6 (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.0
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed mtime.2.1.0
-> installed ptime.1.2.0
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed dune.3.19.1
-> installed backoff.0.1.1
-> installed base64.3.5.1
-> installed csexp.1.5.2
-> installed asn1-combinators.0.3.2
-> installed camlp-streams.5.0.1
-> installed domain-name.0.4.1
-> installed domain_shims.0.1.0
-> installed cppo.1.8.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.1.1
-> installed macaddr.5.6.1
-> installed magic-mime.1.3.1
-> installed menhirCST.20240715
-> installed menhirLib.20240715
-> installed menhirSdk.20240715
-> 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.1
-> 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 re.1.13.2
-> 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 qcheck-core.0.26
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed digestif.1.3.0
-> installed ipaddr.5.6.1
-> installed domain-local-await.1.0.1
-> installed qcheck-multicoretests-util.0.9
-> installed alcotest.1.9.0
-> installed multicore-bench.0.1.7
-> installed qcheck-stm.0.9
-> installed dune-configurator.3.19.1
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed mirage-crypto.2.0.1
-> installed kdf.1.0.0
-> installed containers.3.16
-> installed dscheck.0.5.0
-> installed multicore-magic-dscheck.2.3.1
-> installed uri.4.4.0
-> installed lwt.5.9.1
-> installed base.v0.17.3
-> installed menhir.20240715
-> installed ppxlib.0.36.0
-> installed ppxlib_jane.v0.17.4
-> installed sedlex.3.6
-> 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.9.0
-> installed mirage-crypto-rng.2.0.1
-> installed mirage-crypto-pk.2.0.1
-> installed conduit.8.0.0
-> installed cohttp.6.1.1
-> installed bos.0.2.1
-> installed mdx.2.5.0
-> installed conduit-lwt.8.0.0
-> installed cohttp-lwt.6.1.1
-> installed mirage-crypto-ec.2.0.1
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt-unix.6.1.1
-> installed js_of_ocaml.6.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-04 10:37.14 ---> saved as "3bcaffca4c1a5a2251458cfa7cd0bd42976ba28cb9a4a90fc897610479a223ab"
/src: (copy (src .) (dst /src))
2025-08-04 10:37.15 ---> saved as "ac9d255e53ee32630b84301ad8978ccc4a7dbfae273cfb898488ea8afc9c6f4a"
/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
(cd _build/default/example && ./guards.exe)
Testing with scheduler: fifos ~quota:17
Ran guarded case statement examples.
(cd _build/default/test && ./test_server_and_client.exe)
Using blocking sockets and fibers on OCaml 5:
Looping server running
Server listening
Client B running
Client B connected
Client B wrote 100
Server accepting
Client A running
Server accepted client
Client A connected
Client A wrote 100
Server accepting
Server accepted client
Server read 100
Client B read 50
Server wrote 50
Server accepting
Server read 100
Client A read 50
Server wrote 50
Server and Client test: OK
(cd _build/default/test && ./test_finally.exe)
Testing `Picos_finally'.
This run has ID `ROM2FXL5'.
[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.002s. 2 tests run.
(cd _build/default/test && ./test_picos_lwt_unix_with_cohttp.exe)
Uri: //127.0.0.1:8000/hello-lwt
Method: GET
host: 127.0.0.1:8000
user-agent: ocaml-cohttp/v6.1.1
content-length: 0
Body:
(cd _build/default/test && ./test_io_with_lwt.exe)
Testing `Picos_io_with_lwt'.
This run has ID `FK8NM9JH'.
[OK] Unix 0 system.
Full test results in `/src/_build/default/test/_build/_tests/Picos_io_with_lwt'.
Test Successful in 2.220s. 1 test run.
(cd _build/default/test && ./test_io.exe)
Testing `Picos_io'.
This run has ID `7T7P9F5E'.
[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.615s. 6 tests run.
(cd _build/default/test && ./test_mpmcq_dscheck.exe)
Testing `Picos_mpmcq DSCheck'.
This run has ID `6X433RF4'.
[OK] Multiple pushes and pops 0
Full test results in `/src/_build/default/test/_build/_tests/Picos_mpmcq DSCheck'.
Test Successful in 0.051s. 1 test run.
(cd _build/default/test && ./test_io_cohttp.exe)
Uri: //127.0.0.1:40929/hello-io-cohttp
Method: POST
host: 127.0.0.1:40929
user-agent: ocaml-cohttp/v6.1.1
content-length: 17
Body: It's-a-Me, Picos!
(cd _build/default/test && ./test_lwt_unix.exe)
Testing `Picos_lwt'.
This run has ID `0Q3DTFO4'.
[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_sync.exe -- '^Mutex and Condition$' 0)
Testing `Picos_sync'.
This run has ID `PIJW3VSH'.
[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.041s. 1 test run.
(cd _build/default/test && ./test_picos_dscheck.exe)
Testing `Picos DSCheck'.
This run has ID `70E7E65U'.
[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 1.100s. 3 tests run.
(cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 1)
Testing `Picos_sync'.
This run has ID `446F3ZEC'.
[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.038s. 1 test run.
(cd _build/default/test && ./test_structured.exe)
Testing `Picos_structured'.
This run has ID `RA2TJQPN'.
[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 1.015s. 14 tests run.
(cd _build/default/test && ./test_select.exe)
Testing `Picos_select'.
This run has ID `PVF9VNP0'.
[OK] Intr 0
Full test results in `/src/_build/default/test/_build/_tests/Picos_select'.
Test Successful in 3.541s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 2)
Testing `Picos_sync'.
This run has ID `DDV4LJJP'.
[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 0.736s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 0)
Testing `Picos_sync'.
This run has ID `NWOOJKTL'.
[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.089s. 1 test run.
(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 Computation')
Picos Computation:
attach detach pairs over time/1 worker:
0.74 M/s
attach detach pairs over time/2 workers:
4.08 M/s
attach detach pairs over time/4 workers:
1.07 M/s
attach detach pairs over time/trivial:
1.60 M/s
time per attach detach pair/1 worker:
1354.92 ns
time per attach detach pair/2 workers:
489.75 ns
time per attach detach pair/4 workers:
3728.86 ns
time per attach detach pair/trivial:
624.06 ns
(cd _build/default/bench && ./main.exe -brief 'Picos Current')
Picos Current:
ops over time/1 worker:
4.23 M/s
ops over time/2 workers:
7.08 M/s
ops over time/4 workers:
8.43 M/s
time per op/1 worker:
236.18 ns
time per op/2 workers:
282.33 ns
time per op/4 workers:
474.29 ns
(cd _build/default/bench && ./main.exe -brief 'Picos FLS (excluding Current)')
Picos FLS (excluding Current):
gets over time/1 worker:
107.88 M/s
gets over time/2 workers:
90.48 M/s
gets over time/4 workers:
117.26 M/s
sets over time/1 worker:
65.52 M/s
sets over time/2 workers:
50.10 M/s
sets over time/4 workers:
53.29 M/s
time per get/1 worker:
9.27 ns
time per get/2 workers:
22.11 ns
time per get/4 workers:
34.11 ns
time per set/1 worker:
15.26 ns
time per set/2 workers:
39.92 ns
time per set/4 workers:
75.06 ns
(cd _build/default/bench && ./main.exe -brief 'Picos TLS')
Picos TLS:
gets over time/1 worker:
35.23 M/s
gets over time/2 workers:
105.42 M/s
gets over time/4 workers:
245.26 M/s
sets over time/1 worker:
35.65 M/s
sets over time/2 workers:
68.12 M/s
sets over time/4 workers:
44.30 M/s
time per get/1 worker:
28.39 ns
time per get/2 workers:
18.97 ns
time per get/4 workers:
16.31 ns
time per set/1 worker:
28.05 ns
time per set/2 workers:
29.36 ns
time per set/4 workers:
90.30 ns
(cd _build/default/bench && ./main.exe -brief 'Picos DLS')
Picos DLS:
gets over time/1 worker:
79.72 M/s
gets over time/2 workers:
47.62 M/s
gets over time/4 workers:
126.11 M/s
sets over time/1 worker:
45.40 M/s
sets over time/2 workers:
111.53 M/s
sets over time/4 workers:
131.29 M/s
time per get/1 worker:
12.54 ns
time per get/2 workers:
42.00 ns
time per get/4 workers:
31.72 ns
time per set/1 worker:
22.03 ns
time per set/2 workers:
17.93 ns
time per set/4 workers:
30.47 ns
(cd _build/default/test && ./test_schedulers.exe)
Testing with scheduler: fifos ~quota:91
Fairness of 100 fibers performing at least 10000 yields:
sd: 0.000029 -- ideally 0
mean: 1.000091 -- ideally 1
median: 1.000100 -- ideally 1
Testing `Picos schedulers'.
This run has ID `NWYWFD0X'.
[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 31.310s. 8 tests run.
(cd _build/default/test && ./test_picos.exe)
Testing `Picos'.
This run has ID `KC9VLPZ9'.
[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 48.509s. 7 tests run.
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 1)
Testing `Picos_sync'.
This run has ID `H94ROVUP'.
[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 45.156s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 2)
Testing `Picos_sync'.
This run has ID `ID6KD2D4'.
[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.001s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 3)
Testing `Picos_sync'.
This run has ID `S6G0VJ6Z'.
[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 `LZFIOLAZ'.
[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.001s. 1 test run.
(cd _build/default/test && ./test_mpscq.exe)
random seed: 4116243003064712814
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Mpscq sequential
[✓] 32 0 0 32 / 32 0.0s Mpscq sequential
[ ] 0 0 0 0 / 32 0.0s Mpscq parallel
[ ] 1 0 0 1 / 32 1.4s Mpscq parallel
[ ] 2 0 0 2 / 32 2.8s Mpscq parallel
[ ] 3 0 0 3 / 32 4.1s Mpscq parallel
[ ] 4 0 0 4 / 32 5.4s Mpscq parallel
[ ] 5 0 0 5 / 32 6.5s Mpscq parallel
[ ] 6 0 0 6 / 32 9.2s Mpscq parallel
[ ] 7 0 0 7 / 32 10.5s Mpscq parallel
[ ] 8 0 0 8 / 32 12.0s Mpscq parallel
[ ] 9 0 0 9 / 32 13.2s Mpscq parallel
[ ] 10 0 0 10 / 32 14.2s Mpscq parallel
[ ] 11 0 0 11 / 32 15.9s Mpscq parallel
[ ] 12 0 0 12 / 32 16.9s Mpscq parallel
[ ] 13 0 0 13 / 32 18.4s Mpscq parallel
[ ] 14 0 0 14 / 32 19.7s Mpscq parallel
[ ] 15 0 0 15 / 32 20.9s Mpscq parallel
[ ] 16 0 0 16 / 32 22.5s Mpscq parallel
[ ] 17 0 0 17 / 32 23.7s Mpscq parallel
[ ] 18 0 0 18 / 32 24.5s Mpscq parallel
[ ] 19 0 0 19 / 32 25.2s Mpscq parallel
[ ] 20 0 0 20 / 32 25.6s Mpscq parallel
[ ] 21 0 0 21 / 32 25.9s Mpscq parallel
[ ] 22 0 0 22 / 32 26.2s Mpscq parallel
[ ] 23 0 0 23 / 32 26.8s Mpscq parallel
[ ] 24 0 0 24 / 32 27.0s Mpscq parallel
[ ] 25 0 0 25 / 32 27.4s Mpscq parallel
[ ] 26 0 0 26 / 32 28.1s Mpscq parallel
[ ] 27 0 0 27 / 32 28.7s Mpscq parallel
[ ] 28 0 0 28 / 32 29.2s Mpscq parallel
[ ] 29 0 0 29 / 32 29.3s Mpscq parallel
[ ] 30 0 0 30 / 32 29.9s Mpscq parallel
[ ] 31 0 0 31 / 32 30.1s Mpscq parallel
[ ] 32 0 0 32 / 32 30.4s Mpscq parallel
[✓] 32 0 0 32 / 32 30.4s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 2159900339646649401
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
[ ] 2 0 0 2 / 32 0.4s Mpscq parallel
[ ] 3 0 0 3 / 32 0.7s Mpscq parallel
[ ] 4 0 0 4 / 32 0.9s Mpscq parallel
[ ] 5 0 0 5 / 32 1.4s Mpscq parallel
[ ] 6 0 0 6 / 32 1.7s Mpscq parallel
[ ] 8 0 0 8 / 32 1.9s Mpscq parallel
[ ] 9 0 0 9 / 32 2.0s Mpscq parallel
[ ] 10 0 0 10 / 32 2.2s Mpscq parallel
[ ] 11 0 0 11 / 32 2.5s Mpscq parallel
[ ] 12 0 0 12 / 32 2.8s Mpscq parallel
[ ] 13 0 0 13 / 32 2.9s Mpscq parallel
[ ] 16 0 0 16 / 32 3.0s Mpscq parallel
[ ] 17 0 0 17 / 32 3.2s Mpscq parallel
[ ] 18 0 0 18 / 32 3.3s Mpscq parallel
[ ] 20 0 0 20 / 32 3.9s Mpscq parallel
[ ] 22 0 0 22 / 32 4.0s Mpscq parallel
[ ] 24 0 0 24 / 32 4.2s Mpscq parallel
[ ] 25 0 0 25 / 32 4.4s Mpscq parallel
[ ] 26 0 0 26 / 32 4.5s Mpscq parallel
[ ] 28 0 0 28 / 32 4.7s Mpscq parallel
[ ] 30 0 0 30 / 32 4.8s Mpscq parallel
[ ] 32 0 0 32 / 32 5.0s Mpscq parallel
[✓] 32 0 0 32 / 32 5.0s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 2782527232400199886
generated error fail pass / total time test name
[ ] 0 0 0 0 / 44 0.0s Mpscq sequential
[✓] 44 0 0 44 / 44 0.0s Mpscq sequential
[ ] 0 0 0 0 / 44 0.0s Mpscq parallel
[ ] 1 0 0 1 / 44 0.1s Mpscq parallel
[ ] 3 0 0 3 / 44 0.4s Mpscq parallel
[ ] 4 0 0 4 / 44 0.5s Mpscq parallel
[ ] 7 0 0 7 / 44 0.6s Mpscq parallel
[ ] 9 0 0 9 / 44 0.7s Mpscq parallel
[ ] 10 0 0 10 / 44 0.9s Mpscq parallel
[ ] 11 0 0 11 / 44 1.2s Mpscq parallel
[ ] 13 0 0 13 / 44 2.0s Mpscq parallel
[ ] 15 0 0 15 / 44 2.3s Mpscq parallel
[ ] 16 0 0 16 / 44 2.4s Mpscq parallel
[ ] 17 0 0 17 / 44 2.5s Mpscq parallel
[ ] 18 0 0 18 / 44 2.7s Mpscq parallel
[ ] 19 0 0 19 / 44 2.8s Mpscq parallel
[ ] 21 0 0 21 / 44 2.9s Mpscq parallel
[ ] 22 0 0 22 / 44 3.0s Mpscq parallel
[ ] 24 0 0 24 / 44 3.2s Mpscq parallel
[ ] 25 0 0 25 / 44 3.6s Mpscq parallel
[ ] 26 0 0 26 / 44 3.9s Mpscq parallel
[ ] 27 0 0 27 / 44 4.1s Mpscq parallel
[ ] 28 0 0 28 / 44 4.6s Mpscq parallel
[ ] 29 0 0 29 / 44 4.8s Mpscq parallel
[ ] 30 0 0 30 / 44 5.1s Mpscq parallel
[ ] 31 0 0 31 / 44 5.3s Mpscq parallel
[ ] 32 0 0 32 / 44 5.4s Mpscq parallel
[ ] 34 0 0 34 / 44 5.9s Mpscq parallel
[ ] 35 0 0 35 / 44 6.2s Mpscq parallel
[ ] 36 0 0 36 / 44 6.3s Mpscq parallel
[ ] 38 0 0 38 / 44 6.5s Mpscq parallel
[ ] 40 0 0 40 / 44 6.7s Mpscq parallel
[ ] 41 0 0 41 / 44 6.9s Mpscq parallel
[ ] 43 0 0 43 / 44 7.2s Mpscq parallel
[✓] 44 0 0 44 / 44 7.2s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 4238921441112372192
generated error fail pass / total time test name
[ ] 0 0 0 0 / 43 0.0s Mpscq sequential
[✓] 43 0 0 43 / 43 0.0s Mpscq sequential
[ ] 0 0 0 0 / 43 0.0s Mpscq parallel
[ ] 1 0 0 1 / 43 0.1s Mpscq parallel
[ ] 2 0 0 2 / 43 0.3s Mpscq parallel
[ ] 4 0 0 4 / 43 0.5s Mpscq parallel
[ ] 6 0 0 6 / 43 0.6s Mpscq parallel
[ ] 7 0 0 7 / 43 0.8s Mpscq parallel
[ ] 9 0 0 9 / 43 1.0s Mpscq parallel
[ ] 11 0 0 11 / 43 1.2s Mpscq parallel
[ ] 12 0 0 12 / 43 2.3s Mpscq parallel
[ ] 14 0 0 14 / 43 2.5s Mpscq parallel
[ ] 15 0 0 15 / 43 2.8s Mpscq parallel
[ ] 16 0 0 16 / 43 3.2s Mpscq parallel
[ ] 17 0 0 17 / 43 3.3s Mpscq parallel
[ ] 18 0 0 18 / 43 3.6s Mpscq parallel
[ ] 19 0 0 19 / 43 3.8s Mpscq parallel
[ ] 20 0 0 20 / 43 4.1s Mpscq parallel
[ ] 21 0 0 21 / 43 4.5s Mpscq parallel
[ ] 22 0 0 22 / 43 5.3s Mpscq parallel
[ ] 24 0 0 24 / 43 5.4s Mpscq parallel
[ ] 25 0 0 25 / 43 5.5s Mpscq parallel
[ ] 28 0 0 28 / 43 5.8s Mpscq parallel
[ ] 31 0 0 31 / 43 5.9s Mpscq parallel
[ ] 33 0 0 33 / 43 6.1s Mpscq parallel
[ ] 34 0 0 34 / 43 6.2s Mpscq parallel
[ ] 35 0 0 35 / 43 6.7s Mpscq parallel
[ ] 36 0 0 36 / 43 6.9s Mpscq parallel
[ ] 37 0 0 37 / 43 7.0s Mpscq parallel
[ ] 38 0 0 38 / 43 7.3s Mpscq parallel
[ ] 39 0 0 39 / 43 7.6s Mpscq parallel
[ ] 40 0 0 40 / 43 7.8s Mpscq parallel
[ ] 41 0 0 41 / 43 8.3s Mpscq parallel
[ ] 42 0 0 42 / 43 9.3s Mpscq parallel
[ ] 43 0 0 43 / 43 9.8s Mpscq parallel
[✓] 43 0 0 43 / 43 9.8s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 2900000916247501440
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Mpscq sequential
[✓] 32 0 0 32 / 32 0.0s Mpscq sequential
[ ] 0 0 0 0 / 32 0.0s Mpscq parallel
[ ] 1 0 0 1 / 32 0.5s Mpscq parallel
[ ] 2 0 0 2 / 32 0.7s Mpscq parallel
[ ] 4 0 0 4 / 32 0.9s Mpscq parallel
[ ] 5 0 0 5 / 32 1.0s Mpscq parallel
[ ] 7 0 0 7 / 32 1.6s Mpscq parallel
[ ] 8 0 0 8 / 32 1.8s Mpscq parallel
[ ] 10 0 0 10 / 32 1.9s Mpscq parallel
[ ] 12 0 0 12 / 32 2.1s Mpscq parallel
[ ] 13 0 0 13 / 32 2.3s Mpscq parallel
[ ] 14 0 0 14 / 32 2.8s Mpscq parallel
[ ] 15 0 0 15 / 32 3.3s Mpscq parallel
[ ] 16 0 0 16 / 32 3.7s Mpscq parallel
[ ] 17 0 0 17 / 32 3.9s Mpscq parallel
[ ] 18 0 0 18 / 32 4.1s Mpscq parallel
[ ] 19 0 0 19 / 32 4.6s Mpscq parallel
[ ] 20 0 0 20 / 32 5.2s Mpscq parallel
[ ] 21 0 0 21 / 32 5.9s Mpscq parallel
[ ] 22 0 0 22 / 32 6.5s Mpscq parallel
[ ] 23 0 0 23 / 32 6.8s Mpscq parallel
[ ] 24 0 0 24 / 32 7.2s Mpscq parallel
[ ] 25 0 0 25 / 32 7.4s Mpscq parallel
[ ] 26 0 0 26 / 32 7.6s Mpscq parallel
[ ] 27 0 0 27 / 32 7.8s Mpscq parallel
[ ] 28 0 0 28 / 32 7.9s Mpscq parallel
[ ] 29 0 0 29 / 32 8.1s Mpscq parallel
[ ] 30 0 0 30 / 32 8.8s Mpscq parallel
[ ] 31 0 0 31 / 32 9.0s Mpscq parallel
[ ] 32 0 0 32 / 32 9.6s Mpscq parallel
[✓] 32 0 0 32 / 32 9.6s Mpscq parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_sem.exe)
random seed: 3610691865102743334
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Sem sequential
[✓] 32 0 0 32 / 32 0.0s Sem sequential
[ ] 0 0 0 0 / 32 0.0s Sem parallel
[ ] 1 0 0 1 / 32 1.6s Sem parallel
[ ] 2 0 0 2 / 32 2.4s Sem parallel
[ ] 3 0 0 3 / 32 3.1s Sem parallel
[ ] 4 0 0 4 / 32 4.1s Sem parallel
[ ] 5 0 0 5 / 32 4.9s Sem parallel
[ ] 6 0 0 6 / 32 5.6s Sem parallel
[ ] 7 0 0 7 / 32 6.4s Sem parallel
[ ] 8 0 0 8 / 32 7.2s Sem parallel
[ ] 9 0 0 9 / 32 7.9s Sem parallel
[ ] 10 0 0 10 / 32 8.7s Sem parallel
[ ] 11 0 0 11 / 32 10.0s Sem parallel
[ ] 12 0 0 12 / 32 10.8s Sem parallel
[ ] 13 0 0 13 / 32 11.5s Sem parallel
[ ] 14 0 0 14 / 32 12.9s Sem parallel
[ ] 15 0 0 15 / 32 13.9s Sem parallel
[ ] 16 0 0 16 / 32 14.5s Sem parallel
[ ] 17 0 0 17 / 32 15.3s Sem parallel
[ ] 18 0 0 18 / 32 16.1s Sem parallel
[ ] 19 0 0 19 / 32 17.0s Sem parallel
[ ] 20 0 0 20 / 32 17.7s Sem parallel
[ ] 21 0 0 21 / 32 18.6s Sem parallel
[ ] 22 0 0 22 / 32 19.4s Sem parallel
[ ] 23 0 0 23 / 32 20.2s Sem parallel
[ ] 24 0 0 24 / 32 21.1s Sem parallel
[ ] 25 0 0 25 / 32 21.5s Sem parallel
[ ] 26 0 0 26 / 32 22.0s Sem parallel
[ ] 27 0 0 27 / 32 22.3s Sem parallel
[ ] 28 0 0 28 / 32 22.7s Sem parallel
[ ] 29 0 0 29 / 32 23.3s Sem parallel
[ ] 30 0 0 30 / 32 23.9s Sem parallel
[ ] 31 0 0 31 / 32 24.3s Sem parallel
[ ] 32 0 0 32 / 32 24.8s Sem parallel
[✓] 32 0 0 32 / 32 24.8s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 3954811409962299563
generated error fail pass / total time test name
[ ] 0 0 0 0 / 45 0.0s Sem sequential
[✓] 45 0 0 45 / 45 0.0s Sem sequential
[ ] 0 0 0 0 / 45 0.0s Sem parallel
[ ] 1 0 0 1 / 45 0.5s Sem parallel
[ ] 2 0 0 2 / 45 1.1s Sem parallel
[ ] 3 0 0 3 / 45 1.4s Sem parallel
[ ] 4 0 0 4 / 45 1.5s Sem parallel
[ ] 5 0 0 5 / 45 1.8s Sem parallel
[ ] 6 0 0 6 / 45 1.9s Sem parallel
[ ] 8 0 0 8 / 45 2.2s Sem parallel
[ ] 9 0 0 9 / 45 2.3s Sem parallel
[ ] 10 0 0 10 / 45 2.4s Sem parallel
[ ] 12 0 0 12 / 45 2.6s Sem parallel
[ ] 13 0 0 13 / 45 2.9s Sem parallel
[ ] 14 0 0 14 / 45 3.5s Sem parallel
[ ] 15 0 0 15 / 45 3.6s Sem parallel
[ ] 16 0 0 16 / 45 3.8s Sem parallel
[ ] 17 0 0 17 / 45 4.7s Sem parallel
[ ] 18 0 0 18 / 45 5.1s Sem parallel
[ ] 19 0 0 19 / 45 5.3s Sem parallel
[ ] 20 0 0 20 / 45 5.5s Sem parallel
[ ] 21 0 0 21 / 45 5.6s Sem parallel
[ ] 22 0 0 22 / 45 5.8s Sem parallel
[ ] 23 0 0 23 / 45 6.0s Sem parallel
[ ] 24 0 0 24 / 45 6.2s Sem parallel
[ ] 25 0 0 25 / 45 6.5s Sem parallel
[ ] 26 0 0 26 / 45 6.9s Sem parallel
[ ] 27 0 0 27 / 45 7.1s Sem parallel
[ ] 28 0 0 28 / 45 7.2s Sem parallel
[ ] 29 0 0 29 / 45 7.7s Sem parallel
[ ] 30 0 0 30 / 45 7.9s Sem parallel
[ ] 31 0 0 31 / 45 8.1s Sem parallel
[ ] 32 0 0 32 / 45 8.3s Sem parallel
[ ] 34 0 0 34 / 45 8.8s Sem parallel
[ ] 35 0 0 35 / 45 9.0s Sem parallel
[ ] 36 0 0 36 / 45 9.1s Sem parallel
[ ] 37 0 0 37 / 45 9.2s Sem parallel
[ ] 39 0 0 39 / 45 9.4s Sem parallel
[ ] 41 0 0 41 / 45 9.7s Sem parallel
[ ] 42 0 0 42 / 45 9.8s Sem parallel
[ ] 44 0 0 44 / 45 10.0s Sem parallel
[ ] 45 0 0 45 / 45 10.1s Sem parallel
[✓] 45 0 0 45 / 45 10.1s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 3348642214214338024
generated error fail pass / total time test name
[ ] 0 0 0 0 / 55 0.0s Sem sequential
[✓] 55 0 0 55 / 55 0.0s Sem sequential
[ ] 0 0 0 0 / 55 0.0s Sem parallel
[ ] 1 0 0 1 / 55 0.1s Sem parallel
[ ] 3 0 0 3 / 55 0.2s Sem parallel
[ ] 4 0 0 4 / 55 0.3s Sem parallel
[ ] 7 0 0 7 / 55 0.5s Sem parallel
[ ] 8 0 0 8 / 55 0.6s Sem parallel
[ ] 12 0 0 12 / 55 0.7s Sem parallel
[ ] 15 0 0 15 / 55 0.8s Sem parallel
[ ] 16 0 0 16 / 55 0.9s Sem parallel
[ ] 18 0 0 18 / 55 1.1s Sem parallel
[ ] 20 0 0 20 / 55 1.2s Sem parallel
[ ] 22 0 0 22 / 55 1.4s Sem parallel
[ ] 25 0 0 25 / 55 1.6s Sem parallel
[ ] 26 0 0 26 / 55 1.7s Sem parallel
[ ] 28 0 0 28 / 55 1.9s Sem parallel
[ ] 31 0 0 31 / 55 2.6s Sem parallel
[ ] 32 0 0 32 / 55 3.1s Sem parallel
[ ] 36 0 0 36 / 55 3.2s Sem parallel
[ ] 38 0 0 38 / 55 3.3s Sem parallel
[ ] 40 0 0 40 / 55 3.5s Sem parallel
[ ] 43 0 0 43 / 55 3.7s Sem parallel
[ ] 44 0 0 44 / 55 3.8s Sem parallel
[ ] 45 0 0 45 / 55 4.0s Sem parallel
[ ] 48 0 0 48 / 55 4.1s Sem parallel
[ ] 50 0 0 50 / 55 4.4s Sem parallel
[ ] 52 0 0 52 / 55 4.5s Sem parallel
[ ] 54 0 0 54 / 55 4.7s Sem parallel
[ ] 55 0 0 55 / 55 5.0s Sem parallel
[✓] 55 0 0 55 / 55 5.0s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 2803124387401050943
generated error fail pass / total time test name
[ ] 0 0 0 0 / 66 0.0s Sem sequential
[✓] 66 0 0 66 / 66 0.0s Sem sequential
[ ] 0 0 0 0 / 66 0.0s Sem parallel
[ ] 1 0 0 1 / 66 0.2s Sem parallel
[ ] 2 0 0 2 / 66 0.5s Sem parallel
[ ] 4 0 0 4 / 66 0.9s Sem parallel
[ ] 5 0 0 5 / 66 1.1s Sem parallel
[ ] 7 0 0 7 / 66 1.4s Sem parallel
[ ] 9 0 0 9 / 66 1.6s Sem parallel
[ ] 11 0 0 11 / 66 1.8s Sem parallel
[ ] 13 0 0 13 / 66 1.9s Sem parallel
[ ] 15 0 0 15 / 66 2.2s Sem parallel
[ ] 17 0 0 17 / 66 2.5s Sem parallel
[ ] 18 0 0 18 / 66 2.7s Sem parallel
[ ] 20 0 0 20 / 66 2.9s Sem parallel
[ ] 22 0 0 22 / 66 3.1s Sem parallel
[ ] 23 0 0 23 / 66 3.2s Sem parallel
[ ] 25 0 0 25 / 66 3.4s Sem parallel
[ ] 27 0 0 27 / 66 3.5s Sem parallel
[ ] 31 0 0 31 / 66 3.7s Sem parallel
[ ] 33 0 0 33 / 66 3.9s Sem parallel
[ ] 36 0 0 36 / 66 4.0s Sem parallel
[ ] 37 0 0 37 / 66 4.2s Sem parallel
[ ] 40 0 0 40 / 66 4.3s Sem parallel
[ ] 42 0 0 42 / 66 4.5s Sem parallel
[ ] 44 0 0 44 / 66 4.6s Sem parallel
[ ] 46 0 0 46 / 66 4.8s Sem parallel
[ ] 47 0 0 47 / 66 5.0s Sem parallel
[ ] 48 0 0 48 / 66 5.6s Sem parallel
[ ] 49 0 0 49 / 66 5.7s Sem parallel
[ ] 50 0 0 50 / 66 5.8s Sem parallel
[ ] 51 0 0 51 / 66 6.0s Sem parallel
[ ] 52 0 0 52 / 66 6.1s Sem parallel
[ ] 53 0 0 53 / 66 6.3s Sem parallel
[ ] 54 0 0 54 / 66 7.0s Sem parallel
[ ] 55 0 0 55 / 66 7.2s Sem parallel
[ ] 57 0 0 57 / 66 7.3s Sem parallel
[ ] 59 0 0 59 / 66 7.5s Sem parallel
[ ] 60 0 0 60 / 66 7.9s Sem parallel
[ ] 61 0 0 61 / 66 8.3s Sem parallel
[ ] 62 0 0 62 / 66 8.6s Sem parallel
[ ] 63 0 0 63 / 66 8.8s Sem parallel
[ ] 64 0 0 64 / 66 9.0s Sem parallel
[ ] 66 0 0 66 / 66 9.2s Sem parallel
[✓] 66 0 0 66 / 66 9.2s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 1291779413167821771
generated error fail pass / total time test name
[ ] 0 0 0 0 / 43 0.0s Sem sequential
[✓] 43 0 0 43 / 43 0.0s Sem sequential
[ ] 0 0 0 0 / 43 0.0s Sem parallel
[ ] 1 0 0 1 / 43 0.2s Sem parallel
[ ] 2 0 0 2 / 43 0.7s Sem parallel
[ ] 3 0 0 3 / 43 0.8s Sem parallel
[ ] 7 0 0 7 / 43 1.0s Sem parallel
[ ] 9 0 0 9 / 43 1.1s Sem parallel
[ ] 11 0 0 11 / 43 1.2s Sem parallel
[ ] 14 0 0 14 / 43 1.3s Sem parallel
[ ] 16 0 0 16 / 43 1.6s Sem parallel
[ ] 17 0 0 17 / 43 1.9s Sem parallel
[ ] 18 0 0 18 / 43 2.3s Sem parallel
[ ] 19 0 0 19 / 43 2.6s Sem parallel
[ ] 20 0 0 20 / 43 3.1s Sem parallel
[ ] 21 0 0 21 / 43 3.5s Sem parallel
[ ] 22 0 0 22 / 43 3.8s Sem parallel
[ ] 23 0 0 23 / 43 4.0s Sem parallel
[ ] 24 0 0 24 / 43 4.3s Sem parallel
[ ] 25 0 0 25 / 43 4.7s Sem parallel
[ ] 26 0 0 26 / 43 5.0s Sem parallel
[ ] 29 0 0 29 / 43 5.1s Sem parallel
[ ] 31 0 0 31 / 43 5.2s Sem parallel
[ ] 33 0 0 33 / 43 5.4s Sem parallel
[ ] 34 0 0 34 / 43 5.6s Sem parallel
[ ] 36 0 0 36 / 43 5.8s Sem parallel
[ ] 38 0 0 38 / 43 5.9s Sem parallel
[ ] 39 0 0 39 / 43 6.1s Sem parallel
[ ] 40 0 0 40 / 43 6.3s Sem parallel
[ ] 43 0 0 43 / 43 6.5s Sem parallel
[✓] 43 0 0 43 / 43 6.5s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 3366080055064059246
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Sem sequential
[✓] 32 0 0 32 / 32 0.0s Sem sequential
[ ] 0 0 0 0 / 32 0.0s Sem parallel
[ ] 1 0 0 1 / 32 0.2s Sem parallel
[ ] 2 0 0 2 / 32 0.4s Sem parallel
[ ] 3 0 0 3 / 32 0.6s Sem parallel
[ ] 4 0 0 4 / 32 1.2s Sem parallel
[ ] 5 0 0 5 / 32 1.3s Sem parallel
[ ] 6 0 0 6 / 32 1.6s Sem parallel
[ ] 8 0 0 8 / 32 1.7s Sem parallel
[ ] 9 0 0 9 / 32 2.1s Sem parallel
[ ] 10 0 0 10 / 32 2.4s Sem parallel
[ ] 11 0 0 11 / 32 2.9s Sem parallel
[ ] 12 0 0 12 / 32 3.4s Sem parallel
[ ] 13 0 0 13 / 32 4.1s Sem parallel
[ ] 14 0 0 14 / 32 4.5s Sem parallel
[ ] 15 0 0 15 / 32 4.9s Sem parallel
[ ] 16 0 0 16 / 32 5.2s Sem parallel
[ ] 17 0 0 17 / 32 5.4s Sem parallel
[ ] 18 0 0 18 / 32 5.8s Sem parallel
[ ] 19 0 0 19 / 32 5.9s Sem parallel
[ ] 20 0 0 20 / 32 6.0s Sem parallel
[ ] 21 0 0 21 / 32 6.2s Sem parallel
[ ] 22 0 0 22 / 32 6.4s Sem parallel
[ ] 23 0 0 23 / 32 6.6s Sem parallel
[ ] 24 0 0 24 / 32 6.8s Sem parallel
[ ] 25 0 0 25 / 32 7.2s Sem parallel
[ ] 26 0 0 26 / 32 7.4s Sem parallel
[ ] 27 0 0 27 / 32 7.5s Sem parallel
[ ] 28 0 0 28 / 32 7.9s Sem parallel
[ ] 29 0 0 29 / 32 8.2s Sem parallel
[ ] 30 0 0 30 / 32 8.5s Sem parallel
[ ] 31 0 0 31 / 32 9.0s Sem parallel
[ ] 32 0 0 32 / 32 9.3s Sem parallel
[✓] 32 0 0 32 / 32 9.3s Sem parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_htbl.exe)
random seed: 2595295974997347270
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Htbl sequential
[✓] 32 0 0 32 / 32 0.0s Htbl sequential
[ ] 0 0 0 0 / 32 0.0s Htbl parallel
[ ] 1 0 0 1 / 32 2.2s Htbl parallel
[ ] 2 0 0 2 / 32 3.0s Htbl parallel
[ ] 3 0 0 3 / 32 4.1s Htbl parallel
[ ] 4 0 0 4 / 32 4.9s Htbl parallel
[ ] 5 0 0 5 / 32 5.6s Htbl parallel
[ ] 6 0 0 6 / 32 6.2s Htbl parallel
[ ] 7 0 0 7 / 32 7.3s Htbl parallel
[ ] 8 0 0 8 / 32 7.9s Htbl parallel
[ ] 9 0 0 9 / 32 9.3s Htbl parallel
[ ] 10 0 0 10 / 32 10.3s Htbl parallel
[ ] 11 0 0 11 / 32 11.2s Htbl parallel
[ ] 12 0 0 12 / 32 12.2s Htbl parallel
[ ] 13 0 0 13 / 32 13.0s Htbl parallel
[ ] 14 0 0 14 / 32 13.7s Htbl parallel
[ ] 15 0 0 15 / 32 14.6s Htbl parallel
[ ] 16 0 0 16 / 32 15.7s Htbl parallel
[ ] 17 0 0 17 / 32 16.5s Htbl parallel
[ ] 18 0 0 18 / 32 17.2s Htbl parallel
[ ] 19 0 0 19 / 32 18.1s Htbl parallel
[ ] 20 0 0 20 / 32 18.9s Htbl parallel
[ ] 21 0 0 21 / 32 20.0s Htbl parallel
[ ] 22 0 0 22 / 32 20.6s Htbl parallel
[ ] 23 0 0 23 / 32 21.1s Htbl parallel
[ ] 24 0 0 24 / 32 21.7s Htbl parallel
[ ] 25 0 0 25 / 32 22.3s Htbl parallel
[ ] 26 0 0 26 / 32 22.9s Htbl parallel
[ ] 27 0 0 27 / 32 23.5s Htbl parallel
[ ] 28 0 0 28 / 32 24.1s Htbl parallel
[ ] 29 0 0 29 / 32 24.6s Htbl parallel
[ ] 30 0 0 30 / 32 25.2s Htbl parallel
[ ] 31 0 0 31 / 32 25.6s Htbl parallel
[ ] 32 0 0 32 / 32 25.7s Htbl parallel
[✓] 32 0 0 32 / 32 25.7s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 2434543720630997044
generated error fail pass / total time test name
[ ] 0 0 0 0 / 42 0.0s Htbl sequential
[✓] 42 0 0 42 / 42 0.0s Htbl sequential
[ ] 0 0 0 0 / 42 0.0s Htbl parallel
[ ] 1 0 0 1 / 42 0.3s Htbl parallel
[ ] 2 0 0 2 / 42 0.4s Htbl parallel
[ ] 3 0 0 3 / 42 0.6s Htbl parallel
[ ] 4 0 0 4 / 42 0.8s Htbl parallel
[ ] 6 0 0 6 / 42 1.0s Htbl parallel
[ ] 8 0 0 8 / 42 1.1s Htbl parallel
[ ] 9 0 0 9 / 42 1.4s Htbl parallel
[ ] 10 0 0 10 / 42 1.6s Htbl parallel
[ ] 11 0 0 11 / 42 1.7s Htbl parallel
[ ] 12 0 0 12 / 42 1.8s Htbl parallel
[ ] 13 0 0 13 / 42 2.0s Htbl parallel
[ ] 14 0 0 14 / 42 2.2s Htbl parallel
[ ] 15 0 0 15 / 42 2.3s Htbl parallel
[ ] 16 0 0 16 / 42 2.6s Htbl parallel
[ ] 17 0 0 17 / 42 2.9s Htbl parallel
[ ] 18 0 0 18 / 42 3.3s Htbl parallel
[ ] 19 0 0 19 / 42 3.4s Htbl parallel
[ ] 20 0 0 20 / 42 3.6s Htbl parallel
[ ] 21 0 0 21 / 42 3.8s Htbl parallel
[ ] 22 0 0 22 / 42 4.0s Htbl parallel
[ ] 23 0 0 23 / 42 4.6s Htbl parallel
[ ] 24 0 0 24 / 42 4.8s Htbl parallel
[ ] 25 0 0 25 / 42 5.2s Htbl parallel
[ ] 26 0 0 26 / 42 5.3s Htbl parallel
[ ] 27 0 0 27 / 42 5.5s Htbl parallel
[ ] 28 0 0 28 / 42 5.6s Htbl parallel
[ ] 29 0 0 29 / 42 5.8s Htbl parallel
[ ] 30 0 0 30 / 42 6.0s Htbl parallel
[ ] 31 0 0 31 / 42 6.3s Htbl parallel
[ ] 33 0 0 33 / 42 6.6s Htbl parallel
[ ] 34 0 0 34 / 42 6.7s Htbl parallel
[ ] 35 0 0 35 / 42 6.8s Htbl parallel
[ ] 37 0 0 37 / 42 6.9s Htbl parallel
[ ] 38 0 0 38 / 42 7.1s Htbl parallel
[ ] 39 0 0 39 / 42 7.2s Htbl parallel
[ ] 41 0 0 41 / 42 7.7s Htbl parallel
[✓] 42 0 0 42 / 42 7.8s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 3937130941170905199
generated error fail pass / total time test name
[ ] 0 0 0 0 / 58 0.0s Htbl sequential
[✓] 58 0 0 58 / 58 0.0s Htbl sequential
[ ] 0 0 0 0 / 58 0.0s Htbl parallel
[ ] 2 0 0 2 / 58 0.2s Htbl parallel
[ ] 3 0 0 3 / 58 0.3s Htbl parallel
[ ] 4 0 0 4 / 58 0.4s Htbl parallel
[ ] 5 0 0 5 / 58 0.6s Htbl parallel
[ ] 6 0 0 6 / 58 0.7s Htbl parallel
[ ] 9 0 0 9 / 58 0.8s Htbl parallel
[ ] 11 0 0 11 / 58 1.3s Htbl parallel
[ ] 12 0 0 12 / 58 1.6s Htbl parallel
[ ] 13 0 0 13 / 58 1.7s Htbl parallel
[ ] 15 0 0 15 / 58 1.9s Htbl parallel
[ ] 17 0 0 17 / 58 2.2s Htbl parallel
[ ] 20 0 0 20 / 58 2.5s Htbl parallel
[ ] 21 0 0 21 / 58 2.6s Htbl parallel
[ ] 23 0 0 23 / 58 2.7s Htbl parallel
[ ] 25 0 0 25 / 58 2.8s Htbl parallel
[ ] 28 0 0 28 / 58 2.9s Htbl parallel
[ ] 29 0 0 29 / 58 3.6s Htbl parallel
[ ] 31 0 0 31 / 58 3.7s Htbl parallel
[ ] 33 0 0 33 / 58 3.8s Htbl parallel
[ ] 35 0 0 35 / 58 4.2s Htbl parallel
[ ] 37 0 0 37 / 58 4.4s Htbl parallel
[ ] 39 0 0 39 / 58 4.7s Htbl parallel
[ ] 41 0 0 41 / 58 5.0s Htbl parallel
[ ] 42 0 0 42 / 58 5.9s Htbl parallel
[ ] 43 0 0 43 / 58 6.1s Htbl parallel
[ ] 44 0 0 44 / 58 6.2s Htbl parallel
[ ] 45 0 0 45 / 58 6.4s Htbl parallel
[ ] 46 0 0 46 / 58 6.6s Htbl parallel
[ ] 47 0 0 47 / 58 7.1s Htbl parallel
[ ] 48 0 0 48 / 58 7.2s Htbl parallel
[ ] 49 0 0 49 / 58 7.6s Htbl parallel
[ ] 50 0 0 50 / 58 8.1s Htbl parallel
[ ] 52 0 0 52 / 58 8.3s Htbl parallel
[ ] 53 0 0 53 / 58 8.4s Htbl parallel
[ ] 54 0 0 54 / 58 8.5s Htbl parallel
[ ] 57 0 0 57 / 58 8.7s Htbl parallel
[ ] 58 0 0 58 / 58 8.9s Htbl parallel
[✓] 58 0 0 58 / 58 8.9s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 2032048745115378509
generated error fail pass / total time test name
[ ] 0 0 0 0 / 54 0.0s Htbl sequential
[✓] 54 0 0 54 / 54 0.0s Htbl sequential
[ ] 0 0 0 0 / 54 0.0s Htbl parallel
[ ] 4 0 0 4 / 54 0.2s Htbl parallel
[ ] 5 0 0 5 / 54 0.3s Htbl parallel
[ ] 7 0 0 7 / 54 0.4s Htbl parallel
[ ] 8 0 0 8 / 54 0.5s Htbl parallel
[ ] 12 0 0 12 / 54 0.8s Htbl parallel
[ ] 14 0 0 14 / 54 0.9s Htbl parallel
[ ] 16 0 0 16 / 54 1.0s Htbl parallel
[ ] 18 0 0 18 / 54 1.1s Htbl parallel
[ ] 20 0 0 20 / 54 1.3s Htbl parallel
[ ] 21 0 0 21 / 54 1.4s Htbl parallel
[ ] 23 0 0 23 / 54 1.5s Htbl parallel
[ ] 24 0 0 24 / 54 2.3s Htbl parallel
[ ] 25 0 0 25 / 54 2.6s Htbl parallel
[ ] 26 0 0 26 / 54 2.7s Htbl parallel
[ ] 27 0 0 27 / 54 2.9s Htbl parallel
[ ] 29 0 0 29 / 54 3.1s Htbl parallel
[ ] 31 0 0 31 / 54 3.2s Htbl parallel
[ ] 33 0 0 33 / 54 3.4s Htbl parallel
[ ] 34 0 0 34 / 54 3.7s Htbl parallel
[ ] 35 0 0 35 / 54 3.9s Htbl parallel
[ ] 36 0 0 36 / 54 4.1s Htbl parallel
[ ] 37 0 0 37 / 54 4.2s Htbl parallel
[ ] 39 0 0 39 / 54 4.4s Htbl parallel
[ ] 40 0 0 40 / 54 4.6s Htbl parallel
[ ] 41 0 0 41 / 54 4.9s Htbl parallel
[ ] 42 0 0 42 / 54 5.2s Htbl parallel
[ ] 43 0 0 43 / 54 5.6s Htbl parallel
[ ] 44 0 0 44 / 54 5.9s Htbl parallel
[ ] 45 0 0 45 / 54 6.1s Htbl parallel
[ ] 48 0 0 48 / 54 6.2s Htbl parallel
[ ] 52 0 0 52 / 54 6.3s Htbl parallel
[ ] 54 0 0 54 / 54 6.5s Htbl parallel
[✓] 54 0 0 54 / 54 6.5s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 2775525590064081402
generated error fail pass / total time test name
[ ] 0 0 0 0 / 42 0.0s Htbl sequential
[✓] 42 0 0 42 / 42 0.0s Htbl sequential
[ ] 0
0 0 0 / 42 0.0s Htbl parallel
[ ] 2 0 0 2 / 42 0.1s Htbl parallel
[ ] 6 0 0 6 / 42 0.2s Htbl parallel
[ ] 8 0 0 8 / 42 0.7s Htbl parallel
[ ] 9 0 0 9 / 42 0.9s Htbl parallel
[ ] 11 0 0 11 / 42 1.0s Htbl parallel
[ ] 15 0 0 15 / 42 1.1s Htbl parallel
[ ] 17 0 0 17 / 42 1.4s Htbl parallel
[ ] 18 0 0 18 / 42 1.5s Htbl parallel
[ ] 19 0 0 19 / 42 1.8s Htbl parallel
[ ] 21 0 0 21 / 42 2.0s Htbl parallel
[ ] 22 0 0 22 / 42 2.3s Htbl parallel
[ ] 23 0 0 23 / 42 2.7s Htbl parallel
[ ] 24 0 0 24 / 42 3.2s Htbl parallel
[ ] 25 0 0 25 / 42 3.4s Htbl parallel
[ ] 26 0 0 26 / 42 3.7s Htbl parallel
[ ] 27 0 0 27 / 42 3.9s Htbl parallel
[ ] 28 0 0 28 / 42 4.2s Htbl parallel
[ ] 29 0 0 29 / 42 4.4s Htbl parallel
[ ] 30 0 0 30 / 42 4.6s Htbl parallel
[ ] 34 0 0 34 / 42 4.7s Htbl parallel
[ ] 35 0 0 35 / 42 4.8s Htbl parallel
[ ] 37 0 0 37 / 42 5.0s Htbl parallel
[ ] 38 0 0 38 / 42 5.2s Htbl parallel
[ ] 39 0 0 39 / 42 5.3s Htbl parallel
[ ] 40 0 0 40 / 42 5.6s Htbl parallel
[ ] 41 0 0 41 / 42 5.7s Htbl parallel
[ ] 42 0 0 42 / 42 5.8s Htbl parallel
[✓] 42 0 0 42 / 42 5.8s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 3503587766207810061
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.2s Htbl parallel
[ ] 4 0 0 4 / 32 1.0s Htbl parallel
[ ] 5 0 0 5 / 32 1.4s Htbl parallel
[ ] 6 0 0 6 / 32 1.6s Htbl parallel
[ ] 7 0 0 7 / 32 1.8s Htbl parallel
[ ] 8 0 0 8 / 32 2.0s Htbl parallel
[ ] 10 0 0 10 / 32 2.1s Htbl parallel
[ ] 11 0 0 11 / 32 2.4s Htbl parallel
[ ] 12 0 0 12 / 32 2.9s Htbl parallel
[ ] 13 0 0 13 / 32 3.3s Htbl parallel
[ ] 14 0 0 14 / 32 3.9s Htbl parallel
[ ] 15 0 0 15 / 32 4.3s Htbl parallel
[ ] 16 0 0 16 / 32 4.7s Htbl parallel
[ ] 17 0 0 17 / 32 4.9s Htbl parallel
[ ] 18 0 0 18 / 32 5.1s Htbl parallel
[ ] 19 0 0 19 / 32 5.7s Htbl parallel
[ ] 20 0 0 20 / 32 5.9s Htbl parallel
[ ] 21 0 0 21 / 32 6.0s Htbl parallel
[ ] 22 0 0 22 / 32 6.2s Htbl parallel
[ ] 23 0 0 23 / 32 6.7s Htbl parallel
[ ] 24 0 0 24 / 32 7.3s Htbl parallel
[ ] 25 0 0 25 / 32 7.8s Htbl parallel
[ ] 26 0 0 26 / 32 8.6s Htbl parallel
[ ] 27 0 0 27 / 32 9.0s Htbl parallel
[ ] 28 0 0 28 / 32 9.4s Htbl parallel
[ ] 29 0 0 29 / 32 9.7s Htbl parallel
[ ] 30 0 0 30 / 32 9.9s Htbl parallel
[ ] 31 0 0 31 / 32 10.0s Htbl parallel
[ ] 32 0 0 32 / 32 10.1s Htbl parallel
[✓] 32 0 0 32 / 32 10.1s Htbl parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_mutex.exe)
random seed: 825115618677311435
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Mutex sequential
[✓] 32 0 0 32 / 32 0.0s Mutex sequential
[ ] 0 0 0 0 / 32 0.0s Mutex parallel
[ ] 1 0 0 1 / 32 1.1s Mutex parallel
[ ] 2 0 0 2 / 32 2.1s Mutex parallel
[ ] 3 0 0 3 / 32 2.7s Mutex parallel
[ ] 4 0 0 4 / 32 3.4s Mutex parallel
[ ] 5 0 0 5 / 32 4.2s Mutex parallel
[ ] 6 0 0 6 / 32 5.4s Mutex parallel
[ ] 7 0 0 7 / 32 6.1s Mutex parallel
[ ] 8 0 0 8 / 32 6.7s Mutex parallel
[ ] 9 0 0 9 / 32 7.4s Mutex parallel
[ ] 10 0 0 10 / 32 8.4s Mutex parallel
[ ] 11 0 0 11 / 32 9.8s Mutex parallel
[ ] 12 0 0 12 / 32 10.9s Mutex parallel
[ ] 13 0 0 13 / 32 12.2s Mutex parallel
[ ] 14 0 0 14 / 32 13.0s Mutex parallel
[ ] 15 0 0 15 / 32 14.0s Mutex parallel
[ ] 16 0 0 16 / 32 14.8s Mutex parallel
[ ] 17 0 0 17 / 32 15.7s Mutex parallel
[ ] 18 0 0 18 / 32 16.7s Mutex parallel
[ ] 19 0 0 19 / 32 17.7s Mutex parallel
[ ] 20 0 0 20 / 32 18.6s Mutex parallel
[ ] 21 0 0 21 / 32 19.5s Mutex parallel
[ ] 22 0 0 22 / 32 20.6s Mutex parallel
[ ] 23 0 0 23 / 32 21.1s Mutex parallel
[ ] 24 0 0 24 / 32 21.5s Mutex parallel
[ ] 25 0 0 25 / 32 22.0s Mutex parallel
[ ] 26 0 0 26 / 32 22.4s Mutex parallel
[ ] 27 0 0 27 / 32 23.2s Mutex parallel
[ ] 28 0 0 28 / 32 23.9s Mutex parallel
[ ] 29 0 0 29 / 32 24.4s Mutex parallel
[ ] 30 0 0 30 / 32 24.9s Mutex parallel
[ ] 31 0 0 31 / 32 25.6s Mutex parallel
[ ] 32 0 0 32 / 32 25.7s Mutex parallel
[✓] 32 0 0 32 / 32 25.7s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 3221908241781401464
generated error fail pass / total time test name
[ ] 0 0 0 0 / 42 0.0s Mutex sequential
[✓] 42 0 0 42 / 42 0.0s Mutex sequential
[ ] 0 0 0 0 / 42 0.0s Mutex parallel
[ ] 1 0 0 1 / 42 0.1s Mutex parallel
[ ] 2 0 0 2 / 42 0.3s Mutex parallel
[ ] 3 0 0 3 / 42 0.4s Mutex parallel
[ ] 4 0 0 4 / 42 0.5s Mutex parallel
[ ] 5 0 0 5 / 42 0.7s Mutex parallel
[ ] 6 0 0 6 / 42 0.9s Mutex parallel
[ ] 7 0 0 7 / 42 1.5s Mutex parallel
[ ] 8 0 0 8 / 42 1.7s Mutex parallel
[ ] 9 0 0 9 / 42 1.8s Mutex parallel
[ ] 10 0 0 10 / 42 2.1s Mutex parallel
[ ] 11 0 0 11 / 42 2.2s Mutex parallel
[ ] 12 0 0 12 / 42 2.6s Mutex parallel
[ ] 13 0 0 13 / 42 3.4s Mutex parallel
[ ] 14 0 0 14 / 42 3.6s Mutex parallel
[ ] 15 0 0 15 / 42 4.2s Mutex parallel
[ ] 16 0 0 16 / 42 4.4s Mutex parallel
[ ] 17 0 0 17 / 42 4.5s Mutex parallel
[ ] 18 0 0 18 / 42 4.7s Mutex parallel
[ ] 19 0 0 19 / 42 5.0s Mutex parallel
[ ] 20 0 0 20 / 42 5.1s Mutex parallel
[ ] 21 0 0 21 / 42 5.3s Mutex parallel
[ ] 22 0 0 22 / 42 5.5s Mutex parallel
[ ] 23 0 0 23 / 42 5.7s Mutex parallel
[ ] 24 0 0 24 / 42 5.8s Mutex parallel
[ ] 25 0 0 25 / 42 6.0s Mutex parallel
[ ] 27 0 0 27 / 42 6.4s Mutex parallel
[ ] 28 0 0 28 / 42 6.6s Mutex parallel
[ ] 30 0 0 30 / 42 6.8s Mutex parallel
[ ] 32 0 0 32 / 42 7.0s Mutex parallel
[ ] 33 0 0 33 / 42 7.2s Mutex parallel
[ ] 35 0 0 35 / 42 7.5s Mutex parallel
[ ] 36 0 0 36 / 42 7.6s Mutex parallel
[ ] 37 0 0 37 / 42 7.8s Mutex parallel
[ ] 39 0 0 39 / 42 8.4s Mutex parallel
[ ] 41 0 0 41 / 42 8.5s Mutex parallel
[✓] 42 0 0 42 / 42 8.5s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 4032161594555363562
generated error fail pass / total time test name
[ ] 0 0 0 0 / 55 0.0s Mutex sequential
[✓] 55 0 0 55 / 55 0.0s Mutex sequential
[ ] 0 0 0 0 / 55 0.0s Mutex parallel
[ ] 3 0 0 3 / 55 0.4s Mutex parallel
[ ] 6 0 0 6 / 55 0.5s Mutex parallel
[ ] 7 0 0 7 / 55 0.6s Mutex parallel
[ ] 10 0 0 10 / 55 1.1s Mutex parallel
[ ] 13 0 0 13 / 55 1.3s Mutex parallel
[ ] 16 0 0 16 / 55 1.4s Mutex parallel
[ ] 18 0 0 18 / 55 1.6s Mutex parallel
[ ] 20 0 0 20 / 55 2.1s Mutex parallel
[ ] 22 0 0 22 / 55 2.5s Mutex parallel
[ ] 23 0 0 23 / 55 2.7s Mutex parallel
[ ] 24 0 0 24 / 55 2.8s Mutex parallel
[ ] 26 0 0 26 / 55 3.3s Mutex parallel
[ ] 28 0 0 28 / 55 3.4s Mutex parallel
[ ] 31 0 0 31 / 55 3.5s Mutex parallel
[ ] 34 0 0 34 / 55 3.7s Mutex parallel
[ ] 37 0 0 37 / 55 3.9s Mutex parallel
[ ] 38 0 0 38 / 55 4.3s Mutex parallel
[ ] 40 0 0 40 / 55 4.4s Mutex parallel
[ ] 42 0 0 42 / 55 4.5s Mutex parallel
[ ] 45 0 0 45 / 55 4.6s Mutex parallel
[ ] 46 0 0 46 / 55 5.0s Mutex parallel
[ ] 47 0 0 47 / 55 5.3s Mutex parallel
[ ] 49 0 0 49 / 55 5.5s Mutex parallel
[ ] 50 0 0 50 / 55 5.7s Mutex parallel
[ ] 52 0 0 52 / 55 6.3s Mutex parallel
[ ] 53 0 0 53 / 55 6.4s Mutex parallel
[ ] 55 0 0 55 / 55 6.5s Mutex parallel
[✓] 55 0 0 55 / 55 6.5s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 2129562688894525691
generated error fail pass / total time test name
[ ] 0 0 0 0 / 60 0.0s Mutex sequential
[✓] 60 0 0 60 / 60 0.0s Mutex sequential
[ ] 0 0 0 0 / 60 0.0s Mutex parallel
[ ] 3 0 0 3 / 60 0.1s Mutex parallel
[ ] 4 0 0 4 / 60 0.2s Mutex parallel
[ ] 5 0 0 5 / 60 0.4s Mutex parallel
[ ] 6 0 0 6 / 60 0.7s Mutex parallel
[ ] 7 0 0 7 / 60 0.8s Mutex parallel
[ ] 8 0 0 8 / 60 1.0s Mutex parallel
[ ] 9 0 0 9 / 60 1.2s Mutex parallel
[ ] 10 0 0 10 / 60 1.3s Mutex parallel
[ ] 12 0 0 12 / 60 1.4s Mutex parallel
[ ] 14 0 0 14 / 60 1.5s Mutex parallel
[ ] 16 0 0 16 / 60 2.0s Mutex parallel
[ ] 17 0 0 17 / 60 2.4s Mutex parallel
[ ] 18 0 0 18 / 60 2.5s Mutex parallel
[ ] 19 0 0 19 / 60 2.6s Mutex parallel
[ ] 21 0 0 21 / 60 2.7s Mutex parallel
[ ] 25 0 0 25 / 60 2.8s Mutex parallel
[ ] 28 0 0 28 / 60 3.3s Mutex parallel
[ ] 30 0 0 30 / 60 3.6s Mutex parallel
[ ] 31 0 0 31 / 60 4.0s Mutex parallel
[ ] 32 0 0 32 / 60 4.2s Mutex parallel
[ ] 33 0 0 33 / 60 4.5s Mutex parallel
[ ] 35 0 0 35 / 60 5.1s Mutex parallel
[ ] 36 0 0 36 / 60 5.4s Mutex parallel
[ ] 37 0 0 37 / 60 5.6s Mutex parallel
[ ] 38 0 0 38 / 60 5.8s Mutex parallel
[ ] 39 0 0 39 / 60 6.1s Mutex parallel
[ ] 40 0 0 40 / 60 6.3s Mutex parallel
[ ] 41 0 0 41 / 60 6.6s Mutex parallel
[ ] 42 0 0 42 / 60 6.9s Mutex parallel
[ ] 43 0 0 43 / 60 7.2s Mutex parallel
[ ] 44 0 0 44 / 60 7.6s Mutex parallel
[ ] 45 0 0 45 / 60 7.7s Mutex parallel
[ ] 49 0 0 49 / 60 7.8s Mutex parallel
[ ] 50 0 0 50 / 60 8.1s Mutex parallel
[ ] 51 0 0 51 / 60 8.3s Mutex parallel
[ ] 54 0 0 54 / 60 8.4s Mutex parallel
[ ] 55 0 0 55 / 60 8.5s Mutex parallel
[ ] 58 0 0 58 / 60 8.7s Mutex parallel
[ ] 60 0 0 60 / 60 8.8s Mutex parallel
[✓] 60 0 0 60 / 60 8.8s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 648918019924230428
generated error fail pass / total time test name
[ ] 0 0 0 0 / 39 0.0s Mutex sequential
[✓] 39 0 0 39 / 39 0.0s Mutex sequential
[ ] 0 0 0 0 / 39 0.0s Mutex parallel
[ ] 1 0 0 1 / 39 0.1s Mutex parallel
[ ] 3 0 0 3 / 39 0.2s Mutex parallel
[ ] 5 0 0 5 / 39 0.4s Mutex parallel
[ ] 8 0 0 8 / 39 0.5s Mutex parallel
[ ] 9 0 0 9 / 39 0.7s Mutex parallel
[ ] 11 0 0 11 / 39 1.0s Mutex parallel
[ ] 12 0 0 12 / 39 1.2s Mutex parallel
[ ] 14 0 0 14 / 39 1.3s Mutex parallel
[ ] 15 0 0 15 / 39 1.6s Mutex parallel
[ ] 16 0 0 16 / 39 2.0s Mutex parallel
[ ] 17 0 0 17 / 39 2.4s Mutex parallel
[ ] 18 0 0 18 / 39 3.2s Mutex parallel
[ ] 19 0 0 19 / 39 3.6s Mutex parallel
[ ] 20 0 0 20 / 39 3.9s Mutex parallel
[ ] 22 0 0 22 / 39 4.1s Mutex parallel
[ ] 23 0 0 23 / 39 4.2s Mutex parallel
[ ] 26 0 0 26 / 39 4.4s Mutex parallel
[ ] 27 0 0 27 / 39 4.5s Mutex parallel
[ ] 29 0 0 29 / 39 4.7s Mutex parallel
[ ] 31 0 0 31 / 39 4.8s Mutex parallel
[ ] 34 0 0 34 / 39 5.0s Mutex parallel
[ ] 35 0 0 35 / 39 5.1s Mutex parallel
[ ] 37 0 0 37 / 39 5.4s Mutex parallel
[ ] 39 0 0 39 / 39 5.6s Mutex parallel
[✓] 39 0 0 39 / 39 5.6s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 2449732408573533296
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.3s Mutex parallel
[ ] 3 0 0 3 / 32 0.9s Mutex parallel
[ ] 4 0 0 4 / 32 1.2s Mutex parallel
[ ] 6 0 0 6 / 32 1.3s Mutex parallel
[ ] 7 0 0 7 / 32 2.0s Mutex parallel
[ ] 8 0 0 8 / 32 2.3s Mutex parallel
[ ] 9 0 0 9 / 32 2.8s Mutex parallel
[ ] 10 0 0 10 / 32 3.3s Mutex parallel
[ ] 11 0 0 11 / 32 3.7s Mutex parallel
[ ] 12 0 0 12 / 32 4.3s Mutex parallel
[ ] 13 0 0 13 / 32 4.6s Mutex parallel
[ ] 14 0 0 14 / 32 5.0s Mutex parallel
[ ] 15 0 0 15 / 32 5.1s Mutex parallel
[ ] 16 0 0 16 / 32 5.3s Mutex parallel
[ ] 17 0 0 17 / 32 5.5s Mutex parallel
[ ] 18 0 0 18 / 32 6.0s Mutex parallel
[ ] 19 0 0 19 / 32 6.1s Mutex parallel
[ ] 20 0 0 20 / 32 6.3s Mutex parallel
[ ] 21 0 0 21 / 32 6.5s Mutex parallel
[ ] 22 0 0 22 / 32 6.8s Mutex parallel
[ ] 23 0 0 23 / 32 7.0s Mutex parallel
[ ] 24 0 0 24 / 32 7.3s Mutex parallel
[ ] 25 0 0 25 / 32 7.4s Mutex parallel
[ ] 26 0 0 26 / 32 7.8s Mutex parallel
[ ] 27 0 0 27 / 32 8.1s Mutex parallel
[ ] 28 0 0 28 / 32 8.7s Mutex parallel
[ ] 29 0 0 29 / 32 9.2s Mutex parallel
[ ] 30 0 0 30 / 32 9.5s Mutex parallel
[ ] 31 0 0 31 / 32 9.7s Mutex parallel
[ ] 32 0 0 32 / 32 9.8s Mutex parallel
[✓] 32 0 0 32 / 32 9.8s Mutex parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_mpmcq.exe)
random seed: 790238131539559589
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Mpmcq sequential
[✓] 32 0 0 32 / 32 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 32 0.0s Mpmcq parallel
[ ] 1 0 0 1 / 32 1.3s Mpmcq parallel
[ ] 2 0 0 2 / 32 2.4s Mpmcq parallel
[ ] 3 0 0 3 / 32 3.0s Mpmcq parallel
[ ] 4 0 0 4 / 32 3.9s Mpmcq parallel
[ ] 5 0 0 5 / 32 4.7s Mpmcq parallel
[ ] 6 0 0 6 / 32 5.7s Mpmcq parallel
[ ] 7 0 0 7 / 32 6.5s Mpmcq parallel
[ ] 8 0 0 8 / 32 7.3s Mpmcq parallel
[ ] 9 0 0 9 / 32 8.3s Mpmcq parallel
[ ] 10 0 0 10 / 32 9.4s Mpmcq parallel
[ ] 11 0 0 11 / 32 10.9s Mpmcq parallel
[ ] 12 0 0 12 / 32 12.1s Mpmcq parallel
[ ] 13 0 0 13 / 32 12.8s Mpmcq parallel
[ ] 14 0 0 14 / 32 13.4s Mpmcq parallel
[ ] 15 0 0 15 / 32 13.9s Mpmcq parallel
[ ] 16 0 0 16 / 32 14.7s Mpmcq parallel
[ ] 17 0 0 17 / 32 15.4s Mpmcq parallel
[ ] 18 0 0 18 / 32 17.0s Mpmcq parallel
[ ] 19 0 0 19 / 32 17.7s Mpmcq parallel
[ ] 20 0 0 20 / 32 18.3s Mpmcq parallel
[ ] 21 0 0 21 / 32 19.1s Mpmcq parallel
[ ] 22 0 0 22 / 32 20.1s Mpmcq parallel
[ ] 23 0 0 23 / 32 21.4s Mpmcq parallel
[ ] 24 0 0 24 / 32 21.9s Mpmcq parallel
[ ] 25 0 0 25 / 32 22.4s Mpmcq parallel
[ ] 26 0 0 26 / 32 23.0s Mpmcq parallel
[ ] 27 0 0 27 / 32 23.6s Mpmcq parallel
[ ] 28 0 0 28 / 32 24.0s Mpmcq parallel
[ ] 29 0 0 29 / 32 24.7s Mpmcq parallel
[ ] 30 0 0 30 / 32 25.0s Mpmcq parallel
[ ] 31 0 0 31 / 32 25.4s Mpmcq parallel
[ ] 32 0 0 32 / 32 25.6s Mpmcq parallel
[✓] 32 0 0 32 / 32 25.6s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 3050887319779020595
generated error fail pass / total time test name
[ ] 0 0 0 0 / 42 0.0s Mpmcq sequential
[✓] 42 0 0 42 / 42 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 42 0.0s Mpmcq parallel
[ ] 1 0 0 1 / 42 0.2s Mpmcq parallel
[ ] 2 0 0 2 / 42 0.3s Mpmcq parallel
[ ] 3 0 0 3 / 42 0.5s Mpmcq parallel
[ ] 5 0 0 5 / 42 0.8s Mpmcq parallel
[ ] 7 0 0 7 / 42 1.0s Mpmcq parallel
[ ] 8 0 0 8 / 42 1.1s Mpmcq parallel
[ ] 10 0 0 10 / 42 1.3s Mpmcq parallel
[ ] 11 0 0 11 / 42 1.6s Mpmcq parallel
[ ] 12 0 0 12 / 42 1.7s Mpmcq parallel
[ ] 13 0 0 13 / 42 2.0s Mpmcq parallel
[ ] 14 0 0 14 / 42 2.2s Mpmcq parallel
[ ] 15 0 0 15 / 42 2.5s Mpmcq parallel
[ ] 16 0 0 16 / 42 2.8s Mpmcq parallel
[ ] 17 0 0 17 / 42 3.1s Mpmcq parallel
[ ] 18 0 0 18 / 42 3.7s Mpmcq parallel
[ ] 19 0 0 19 / 42 3.9s Mpmcq parallel
[ ] 20 0 0 20 / 42 4.1s Mpmcq parallel
[ ] 21 0 0 21 / 42 4.5s Mpmcq parallel
[ ] 22 0 0 22 / 42 4.8s Mpmcq parallel
[ ] 23 0 0 23 / 42 4.9s Mpmcq parallel
[ ] 24 0 0 24 / 42 5.2s Mpmcq parallel
[ ] 25 0 0 25 / 42 5.4s Mpmcq parallel
[ ] 26 0 0 26 / 42 5.6s Mpmcq parallel
[ ] 27 0 0 27 / 42 5.8s Mpmcq parallel
[ ] 28 0 0 28 / 42 6.1s Mpmcq parallel
[ ] 29 0 0 29 / 42 6.4s Mpmcq parallel
[ ] 30 0 0 30 / 42 6.8s Mpmcq parallel
[ ] 32 0 0 32 / 42 7.2s Mpmcq parallel
[ ] 33 0 0 33 / 42 7.4s Mpmcq parallel
[ ] 35 0 0 35 / 42 7.5s Mpmcq parallel
[ ] 36 0 0 36 / 42 7.7s Mpmcq parallel
[ ] 37 0 0 37 / 42 7.8s Mpmcq parallel
[ ] 39 0 0 39 / 42 8.0s Mpmcq parallel
[ ] 40 0 0 40 / 42 8.5s Mpmcq parallel
[✓] 42 0 0 42 / 42 8.6s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 3176418520550269694
generated error fail pass / total time test name
[ ] 0 0 0 0 / 55 0.0s Mpmcq sequential
[✓] 55 0 0 55 / 55 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 55 0.0s Mpmcq parallel
[ ] 2 0 0 2 / 55 0.2s Mpmcq parallel
[ ] 4 0 0 4 / 55 0.4s Mpmcq parallel
[ ] 5 0 0 5 / 55 0.8s Mpmcq parallel
[ ] 6 0 0 6 / 55 1.1s Mpmcq parallel
[ ] 8 0 0 8 / 55 1.2s Mpmcq parallel
[ ] 12 0 0 12 / 55 1.4s Mpmcq parallel
[ ] 15 0 0 15 / 55 1.5s Mpmcq parallel
[ ] 18 0 0 18 / 55 1.7s Mpmcq parallel
[ ] 20 0 0 20 / 55 1.8s Mpmcq parallel
[ ] 21 0 0 21 / 55 2.0s Mpmcq parallel
[ ] 24 0 0 24 / 55 2.1s Mpmcq parallel
[ ] 25 0 0 25 / 55 2.3s Mpmcq parallel
[ ] 28 0 0 28 / 55 2.6s Mpmcq parallel
[ ] 29 0 0 29 / 55 2.7s Mpmcq parallel
[ ] 32 0 0 32 / 55 2.8s Mpmcq parallel
[ ] 33 0 0 33 / 55 3.0s Mpmcq parallel
[ ] 36 0 0 36 / 55 3.1s Mpmcq parallel
[ ] 38 0 0 38 / 55 3.4s Mpmcq parallel
[ ] 41 0 0 41 / 55 3.5s Mpmcq parallel
[ ] 43 0 0 43 / 55 3.8s Mpmcq parallel
[ ] 44 0 0 44 / 55 3.9s Mpmcq parallel
[ ] 46 0 0 46 / 55 4.1s Mpmcq parallel
[ ] 49 0 0 49 / 55 4.2s Mpmcq parallel
[ ] 52 0 0 52 / 55 4.4s Mpmcq parallel
[ ] 53 0 0 53 / 55 4.6s Mpmcq parallel
[ ] 54 0 0 54 / 55 5.0s Mpmcq parallel
[ ] 55 0 0 55 / 55 5.4s Mpmcq parallel
[✓] 55 0 0 55 / 55 5.4s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 717199353397439796
generated error fail pass / total time test name
[ ] 0 0 0 0 / 66 0.0s Mpmcq sequential
[✓] 66 0 0 66 / 66 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 66 0.0s Mpmcq parallel
[ ] 1 0 0 1 / 66 0.2s Mpmcq parallel
[ ] 3 0 0 3 / 66 0.3s Mpmcq parallel
[ ] 5 0 0 5 / 66 0.4s Mpmcq parallel
[ ] 6 0 0 6 / 66 0.6s Mpmcq parallel
[ ] 7 0 0 7 / 66 0.8s Mpmcq parallel
[ ] 8 0 0 8 / 66 0.9s Mpmcq parallel
[ ] 9 0 0 9 / 66 1.1s Mpmcq parallel
[ ] 10 0 0 10 / 66 1.4s Mpmcq parallel
[ ] 11 0 0 11 / 66 1.9s Mpmcq parallel
[ ] 12 0 0 12 / 66 2.3s Mpmcq parallel
[ ] 13 0 0 13 / 66 2.5s Mpmcq parallel
[ ] 14 0 0 14 / 66 2.6s Mpmcq parallel
[ ] 17 0 0 17 / 66 2.7s Mpmcq parallel
[ ] 20 0 0 20 / 66 3.0s Mpmcq parallel
[ ] 22 0 0 22 / 66 3.2s Mpmcq parallel
[ ] 26 0 0 26 / 66 3.3s Mpmcq parallel
[ ] 28 0 0 28 / 66 3.4s Mpmcq parallel
[ ] 29 0 0 29 / 66 3.6s Mpmcq parallel
[ ] 32 0 0 32 / 66 3.7s Mpmcq parallel
[ ] 34 0 0 34 / 66 4.3s Mpmcq parallel
[ ] 37 0 0 37 / 66 4.4s Mpmcq parallel
[ ] 39 0 0 39 / 66 4.6s Mpmcq parallel
[ ] 40 0 0 40 / 66 4.8s Mpmcq parallel
[ ] 41 0 0 41 / 66 5.1s Mpmcq parallel
[ ] 42 0 0 42 / 66 5.5s Mpmcq parallel
[ ] 43 0 0 43 / 66 6.2s Mpmcq parallel
[ ] 44 0 0 44 / 66 6.4s Mpmcq parallel
[ ] 45 0 0 45 / 66 6.6s Mpmcq parallel
[ ] 46 0 0 46 / 66 6.7s Mpmcq parallel
[ ] 47 0 0 47 / 66 7.3s Mpmcq parallel
[ ] 48 0 0 48 / 66 7.6s Mpmcq parallel
[ ] 49 0 0 49 / 66 8.0s Mpmcq parallel
[ ] 50 0 0 50 / 66 8.3s Mpmcq parallel
[ ] 51 0 0 51 / 66 8.5s Mpmcq parallel
[ ] 52 0 0 52 / 66 8.8s Mpmcq parallel
[ ] 54 0 0 54 / 66 9.0s Mpmcq parallel
[ ] 55 0 0 55 / 66 9.1s Mpmcq parallel
[ ] 57 0 0 57 / 66 9.2s Mpmcq parallel
[ ] 59 0 0 59 / 66 9.3s Mpmcq parallel
[ ] 63 0 0 63 / 66 9.5s Mpmcq parallel
[ ] 66 0 0 66 / 66 9.6s Mpmcq parallel
[✓] 66 0 0 66 / 66 9.6s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 3379177390483065484
generated error fail pass / total time test name
[ ] 0 0 0 0 / 42 0.0s Mpmcq sequential
[✓] 42 0 0 42 / 42 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 42 0.0s Mpmcq parallel
[ ] 2 0 0 2 / 42 0.1s Mpmcq parallel
[ ] 3 0 0 3 / 42 0.2s Mpmcq parallel
[ ] 5 0 0 5 / 42 0.4s Mpmcq parallel
[ ] 7 0 0 7 / 42 0.5s Mpmcq parallel
[ ] 8 0 0 8 / 42 1.1s Mpmcq parallel
[ ] 9 0 0 9 / 42 1.2s Mpmcq parallel
[ ] 11 0 0 11 / 42 1.4s Mpmcq parallel
[ ] 13 0 0 13 / 42 1.6s Mpmcq parallel
[ ] 14 0 0 14 / 42 1.9s Mpmcq parallel
[ ] 15 0 0 15 / 42 2.5s Mpmcq parallel
[ ] 16 0 0 16 / 42 2.9s Mpmcq parallel
[ ] 17 0 0 17 / 42 3.2s Mpmcq parallel
[ ] 18 0 0 18 / 42 3.4s Mpmcq parallel
[ ] 19 0 0 19 / 42 3.7s Mpmcq parallel
[ ] 20 0 0 20 / 42 4.0s Mpmcq parallel
[ ] 21 0 0 21 / 42 4.2s Mpmcq parallel
[ ] 24 0 0 24 / 42 4.5s Mpmcq parallel
[ ] 25 0 0 25 / 42 4.6s Mpmcq parallel
[ ] 26 0 0 26 / 42 4.8s Mpmcq parallel
[ ] 27 0 0 27 / 42 5.1s Mpmcq parallel
[ ] 28 0 0 28 / 42 5.2s Mpmcq parallel
[ ] 30 0 0 30 / 42 5.3s Mpmcq parallel
[ ] 32 0 0 32 / 42 5.6s Mpmcq parallel
[ ] 34 0 0 34 / 42 5.8s Mpmcq parallel
[ ] 35 0 0 35 / 42 5.9s Mpmcq parallel
[ ] 36 0 0 36 / 42 6.1s Mpmcq parallel
[ ] 37 0 0 37 / 42 6.3s Mpmcq parallel
[ ] 38 0 0 38 / 42 6.5s Mpmcq parallel
[ ] 39 0 0 39 / 42 6.8s Mpmcq parallel
[ ] 40 0 0 40 / 42 7.2s Mpmcq parallel
[ ] 41 0 0 41 / 42 7.4s Mpmcq parallel
[✓] 42 0 0 42 / 42 7.5s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 3975224530664238598
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Mpmcq sequential
[✓] 32 0 0 32 / 32 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 32 0.0s Mpmcq parallel
[ ] 1 0 0 1 / 32 0.1s Mpmcq parallel
[ ] 2 0 0 2 / 32 0.3s Mpmcq parallel
[ ] 3 0 0 3 / 32 0.6s Mpmcq parallel
[ ] 4 0 0 4 / 32 1.8s Mpmcq parallel
[ ] 5 0 0 5 / 32 2.3s Mpmcq parallel
[ ] 6 0 0 6 / 32 2.7s Mpmcq parallel
[ ] 7 0 0 7 / 32 2.9s Mpmcq parallel
[ ] 8 0 0 8 / 32 3.3s Mpmcq parallel
[ ] 9 0 0 9 / 32 3.5s Mpmcq parallel
[ ] 10 0 0 10 / 32 3.8s Mpmcq parallel
[ ] 11 0 0 11 / 32 4.1s Mpmcq parallel
[ ] 12 0 0 12 / 32 4.2s Mpmcq parallel
[ ] 13 0 0 13 / 32 4.4s Mpmcq parallel
[ ] 14 0 0 14 / 32 4.6s Mpmcq parallel
[ ] 15 0 0 15 / 32 4.7s Mpmcq parallel
[ ] 16 0 0 16 / 32 4.9s Mpmcq parallel
[ ] 17 0 0 17 / 32 5.0s Mpmcq parallel
[ ] 18 0 0 18 / 32 5.2s Mpmcq parallel
[ ] 19 0 0 19 / 32 5.4s Mpmcq parallel
[ ] 20 0 0 20 / 32 5.6s Mpmcq parallel
[ ] 21 0 0 21 / 32 5.9s Mpmcq parallel
[ ] 22 0 0 22 / 32 6.1s Mpmcq parallel
[ ] 23 0 0 23 / 32 6.4s Mpmcq parallel
[ ] 24 0 0 24 / 32 6.6s Mpmcq parallel
[ ] 25 0 0 25 / 32 6.9s Mpmcq parallel
[ ] 26 0 0 26 / 32 7.3s Mpmcq parallel
[ ] 27 0 0 27 / 32 7.6s Mpmcq parallel
[ ] 28 0 0 28 / 32 7.8s Mpmcq parallel
[ ] 29 0 0 29 / 32 8.0s Mpmcq parallel
[ ] 30 0 0 30 / 32 8.2s Mpmcq parallel
[ ] 31 0 0 31 / 32 8.4s Mpmcq parallel
[✓] 32 0 0 32 / 32 8.5s Mpmcq parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 1)
Testing `Picos_sync'.
This run has ID `N185EHMQ'.
[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 16.660s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 2)
Testing `Picos_sync'.
This run has ID `1JXAPE58'.
[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.014s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 3)
Testing `Picos_sync'.
This run has ID `O14RYIYF'.
[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 `M45WRIOM'.
[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 `H8PCMT51'.
[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.005s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 6)
Testing `Picos_sync'.
This run has ID `Z95C6BWD'.
[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.007s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Semaphore$ 0)
Testing `Picos_sync'.
This run has ID `M6J66DTP'.
[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.016s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Semaphore$ 1)
Testing `Picos_sync'.
This run has ID `YMP6NPOE'.
[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.304s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 0)
Testing `Picos_sync'.
This run has ID `6LRF342S'.
[SKIP] Mutex and Condition 0 basics.
[SKIP] Mutex and Condition 1 errors.
[SKIP] Mutex and Condition 2 cancelation.
[SKIP] Lock and Lock.Condition 0 basics.
[SKIP] Lock and Lock.Condition 1 cancelation.
[SKIP] Lock and Lock.Condition 2 poisoning.
[SKIP] Lock and Lock.Condition 3 try_acquire.
[SKIP] Rwlock and Rwlock.Condition 0 basics.
[SKIP] Rwlock and Rwlock.Condition 1 cancelation.
[SKIP] Rwlock and Rwlock.Condition 2 poisoning.
[SKIP] Rwlock and Rwlock.Condition 3 freezing.
[SKIP] Rwlock and Rwlock.Condition 4 try_acquire.
[SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared.
[SKIP] Rwlock and Rwlock.Condition 6 sharing.
[SKIP] Semaphore 0 basics.
[SKIP] Semaphore 1 stress.
[OK] Sem 0 basics.
[SKIP] Sem 1 stress.
[SKIP] Sem 2 poisoning.
[SKIP] Sem 3 try_acquire.
[SKIP] Lazy 0 basics.
[SKIP] Lazy 1 cancelation.
[SKIP] Event 0 basics.
[SKIP] Barrier 0 basics.
[SKIP] Barrier 1 poisoning.
[SKIP] Non-cancelable ops 0 are not canceled.
Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.005s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 1)
Testing `Picos_sync'.
This run has ID `TB6QLIFZ'.
[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.125s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 2)
Testing `Picos_sync'.
This run has ID `2TXKR945'.
[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 `0LMOWEOX'.
[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 `2VTV2NJD'.
[SKIP] Mutex and Condition 0 basics.
[SKIP] Mutex and Condition 1 errors.
[SKIP] Mutex and Condition 2 cancelation.
[SKIP] Lock and Lock.Condition 0 basics.
[SKIP] Lock and Lock.Condition 1 cancelation.
[SKIP] Lock and Lock.Condition 2 poisoning.
[SKIP] Lock and Lock.Condition 3 try_acquire.
[SKIP] Rwlock and Rwlock.Condition 0 basics.
[SKIP] Rwlock and Rwlock.Condition 1 cancelation.
[SKIP] Rwlock and Rwlock.Condition 2 poisoning.
[SKIP] Rwlock and Rwlock.Condition 3 freezing.
[SKIP] Rwlock and Rwlock.Condition 4 try_acquire.
[SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared.
[SKIP] Rwlock and Rwlock.Condition 6 sharing.
[SKIP] Semaphore 0 basics.
[SKIP] Semaphore 1 stress.
[SKIP] Sem 0 basics.
[SKIP] Sem 1 stress.
[SKIP] Sem 2 poisoning.
[SKIP] Sem 3 try_acquire.
[OK] Lazy 0 basics.
[SKIP] Lazy 1 cancelation.
[SKIP] Event 0 basics.
[SKIP] Barrier 0 basics.
[SKIP] Barrier 1 poisoning.
[SKIP] Non-cancelable ops 0 are not canceled.
Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.004s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Lazy$ 1)
Testing `Picos_sync'.
This run has ID `BTUS9DZ3'.
[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.019s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Event$ 0)
Testing `Picos_sync'.
This run has ID `RPC7P936'.
[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.115s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Barrier$ 0)
Testing `Picos_sync'.
This run has ID `Z6FH9RWD'.
[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.070s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Barrier$ 1)
Testing `Picos_sync'.
This run has ID `EUYRIEWQ'.
[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.139s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Non-cancelable ops$' 0)
Testing `Picos_sync'.
This run has ID `IQLMCXE5'.
[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.002s. 1 test 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:
0.35 M/s
locked yields over time/1024 fibers with Rwlock:
0.56 M/s
locked yields over time/1024 fibers with Sem:
0.43 M/s
locked yields over time/1024 fibers with Sem 2:
0.36 M/s
locked yields over time/1024 fibers with Sem 3:
0.22 M/s
locked yields over time/1024 fibers with Sem 4:
0.16 M/s
locked yields over time/1 fiber with Lock:
2.39 M/s
locked yields over time/1 fiber with Rwlock:
1.86 M/s
locked yields over time/1 fiber with Sem:
1.66 M/s
locked yields over time/1 fiber with Sem 2:
2.60 M/s
locked yields over time/1 fiber with Sem 3:
1.40 M/s
locked yields over time/1 fiber with Sem 4:
2.24 M/s
locked yields over time/256 fibers with Lock:
0.14 M/s
locked yields over time/256 fibers with Rwlock:
0.39 M/s
locked yields over time/256 fibers with Sem:
0.25 M/s
locked yields over time/256 fibers with Sem 2:
0.57 M/s
locked yields over time/256 fibers with Sem 3:
0.59 M/s
locked yields over time/256 fibers with Sem 4:
0.75 M/s
locked yields over time/2 domains with Lock:
0.97 M/s
locked yields over time/2 domains with Rwlock:
0.75 M/s
locked yields over time/2 domains with Sem:
0.70 M/s
locked yields over time/2 domains with Sem 2:
3.67 M/s
locked yields over time/2 domains with Sem 3:
3.78 M/s
locked yields over time/2 domains with Sem 4:
3.05 M/s
locked yields over time/2 fibers with Lock:
0.22 M/s
locked yields over time/2 fibers with Rwlock:
0.22 M/s
locked yields over time/2 fibers with Sem:
0.29 M/s
locked yields over time/2 fibers with Sem 2:
1.26 M/s
locked yields over time/2 fibers with Sem 3:
1.00 M/s
locked yields over time/2 fibers with Sem 4:
2.05 M/s
locked yields over time/3 domains with Lock:
0.60 M/s
locked yields over time/3 domains with Rwlock:
0.43 M/s
locked yields over time/3 domains with Sem:
0.41 M/s
locked yields over time/3 domains with Sem 2:
2.91 M/s
locked yields over time/3 domains with Sem 3:
4.66 M/s
locked yields over time/3 domains with Sem 4:
4.45 M/s
locked yields over time/3 fibers with Lock:
0.38 M/s
locked yields over time/3 fibers with Rwlock:
0.28 M/s
locked yields over time/3 fibers with Sem:
0.26 M/s
locked yields over time/3 fibers with Sem 2:
0.39 M/s
locked yields over time/3 fibers with Sem 3:
1.19 M/s
locked yields over time/3 fibers with Sem 4:
1.89 M/s
locked yields over time/4 domains with Lock:
0.12 M/s
locked yields over time/4 domains with Rwlock:
0.35 M/s
locked yields over time/4 domains with Sem:
0.42 M/s
locked yields over time/4 domains with Sem 2:
2.06 M/s
locked yields over time/4 domains with Sem 3:
2.86 M/s
locked yields over time/4 domains with Sem 4:
5.83 M/s
locked yields over time/4 fibers with Lock:
0.31 M/s
locked yields over time/4 fibers with Rwlock:
0.18 M/s
locked yields over time/4 fibers with Sem:
0.19 M/s
locked yields over time/4 fibers with Sem 2:
0.74 M/s
locked yields over time/4 fibers with Sem 3:
0.64 M/s
locked yields over time/4 fibers with Sem 4:
1.15 M/s
locked yields over time/512 fibers with Lock:
0.40 M/s
locked yields over time/512 fibers with Rwlock:
0.51 M/s
locked yields over time/512 fibers with Sem:
0.31 M/s
locked yields over time/512 fibers with Sem 2:
0.57 M/s
locked yields over time/512 fibers with Sem 3:
0.34 M/s
locked yields over time/512 fibers with Sem 4:
0.69 M/s
locked yields over time/8 domains with Lock:
0.03 M/s
locked yields over time/8 domains with Rwlock:
0.19 M/s
locked yields over time/8 domains with Sem:
0.30 M/s
locked yields over time/8 domains with Sem 2:
1.66 M/s
locked yields over time/8 domains with Sem 3:
2.01 M/s
locked yields over time/8 domains with Sem 4:
3.47 M/s
locked yields over time/8 fibers with Lock:
0.17 M/s
locked yields over time/8 fibers with Rwlock:
0.32 M/s
locked yields over time/8 fibers with Sem:
0.29 M/s
locked yields over time/8 fibers with Sem 2:
0.51 M/s
locked yields over time/8 fibers with Sem 3:
0.32 M/s
locked yields over time/8 fibers with Sem 4:
0.66 M/s
time per locked yield/1024 fibers with Lock:
2822.82 ns
time per locked yield/1024 fibers with Rwlock:
1784.56 ns
time per locked yield/1024 fibers with Sem:
2301.73 ns
time per locked yield/1024 fibers with Sem 2:
2800.66 ns
time per locked yield/1024 fibers with Sem 3:
4510.97 ns
time per locked yield/1024 fibers with Sem 4:
6133.82 ns
time per locked yield/1 fiber with Lock:
417.91 ns
time per locked yield/1 fiber with Rwlock:
536.19 ns
time per locked yield/1 fiber with Sem:
602.63 ns
time per locked yield/1 fiber with Sem 2:
383.88 ns
time per locked yield/1 fiber with Sem 3:
714.47 ns
time per locked yield/1 fiber with Sem 4:
445.93 ns
time per locked yield/256 fibers with Lock:
7077.20 ns
time per locked yield/256 fibers with Rwlock:
2547.54 ns
time per locked yield/256 fibers with Sem:
4030.95 ns
time per locked yield/256 fibers with Sem 2:
1741.48 ns
time per locked yield/256 fibers with Sem 3:
1699.83 ns
time per locked yield/256 fibers with Sem 4:
1328.49 ns
time per locked yield/2 domains with Lock:
2052.38 ns
time per locked yield/2 domains with Rwlock:
2665.49 ns
time per locked yield/2 domains with Sem:
2872.05 ns
time per locked yield/2 domains with Sem 2:
545.48 ns
time per locked yield/2 domains with Sem 3:
529.49 ns
time per locked yield/2 domains with Sem 4:
656.23 ns
time per locked yield/2 fibers with Lock:
4556.23 ns
time per locked yield/2 fibers with Rwlock:
4543.49 ns
time per locked yield/2 fibers with Sem:
3453.52 ns
time per locked yield/2 fibers with Sem 2:
796.53 ns
time per locked yield/2 fibers with Sem 3:
1002.74 ns
time per locked yield/2 fibers with Sem 4:
487.81 ns
time per locked yield/3 domains with Lock:
4983.94 ns
time per locked yield/3 domains with Rwlock:
6951.49 ns
time per locked yield/3 domains with Sem:
7242.96 ns
time per locked yield/3 domains with Sem 2:
1031.23 ns
time per locked yield/3 domains with Sem 3:
644.47 ns
time per locked yield/3 domains with Sem 4:
673.71 ns
time per locked yield/3 fibers with Lock:
2631.97 ns
time per locked yield/3 fibers with Rwlock:
3616.62 ns
time per locked yield/3 fibers with Sem:
3883.78 ns
time per locked yield/3 fibers with Sem 2:
2587.56 ns
time per locked yield/3 fibers with Sem 3:
837.77 ns
time per locked yield/3 fibers with Sem 4:
530.17 ns
time per locked yield/4 domains with Lock:
33395.77 ns
time per locked yield/4 domains with Rwlock:
11278.82 ns
time per locked yield/4 domains with Sem:
9580.00 ns
time per locked yield/4 domains with Sem 2:
1944.80 ns
time per locked yield/4 domains with Sem 3:
1396.38 ns
time per locked yield/4 domains with Sem 4:
686.57 ns
time per locked yield/4 fibers with Lock:
3256.58 ns
time per locked yield/4 fibers with Rwlock:
5548.26 ns
time per locked yield/4 fibers with Sem:
5242.47 ns
time per locked yield/4 fibers with Sem 2:
1343.96 ns
time per locked yield/4 fibers with Sem 3:
1572.36 ns
time per locked yield/4 fibers with Sem 4:
866.69 ns
time per locked yield/512 fibers with Lock:
2469.47 ns
time per locked yield/512 fibers with Rwlock:
1970.61 ns
time per locked yield/512 fibers with Sem:
3271.87 ns
time per locked yield/512 fibers with Sem 2:
1769.00 ns
time per locked yield/512 fibers with Sem 3:
2959.21 ns
time per locked yield/512 fibers with Sem 4:
1439.16 ns
time per locked yield/8 domains with Lock:
295875.55 ns
time per locked yield/8 domains with Rwlock:
41282.82 ns
time per locked yield/8 domains with Sem:
26605.04 ns
time per locked yield/8 domains with Sem 2:
4819.51 ns
time per locked yield/8 domains with Sem 3:
3987.83 ns
time per locked yield/8 domains with Sem 4:
2305.43 ns
time per locked yield/8 fibers with Lock:
5784.08 ns
time per locked yield/8 fibers with Rwlock:
3104.33 ns
time per locked yield/8 fibers with Sem:
3479.05 ns
time per locked yield/8 fibers with Sem 2:
1974.12 ns
time per locked yield/8 fibers with Sem 3:
3149.98 ns
time per locked yield/8 fibers with Sem 4:
1512.56 ns
(cd _build/default/bench && ./main.exe -brief 'Picos Spawn')
Picos Spawn:
spawns over time/with packed computation:
2.71 M/s
time per spawn/with packed computation:
368.46 ns
(cd _build/default/test && ./test_lock.exe)
random seed: 3289738096679103683
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Lock sequential
[✓] 32 0 0 32 / 32 0.0s Lock sequential
[ ] 0 0 0 0 / 32 0.0s Lock parallel
[ ] 1 0 0 1 / 32 0.7s Lock parallel
[ ] 2 0 0 2 / 32 2.5s Lock parallel
[ ] 3 0 0 3 / 32 3.3s Lock parallel
[ ] 4 0 0 4 / 32 4.1s Lock parallel
[ ] 5 0 0 5 / 32 4.5s Lock parallel
[ ] 6 0 0 6 / 32 5.1s Lock parallel
[ ] 7 0 0 7 / 32 6.3s Lock parallel
[ ] 8 0 0 8 / 32 7.5s Lock parallel
[ ] 9 0 0 9 / 32 8.5s Lock parallel
[ ] 10 0 0 10 / 32 9.2s Lock parallel
[ ] 11 0 0 11 / 32 10.6s Lock parallel
[ ] 12 0 0 12 / 32 11.3s Lock parallel
[ ] 13 0 0 13 / 32 12.0s Lock parallel
[ ] 14 0 0 14 / 32 12.6s Lock parallel
[ ] 15 0 0 15 / 32 13.7s Lock parallel
[ ] 16 0 0 16 / 32 14.4s Lock parallel
[ ] 17 0 0 17 / 32 15.1s Lock parallel
[ ] 18 0 0 18 / 32 15.8s Lock parallel
[ ] 19 0 0 19 / 32 16.4s Lock parallel
[ ] 20 0 0 20 / 32 17.3s Lock parallel
[ ] 21 0 0 21 / 32 18.0s Lock parallel
[ ] 22 0 0 22 / 32 18.8s Lock parallel
[ ] 23 0 0 23 / 32 19.3s Lock parallel
[ ] 24 0 0 24 / 32 19.8s Lock parallel
[ ] 25 0 0 25 / 32 20.4s Lock parallel
[ ] 26 0 0 26 / 32 21.1s Lock parallel
[ ] 27 0 0 27 / 32 21.5s Lock parallel
[ ] 28 0 0 28 / 32 22.7s Lock parallel
[ ] 29 0 0 29 / 32 23.1s Lock parallel
[ ] 30 0 0 30 / 32 23.5s Lock parallel
[ ] 31 0 0 31 / 32 23.7s Lock parallel
[ ] 32 0 0 32 / 32 23.9s Lock parallel
[✓] 32 0 0 32 / 32 23.9s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 3474475894234175438
generated error fail pass / total time test name
[ ] 0 0 0 0 / 48 0.0s Lock sequential
[✓] 48 0 0 48 / 48 0.0s Lock sequential
[ ] 0 0 0 0 / 48 0.0s Lock parallel
[ ] 1 0 0 1 / 48 0.1s Lock parallel
[ ] 3 0 0 3 / 48 0.4s Lock parallel
[ ] 4 0 0 4 / 48 0.6s Lock parallel
[ ] 5 0 0 5 / 48 0.7s Lock parallel
[ ] 6 0 0 6 / 48 0.8s Lock parallel
[ ] 8 0 0 8 / 48 1.2s Lock parallel
[ ] 9 0 0 9 / 48 1.4s Lock parallel
[ ] 10 0 0 10 / 48 1.5s Lock parallel
[ ] 11 0 0 11 / 48 1.8s Lock parallel
[ ] 12 0 0 12 / 48 1.9s Lock parallel
[ ] 13 0 0 13 / 48 2.9s Lock parallel
[ ] 14 0 0 14 / 48 3.2s Lock parallel
[ ] 15 0 0 15 / 48 3.6s Lock parallel
[ ] 16 0 0 16 / 48 3.7s Lock parallel
[ ] 17 0 0 17 / 48 3.9s Lock parallel
[ ] 18 0 0 18 / 48 4.1s Lock parallel
[ ] 19 0 0 19 / 48 4.4s Lock parallel
[ ] 20 0 0 20 / 48 4.5s Lock parallel
[ ] 21 0 0 21 / 48 4.9s Lock parallel
[ ] 22 0 0 22 / 48 5.2s Lock parallel
[ ] 23 0 0 23 / 48 5.3s Lock parallel
[ ] 24 0 0 24 / 48 5.5s Lock parallel
[ ] 25 0 0 25 / 48 5.7s Lock parallel
[ ] 26 0 0 26 / 48 5.9s Lock parallel
[ ] 27 0 0 27 / 48 6.1s Lock parallel
[ ] 28 0 0 28 / 48 6.3s Lock parallel
[ ] 29 0 0 29 / 48 6.7s Lock parallel
[ ] 30 0 0 30 / 48 6.8s Lock parallel
[ ] 32 0 0 32 / 48 7.0s Lock parallel
[ ] 33 0 0 33 / 48 7.5s Lock parallel
[ ] 35 0 0 35 / 48 7.6s Lock parallel
[ ] 37 0 0 37 / 48 7.7s Lock parallel
[ ] 39 0 0 39 / 48 8.3s Lock parallel
[ ] 41 0 0 41 / 48 8.4s Lock parallel
[ ] 42 0 0 42 / 48 8.5s Lock parallel
[ ] 43 0 0 43 / 48 8.7s Lock parallel
[ ] 45 0 0 45 / 48 8.8s Lock parallel
[ ] 48 0 0 48 / 48 8.9s Lock parallel
[✓] 48 0 0 48 / 48 8.9s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 3328176388618047619
generated error fail pass / total time test name
[ ] 0 0 0 0 / 66 0.0s Lock sequential
[✓] 66 0 0 66 / 66 0.0s Lock sequential
[ ] 0 0 0 0 / 66 0.0s Lock parallel
[ ] 3 0 0 3 / 66 0.2s Lock parallel
[ ] 5 0 0 5 / 66 0.3s Lock parallel
[ ] 6 0 0 6 / 66 0.5s Lock parallel
[ ] 9 0 0 9 / 66 0.6s Lock parallel
[ ] 11 0 0 11 / 66 0.7s Lock parallel
[ ] 13 0 0 13 / 66 1.0s Lock parallel
[ ] 15 0 0 15 / 66 1.1s Lock parallel
[ ] 16 0 0 16 / 66 1.3s Lock parallel
[ ] 18 0 0 18 / 66 1.7s Lock parallel
[ ] 20 0 0 20 / 66 2.2s Lock parallel
[ ] 23 0 0 23 / 66 2.4s Lock parallel
[ ] 26 0 0 26 / 66 2.5s Lock parallel
[ ] 28 0 0 28 / 66 2.6s Lock parallel
[ ] 30 0 0 30 / 66 2.7s Lock parallel
[ ] 32 0 0 32 / 66 2.9s Lock parallel
[ ] 35 0 0 35 / 66 3.0s Lock parallel
[ ] 38 0 0 38 / 66 3.1s Lock parallel
[ ] 39 0 0 39 / 66 3.2s Lock parallel
[ ] 41 0 0 41 / 66 3.3s Lock parallel
[ ] 43 0 0 43 / 66 3.5s Lock parallel
[ ] 44 0 0 44 / 66 3.6s Lock parallel
[ ] 47 0 0 47 / 66 3.7s Lock parallel
[ ] 50 0 0 50 / 66 3.8s Lock parallel
[ ] 52 0 0 52 / 66 3.9s Lock parallel
[ ] 53 0 0 53 / 66 4.1s Lock parallel
[ ] 54 0 0 54 / 66 4.3s Lock parallel
[ ] 55 0 0 55 / 66 4.5s Lock parallel
[ ] 56 0 0 56 / 66 4.7s Lock parallel
[ ] 57 0 0 57 / 66 4.9s Lock parallel
[ ] 58 0 0 58 / 66 5.2s Lock parallel
[ ] 59 0 0 59 / 66 5.4s Lock parallel
[ ] 60 0 0 60 / 66 5.6s Lock parallel
[ ] 62 0 0 62 / 66 5.8s Lock parallel
[ ] 63 0 0 63 / 66 6.0s Lock parallel
[ ] 65 0 0 65 / 66 6.2s Lock parallel
[ ] 66 0 0 66 / 66 6.3s Lock parallel
[✓] 66 0 0 66 / 66 6.3s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 2104361541933015828
generated error fail pass / total time test name
[ ] 0 0 0 0 / 77 0.0s Lock sequential
[✓] 77 0 0 77 / 77 0.0s Lock sequential
[ ] 0 0 0 0 / 77 0.0s Lock parallel
[ ] 2 0 0 2 / 77 0.1s Lock parallel
[ ] 3 0 0 3 / 77 0.3s Lock parallel
[ ] 4 0 0 4 / 77 0.5s Lock parallel
[ ] 5 0 0 5 / 77 0.6s Lock parallel
[ ] 7 0 0 7 / 77 0.8s Lock parallel
[ ] 9 0 0 9 / 77 0.9s Lock parallel
[ ] 10 0 0 10 / 77 1.1s Lock parallel
[ ] 13 0 0 13 / 77 1.3s Lock parallel
[ ] 15 0 0 15 / 77 1.4s Lock parallel
[ ] 18 0 0 18 / 77 1.6s Lock parallel
[ ] 19 0 0 19 / 77 1.8s Lock parallel
[ ] 21 0 0 21 / 77 1.9s Lock parallel
[ ] 23 0 0 23 / 77 2.1s Lock parallel
[ ] 25 0 0 25 / 77 2.4s Lock parallel
[ ] 29 0 0 29 / 77 3.0s Lock parallel
[ ] 30 0 0 30 / 77 3.2s Lock parallel
[ ] 31 0 0 31 / 77 3.6s Lock parallel
[ ] 32 0 0 32 / 77 3.9s Lock parallel
[ ] 34 0 0 34 / 77 4.2s Lock parallel
[ ] 35 0 0 35 / 77 4.4s Lock parallel
[ ] 37 0 0 37 / 77 5.1s Lock parallel
[ ] 39 0 0 39 / 77 5.3s Lock parallel
[ ] 40 0 0 40 / 77 5.5s Lock parallel
[ ] 41 0 0 41 / 77 5.7s Lock parallel
[ ] 42 0 0 42 / 77 6.0s Lock parallel
[ ] 43 0 0 43 / 77 6.3s Lock parallel
[ ] 44 0 0 44 / 77 6.7s Lock parallel
[ ] 45 0 0 45 / 77 6.8s Lock parallel
[ ] 46 0 0 46 / 77 7.0s Lock parallel
[ ] 47 0 0 47 / 77 7.2s Lock parallel
[ ] 49 0 0 49 / 77 7.6s Lock parallel
[ ] 52 0 0 52 / 77 8.1s Lock parallel
[ ] 53 0 0 53 / 77 8.5s Lock parallel
[ ] 55 0 0 55 / 77 8.6s Lock parallel
[ ] 58 0 0 58 / 77 8.7s Lock parallel
[ ] 61 0 0 61 / 77 9.0s Lock parallel
[ ] 62 0 0 62 / 77 9.2s Lock parallel
[ ] 64 0 0 64 / 77 9.4s Lock parallel
[ ] 66 0 0 66 / 77 9.5s Lock parallel
[ ] 68 0 0 68 / 77 9.7s Lock parallel
[ ] 69 0 0 69 / 77 10.0s Lock parallel
[ ] 70 0 0 70 / 77 10.5s Lock parallel
[ ] 71 0 0 71 / 77 10.8s Lock parallel
[ ] 72 0 0 72 / 77 11.1s Lock parallel
[ ] 73 0 0 73 / 77 11.4s Lock parallel
[ ] 74 0 0 74 / 77 12.2s Lock parallel
[ ] 75 0 0 75 / 77 12.3s Lock parallel
[✓] 77 0 0 77 / 77 12.4s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 3410933715056940911
generated error fail pass / total time test name
[ ] 0 0 0 0 / 36 0.0s Lock sequential
[✓] 36 0 0 36 / 36 0.0s Lock sequential
[ ] 0 0 0 0 / 36 0.0s Lock parallel
[ ] 1 0 0 1 / 36 0.1s Lock parallel
[ ] 3 0 0 3 / 36 0.7s Lock parallel
[ ] 4 0 0 4 / 36 0.8s Lock parallel
[ ] 6 0 0 6 / 36 1.0s Lock parallel
[ ] 7 0 0 7 / 36 1.3s Lock parallel
[ ] 9 0 0 9 / 36 1.4s Lock parallel
[ ] 11 0 0 11 / 36 1.6s Lock parallel
[ ] 12 0 0 12 / 36 1.8s Lock parallel
[ ] 13 0 0 13 / 36 2.1s Lock parallel
[ ] 14 0 0 14 / 36 2.3s Lock parallel
[ ] 15 0 0 15 / 36 2.7s Lock parallel
[ ] 16 0 0 16 / 36 3.1s Lock parallel
[ ] 18 0 0 18 / 36 3.2s Lock parallel
[ ] 19 0 0 19 / 36 3.3s Lock parallel
[ ] 20 0 0 20 / 36 3.6s Lock parallel
[ ] 21 0 0 21 / 36 4.0s Lock parallel
[ ] 22 0 0 22 / 36 4.5s Lock parallel
[ ] 23 0 0 23 / 36 5.1s Lock parallel
[ ] 24 0 0 24 / 36 5.5s Lock parallel
[ ] 25 0 0 25 / 36 5.8s Lock parallel
[ ] 26 0 0 26 / 36 6.0s Lock parallel
[ ] 27 0 0 27 / 36 6.3s Lock parallel
[ ] 28 0 0 28 / 36 6.6s Lock parallel
[ ] 29 0 0 29 / 36 7.2s Lock parallel
[ ] 30 0 0 30 / 36 7.4s Lock parallel
[ ] 32 0 0 32 / 36 7.5s Lock parallel
[ ] 34 0 0 34 / 36 7.7s Lock parallel
[ ] 35 0 0 35 / 36 8.0s Lock parallel
[ ] 36 0 0 36 / 36 8.2s Lock parallel
[✓] 36 0 0 36 / 36 8.2s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 4492484306579170224
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Lock sequential
[✓] 32 0 0 32 / 32 0.0s Lock sequential
[ ] 0 0 0 0 / 32 0.0s Lock parallel
[ ] 1 0 0 1 / 32 0.3s Lock parallel
[ ] 2 0 0 2 / 32 0.5s Lock parallel
[ ] 3 0 0 3 / 32 0.7s Lock parallel
[ ] 4 0 0 4 / 32 1.1s Lock parallel
[ ] 5 0 0 5 / 32 1.5s Lock parallel
[ ] 6 0 0 6 / 32 1.7s Lock parallel
[ ] 7 0 0 7 / 32 2.1s Lock parallel
[ ] 8 0 0 8 / 32 2.4s Lock parallel
[ ] 9 0 0 9 / 32 2.8s Lock parallel
[ ] 10 0 0 10 / 32 3.0s Lock parallel
[ ] 11 0 0 11 / 32 3.2s Lock parallel
[ ] 13 0 0 13 / 32 3.4s Lock parallel
[ ] 15 0 0 15 / 32 3.5s Lock parallel
[ ] 19 0 0 19 / 32 4.1s Lock parallel
[ ] 21 0 0 21 / 32 4.4s Lock parallel
[ ] 23 0 0 23 / 32 4.5s Lock parallel
[ ] 24 0 0 24 / 32 4.6s Lock parallel
[ ] 25 0 0 25 / 32 4.8s Lock parallel
[ ] 27 0 0 27 / 32 4.9s Lock parallel
[ ] 31 0 0 31 / 32 5.0s Lock parallel
[✓] 32 0 0 32 / 32 5.1s Lock parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_rwlock.exe)
random seed: 2351542179110141141
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Rwlock sequential
[✓] 32 0 0 32 / 32 0.0s Rwlock sequential
[ ] 0 0 0 0 / 32 0.0s Rwlock parallel
[ ] 1 0 0 1 / 32 1.0s Rwlock parallel
[ ] 2 0 0 2 / 32 1.8s Rwlock parallel
[ ] 3 0 0 3 / 32 2.7s Rwlock parallel
[ ] 4 0 0 4 / 32 3.4s Rwlock parallel
[ ] 5 0 0 5 / 32 4.5s Rwlock parallel
[ ] 6 0 0 6 / 32 5.6s Rwlock parallel
[ ] 7 0 0 7 / 32 8.3s Rwlock parallel
[ ] 8 0 0 8 / 32 9.4s Rwlock parallel
[ ] 9 0 0 9 / 32 9.9s Rwlock parallel
[ ] 10 0 0 10 / 32 10.4s Rwlock parallel
[ ] 11 0 0 11 / 32 11.0s Rwlock parallel
[ ] 12 0 0 12 / 32 12.5s Rwlock parallel
[ ] 13 0 0 13 / 32 13.3s Rwlock parallel
[ ] 14 0 0 14 / 32 13.9s Rwlock parallel
[ ] 15 0 0 15 / 32 15.0s Rwlock parallel
[ ] 16 0 0 16 / 32 16.2s Rwlock parallel
[ ] 17 0 0 17 / 32 17.2s Rwlock parallel
[ ] 18 0 0 18 / 32 17.7s Rwlock parallel
[ ] 19 0 0 19 / 32 18.2s Rwlock parallel
[ ] 20 0 0 20 / 32 18.4s Rwlock parallel
[ ] 21 0 0 21 / 32 19.0s Rwlock parallel
[ ] 22 0 0 22 / 32 19.5s Rwlock parallel
[ ] 23 0 0 23 / 32 20.2s Rwlock parallel
[ ] 24 0 0 24 / 32 20.9s Rwlock parallel
[ ] 25 0 0 25 / 32 21.3s Rwlock parallel
[ ] 26 0 0 26 / 32 21.8s Rwlock parallel
[ ] 27 0 0 27 / 32 22.2s Rwlock parallel
[ ] 28 0 0 28 / 32 22.4s Rwlock parallel
[ ] 29 0 0 29 / 32 22.8s Rwlock parallel
[ ] 30 0 0 30 / 32 23.0s Rwlock parallel
[ ] 31 0 0 31 / 32 23.1s Rwlock parallel
[ ] 32 0 0 32 / 32 23.3s Rwlock parallel
[✓] 32 0 0 32 / 32 23.3s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 882162004115814351
generated error fail pass / total time test name
[ ] 0 0 0 0 / 50 0.0s Rwlock sequential
[✓] 50 0 0 50 / 50 0.0s Rwlock sequential
[ ] 0 0 0 0 / 50 0.0s Rwlock parallel
[ ] 1 0 0 1 / 50 0.2s Rwlock parallel
[ ] 3 0 0 3 / 50 0.9s Rwlock parallel
[ ] 4 0 0 4 / 50 1.1s Rwlock parallel
[ ] 5 0 0 5 / 50 1.8s Rwlock parallel
[ ] 6 0 0 6 / 50 2.2s Rwlock parallel
[ ] 7 0 0 7 / 50 2.6s Rwlock parallel
[ ] 8 0 0 8 / 50 2.8s Rwlock parallel
[ ] 9 0 0 9 / 50 3.0s Rwlock parallel
[ ] 10 0 0 10 / 50 3.2s Rwlock parallel
[ ] 11 0 0 11 / 50 3.5s Rwlock parallel
[ ] 12 0 0 12 / 50 3.6s Rwlock parallel
[ ] 13 0 0 13 / 50 3.7s Rwlock parallel
[ ] 14 0 0 14 / 50 3.8s Rwlock parallel
[ ] 15 0 0 15 / 50 4.2s Rwlock parallel
[ ] 16 0 0 16 / 50 4.5s Rwlock parallel
[ ] 17 0 0 17 / 50 4.9s Rwlock
parallel
[ ] 18 0 0 18 / 50 5.3s Rwlock parallel
[ ] 19 0 0 19 / 50 5.5s Rwlock parallel
[ ] 20 0 0 20 / 50 5.7s Rwlock parallel
[ ] 21 0 0 21 / 50 5.9s Rwlock parallel
[ ] 22 0 0 22 / 50 6.1s Rwlock parallel
[ ] 23 0 0 23 / 50 6.2s Rwlock parallel
[ ] 24 0 0 24 / 50 6.4s Rwlock parallel
[ ] 25 0 0 25 / 50 6.5s Rwlock parallel
[ ] 27 0 0 27 / 50 6.6s Rwlock parallel
[ ] 30 0 0 30 / 50 7.0s Rwlock parallel
[ ] 33 0 0 33 / 50 7.1s Rwlock parallel
[ ] 35 0 0 35 / 50 7.3s Rwlock parallel
[ ] 36 0 0 36 / 50 7.7s Rwlock parallel
[ ] 37 0 0 37 / 50 7.9s Rwlock parallel
[ ] 39 0 0 39 / 50 8.1s Rwlock parallel
[ ] 40 0 0 40 / 50 8.6s Rwlock parallel
[ ] 42 0 0 42 / 50 8.8s Rwlock parallel
[ ] 43 0 0 43 / 50 9.0s Rwlock parallel
[ ] 45 0 0 45 / 50 9.1s Rwlock parallel
[ ] 47 0 0 47 / 50 9.2s Rwlock parallel
[✓] 50 0 0 50 / 50 9.3s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 730869833631283247
generated error fail pass / total time test name
[ ] 0 0 0 0 / 68 0.0s Rwlock sequential
[✓] 68 0 0 68 / 68 0.0s Rwlock sequential
[ ] 0 0 0 0 / 68 0.0s Rwlock parallel
[ ] 2 0 0 2 / 68 0.1s Rwlock parallel
[ ] 4 0 0 4 / 68 0.7s Rwlock parallel
[ ] 6 0 0 6 / 68 0.8s Rwlock parallel
[ ] 8 0 0 8 / 68 0.9s Rwlock parallel
[ ] 10 0 0 10 / 68 1.1s Rwlock parallel
[ ] 11 0 0 11 / 68 1.3s Rwlock parallel
[ ] 13 0 0 13 / 68 1.4s Rwlock parallel
[ ] 15 0 0 15 / 68 1.5s Rwlock parallel
[ ] 18 0 0 18 / 68 1.6s Rwlock parallel
[ ] 20 0 0 20 / 68 1.7s Rwlock parallel
[ ] 22 0 0 22 / 68 1.9s Rwlock parallel
[ ] 25 0 0 25 / 68 2.0s Rwlock parallel
[ ] 27 0 0 27 / 68 2.2s Rwlock parallel
[ ] 28 0 0 28 / 68 2.3s Rwlock parallel
[ ] 29 0 0 29 / 68 2.5s Rwlock parallel
[ ] 30 0 0 30 / 68 2.6s Rwlock parallel
[ ] 31 0 0 31 / 68 2.8s Rwlock parallel
[ ] 32 0 0 32 / 68 3.1s Rwlock parallel
[ ] 35 0 0 35 / 68 3.2s Rwlock parallel
[ ] 36 0 0 36 / 68 3.5s Rwlock parallel
[ ] 37 0 0 37 / 68 3.8s Rwlock parallel
[ ] 38 0 0 38 / 68 3.9s Rwlock parallel
[ ] 39 0 0 39 / 68 4.0s Rwlock parallel
[ ] 40 0 0 40 / 68 4.2s Rwlock parallel
[ ] 42 0 0 42 / 68 4.5s Rwlock parallel
[ ] 43 0 0 43 / 68 4.7s Rwlock parallel
[ ] 44 0 0 44 / 68 4.8s Rwlock parallel
[ ] 46 0 0 46 / 68 5.0s Rwlock parallel
[ ] 47 0 0 47 / 68 5.1s Rwlock parallel
[ ] 49 0 0 49 / 68 5.2s Rwlock parallel
[ ] 51 0 0 51 / 68 5.4s Rwlock parallel
[ ] 52 0 0 52 / 68 5.6s Rwlock parallel
[ ] 55 0 0 55 / 68 5.7s Rwlock parallel
[ ] 56 0 0 56 / 68 5.9s Rwlock parallel
[ ] 58 0 0 58 / 68 6.2s Rwlock parallel
[ ] 59 0 0 59 / 68 6.4s Rwlock parallel
[ ] 60 0 0 60 / 68 6.5s Rwlock parallel
[ ] 62 0 0 62 / 68 6.6s Rwlock parallel
[ ] 63 0 0 63 / 68 6.7s Rwlock parallel
[ ] 64 0 0 64 / 68 7.0s Rwlock parallel
[ ] 67 0 0 67 / 68 7.2s Rwlock parallel
[✓] 68 0 0 68 / 68 7.2s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 465759963179484334
generated error fail pass / total time test name
[ ] 0 0 0 0 / 76 0.0s Rwlock sequential
[✓] 76 0 0 76 / 76 0.0s Rwlock sequential
[ ] 0 0 0 0 / 76 0.0s Rwlock parallel
[ ] 2 0 0 2 / 76 0.1s Rwlock parallel
[ ] 4 0 0 4 / 76 0.3s Rwlock parallel
[ ] 6 0 0 6 / 76 0.5s Rwlock parallel
[ ] 7 0 0 7 / 76 0.7s Rwlock parallel
[ ] 10 0 0 10 / 76 0.8s Rwlock parallel
[ ] 11 0 0 11 / 76 1.0s Rwlock parallel
[ ] 13 0 0 13 / 76 1.3s Rwlock parallel
[ ] 14 0 0 14 / 76 1.9s Rwlock parallel
[ ] 15 0 0 15 / 76 2.1s Rwlock parallel
[ ] 17 0 0 17 / 76 2.4s Rwlock parallel
[ ] 19 0 0 19 / 76 2.6s Rwlock parallel
[ ] 21 0 0 21 / 76 2.7s Rwlock parallel
[ ] 22 0 0 22 / 76 2.9s Rwlock parallel
[ ] 23 0 0 23 / 76 3.1s Rwlock parallel
[ ] 24 0 0 24 / 76 3.2s Rwlock parallel
[ ] 25 0 0 25 / 76 3.5s Rwlock parallel
[ ] 26 0 0 26 / 76 3.6s Rwlock parallel
[ ] 28 0 0 28 / 76 4.3s Rwlock parallel
[ ] 29 0 0 29 / 76 4.4s Rwlock parallel
[ ] 30 0 0 30 / 76 4.7s Rwlock parallel
[ ] 31 0 0 31 / 76 5.0s Rwlock parallel
[ ] 32 0 0 32 / 76 5.2s Rwlock parallel
[ ] 33 0 0 33 / 76 5.4s Rwlock parallel
[ ] 34 0 0 34 / 76 5.5s Rwlock parallel
[ ] 37 0 0 37 / 76 5.7s Rwlock parallel
[ ] 41 0 0 41 / 76 6.2s Rwlock parallel
[ ] 42 0 0 42 / 76 6.5s Rwlock parallel
[ ] 44 0 0 44 / 76 6.6s Rwlock parallel
[ ] 46 0 0 46 / 76 6.8s Rwlock parallel
[ ] 49 0 0 49 / 76 6.9s Rwlock parallel
[ ] 51 0 0 51 / 76 7.0s Rwlock parallel
[ ] 55 0 0 55 / 76 7.2s Rwlock parallel
[ ] 56 0 0 56 / 76 7.3s Rwlock parallel
[ ] 57 0 0 57 / 76 7.5s Rwlock parallel
[ ] 58 0 0 58 / 76 7.6s Rwlock parallel
[ ] 60 0 0 60 / 76 7.7s Rwlock parallel
[ ] 61 0 0 61 / 76 7.9s Rwlock parallel
[ ] 62 0 0 62 / 76 8.7s Rwlock parallel
[ ] 63 0 0 63 / 76 9.1s Rwlock parallel
[ ] 64 0 0 64 / 76 9.6s Rwlock parallel
[ ] 65 0 0 65 / 76 9.8s Rwlock parallel
[ ] 66 0 0 66 / 76 10.2s Rwlock parallel
[ ] 67 0 0 67 / 76 10.4s Rwlock parallel
[ ] 68 0 0 68 / 76 10.6s Rwlock parallel
[ ] 70 0 0 70 / 76 10.9s Rwlock parallel
[ ] 72 0 0 72 / 76 11.0s Rwlock parallel
[ ] 74 0 0 74 / 76 11.2s Rwlock parallel
[ ] 76 0 0 76 / 76 11.4s Rwlock parallel
[✓] 76 0 0 76 / 76 11.4s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 3763313081824401870
generated error fail pass / total time test name
[ ] 0 0 0 0 / 38 0.0s Rwlock sequential
[✓] 38 0 0 38 / 38 0.0s Rwlock sequential
[ ] 0 0 0 0 / 38 0.0s Rwlock parallel
[ ] 1 0 0 1 / 38 0.1s Rwlock parallel
[ ] 2 0 0 2 / 38 0.2s Rwlock parallel
[ ] 3 0 0 3 / 38 0.4s Rwlock parallel
[ ] 5 0 0 5 / 38 0.5s Rwlock parallel
[ ] 6 0 0 6 / 38 0.7s Rwlock parallel
[ ] 9 0 0 9 / 38 0.8s Rwlock parallel
[ ] 10 0 0 10 / 38 0.9s Rwlock parallel
[ ] 12 0 0 12 / 38 1.2s Rwlock parallel
[ ] 13 0 0 13 / 38 1.5s Rwlock parallel
[ ] 14 0 0 14 / 38 1.9s Rwlock parallel
[ ] 15 0 0 15 / 38 2.1s Rwlock parallel
[ ] 16 0 0 16 / 38 2.2s Rwlock parallel
[ ] 17 0 0 17 / 38 2.4s Rwlock parallel
[ ] 18 0 0 18 / 38 2.5s Rwlock parallel
[ ] 19 0 0 19 / 38 2.6s Rwlock parallel
[ ] 20 0 0 20 / 38 2.8s Rwlock parallel
[ ] 21 0 0 21 / 38 3.9s Rwlock parallel
[ ] 22 0 0 22 / 38 4.5s Rwlock parallel
[ ] 23 0 0 23 / 38 5.0s Rwlock parallel
[ ] 24 0 0 24 / 38 5.3s Rwlock parallel
[ ] 25 0 0 25 / 38 5.7s Rwlock parallel
[ ] 26 0 0 26 / 38 5.8s Rwlock parallel
[ ] 27 0 0 27 / 38 6.1s Rwlock parallel
[ ] 28 0 0 28 / 38 6.3s Rwlock parallel
[ ] 29 0 0 29 / 38 6.4s Rwlock parallel
[ ] 30 0 0 30 / 38 6.6s Rwlock parallel
[ ] 31 0 0 31 / 38 6.8s Rwlock parallel
[ ] 32 0 0 32 / 38 7.0s Rwlock parallel
[ ] 33 0 0 33 / 38 7.3s Rwlock parallel
[ ] 34 0 0 34 / 38 7.5s Rwlock parallel
[ ] 35 0 0 35 / 38 7.7s Rwlock parallel
[ ] 36 0 0 36 / 38 7.9s Rwlock parallel
[ ] 37 0 0 37 / 38 8.2s Rwlock parallel
[ ] 38 0 0 38 / 38 8.4s Rwlock parallel
[✓] 38 0 0 38 / 38 8.4s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 237155848456660094
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Rwlock sequential
[✓] 32 0 0 32 / 32 0.0s Rwlock sequential
[ ] 0 0 0 0 / 32 0.0s Rwlock parallel
[ ] 1 0 0 1 / 32 0.2s Rwlock parallel
[ ] 2 0 0 2 / 32 0.4s Rwlock parallel
[ ] 3 0 0 3 / 32 0.8s Rwlock parallel
[ ] 4 0 0 4 / 32 1.2s Rwlock parallel
[ ] 5 0 0 5 / 32 1.5s Rwlock parallel
[ ] 6 0 0 6 / 32 1.8s Rwlock parallel
[ ] 7 0 0 7 / 32 2.0s Rwlock parallel
[ ] 9 0 0 9 / 32 2.1s Rwlock parallel
[ ] 10 0 0 10 / 32 2.2s Rwlock parallel
[ ] 12 0 0 12 / 32 2.4s Rwlock parallel
[ ] 14 0 0 14 / 32 2.6s Rwlock parallel
[ ] 16 0 0 16 / 32 2.8s Rwlock parallel
[ ] 17 0 0 17 / 32 3.0s Rwlock parallel
[ ] 18 0 0 18 / 32 3.1s Rwlock parallel
[ ] 19 0 0 19 / 32 3.3s Rwlock parallel
[ ] 20 0 0 20 / 32 3.6s Rwlock parallel
[ ] 21 0 0 21 / 32 3.9s Rwlock parallel
[ ] 22 0 0 22 / 32 4.1s Rwlock parallel
[ ] 25 0 0 25 / 32 4.4s Rwlock parallel
[ ] 27 0 0 27 / 32 4.6s Rwlock parallel
[ ] 30 0 0 30 / 32 4.7s Rwlock parallel
[ ] 32 0 0 32 / 32 4.9s Rwlock parallel
[✓] 32 0 0 32 / 32 4.9s Rwlock parallel
================================================================================
success (ran 2 tests)
(cd _build/default/bench && ./main.exe -brief 'Picos Yield')
Picos Yield:
time per yield/10000 fibers:
539.89 ns
time per yield/1000 fibers:
288.09 ns
time per yield/100 fibers:
244.89 ns
time per yield/10 fibers:
272.34 ns
time per yield/1 fiber:
250.31 ns
yields over time/10000 fibers:
1.85 M/s
yields over time/1000 fibers:
3.47 M/s
yields over time/100 fibers:
4.08 M/s
yields over time/10 fibers:
3.67 M/s
yields over time/1 fiber:
4.00 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.17 M/s
async round-trips over time/2 workers:
0.21 M/s
async round-trips over time/4 workers:
0.26 M/s
round-trips over time/1 worker:
0.05 M/s
round-trips over time/2 workers:
0.09 M/s
round-trips over time/4 workers:
0.15 M/s
time per async round-trip/1 worker:
5874.55 ns
time per async round-trip/2 workers:
9348.83 ns
time per async round-trip/4 workers:
15304.88 ns
time per round-trip/1 worker:
21603.98 ns
time per round-trip/2 workers:
21401.90 ns
time per round-trip/4 workers:
27340.90 ns
(cd _build/default/bench && ./main.exe -brief 'Ref with Picos_std_sync')
Ref with Picos_std_sync:
ops over time/cas int with Lock:
22.78 M/s
ops over time/cas int with Rwlock:
23.84 M/s
ops over time/cas int with Sem:
21.60 M/s
ops over time/get with Lock:
34.42 M/s
ops over time/get with Rwlock:
28.95 M/s
ops over time/get with Sem:
26.83 M/s
ops over time/incr with Lock:
30.15 M/s
ops over time/incr with Rwlock:
21.54 M/s
ops over time/incr with Sem:
25.16 M/s
ops over time/push & pop with Lock:
18.33 M/s
ops over time/push & pop with Rwlock:
16.80 M/s
ops over time/push & pop with Sem:
17.76 M/s
ops over time/swap with Lock:
25.36 M/s
ops over time/swap with Rwlock:
18.09 M/s
ops over time/swap with Sem:
20.23 M/s
ops over time/xchg int with Lock:
23.83 M/s
ops over time/xchg int with Rwlock:
19.17 M/s
ops over time/xchg int with Sem:
19.77 M/s
time per op/cas int with Lock:
43.91 ns
time per op/cas int with Rwlock:
41.94 ns
time per op/cas int with Sem:
46.29 ns
time per op/get with Lock:
29.05 ns
time per op/get with Rwlock:
34.54 ns
time per op/get with Sem:
37.27 ns
time per op/incr with Lock:
33.17 ns
time per op/incr with Rwlock:
46.42 ns
time per op/incr with Sem:
39.75 ns
time per op/push & pop with Lock:
54.56 ns
time per op/push & pop with Rwlock:
59.51 ns
time per op/push & pop with Sem:
56.32 ns
time per op/swap with Lock:
39.43 ns
time per op/swap with Rwlock:
55.29 ns
time per op/swap with Sem:
49.42 ns
time per op/xchg int with Lock:
41.96 ns
time per op/xchg int with Rwlock:
52.16 ns
time per op/xchg int with Sem:
50.59 ns
(cd _build/default/bench && ./main.exe -brief Picos_mpmcq)
Picos_mpmcq:
messages over time/1 nb adder, 1 nb taker:
5.94 M/s
messages over time/1 nb adder, 2 nb takers:
8.47 M/s
messages over time/1 nb adder, 4 nb takers:
4.97 M/s
messages over time/2 nb adders, 1 nb taker:
9.88 M/s
messages over time/2 nb adders, 2 nb takers:
6.24 M/s
messages over time/2 nb adders, 4 nb takers:
9.79 M/s
messages over time/4 nb adders, 1 nb taker:
6.98 M/s
messages over time/4 nb adders, 2 nb takers:
7.97 M/s
messages over time/4 nb adders, 4 nb takers:
8.99 M/s
messages over time/one domain:
8.36 M/s
time per message/1 nb adder, 1 nb taker:
336.76 ns
time per message/1 nb adder, 2 nb takers:
354.02 ns
time per message/1 nb adder, 4 nb takers:
1006.59 ns
time per message/2 nb adders, 1 nb taker:
303.53 ns
time per message/2 nb adders, 2 nb takers:
641.24 ns
time per message/2 nb adders, 4 nb takers:
613.10 ns
time per message/4 nb adders, 1 nb taker:
716.28 ns
time per message/4 nb adders, 2 nb takers:
753.17 ns
time per message/4 nb adders, 4 nb takers:
889.94 ns
time per message/one domain:
119.65 ns
(cd _build/default/bench && ./main.exe -brief Picos_mpscq)
Picos_mpscq:
messages over time/1 nb adder, 1 nb taker:
9.31 M/s
messages over time/2 nb adders, 1 nb taker:
18.08 M/s
messages over time/4 nb adders, 1 nb taker:
26.38 M/s
messages over time/one domain:
13.86 M/s
time per message/1 nb adder, 1 nb taker:
214.86 ns
time per message/2 nb adders, 1 nb taker:
165.94 ns
time per message/4 nb adders, 1 nb taker:
189.54 ns
time per message/one domain:
72.17 ns
(cd _build/default/bench && ./main.exe -brief Picos_htbl)
Picos_htbl:
operations over time/1 worker, 10% reads:
11.52 M/s
operations over time/1 worker, 50% reads:
12.87 M/s
operations over time/1 worker, 90% reads:
16.56 M/s
operations over time/2 workers, 10% reads:
12.10 M/s
operations over time/2 workers, 50% reads:
15.42 M/s
operations over time/2 workers, 90% reads:
25.51 M/s
operations over time/4 workers, 10% reads:
23.03 M/s
operations over time/4 workers, 50% reads:
27.36 M/s
operations over time/4 workers, 90% reads:
43.95 M/s
operations over time/8 workers, 10% reads:
29.40 M/s
operations over time/8 workers, 50% reads:
26.67 M/s
operations over time/8 workers, 90% reads:
38.45 M/s
time per operation/1 worker, 10% reads:
86.82 ns
time per operation/1 worker, 50% reads:
77.71 ns
time per operation/1 worker, 90% reads:
60.38 ns
time per operation/2 workers, 10% reads:
165.22 ns
time per operation/2 workers, 50% reads:
129.68 ns
time per operation/2 workers, 90% reads:
78.41 ns
time per operation/4 workers, 10% reads:
173.70 ns
time per operation/4 workers, 50% reads:
146.19 ns
time per operation/4 workers, 90% reads:
91.02 ns
time per operation/8 workers, 10% reads:
272.12 ns
time per operation/8 workers, 50% reads:
300.00 ns
time per operation/8 workers, 90% reads:
208.06 ns
(cd _build/default/bench && ./main.exe -brief 'Hashtbl with Picos_std_sync')
Hashtbl with Picos_std_sync:
operations over time/1 worker, 10% reads with Lock:
4.50 M/s
operations over time/1 worker, 10% reads with Rwlock:
3.33 M/s
operations over time/1 worker, 10% reads with Sem:
5.51 M/s
operations over time/1 worker, 100% reads with Lock:
6.19 M/s
operations over time/1 worker, 100% reads with Rwlock:
4.97 M/s
operations over time/1 worker, 100% reads with Sem:
4.26 M/s
operations over time/1 worker, 50% reads with Lock:
4.51 M/s
operations over time/1 worker, 50% reads with Rwlock:
3.72 M/s
operations over time/1 worker, 50% reads with Sem:
4.60 M/s
operations over time/1 worker, 90% reads with Lock:
3.42 M/s
operations over time/1 worker, 90% reads with Rwlock:
5.35 M/s
operations over time/1 worker, 90% reads with Sem:
5.21 M/s
operations over time/1 worker, 95% reads with Lock:
3.98 M/s
operations over time/1 worker, 95% reads with Rwlock:
4.31 M/s
operations over time/1 worker, 95% reads with Sem:
4.32 M/s
operations over time/2 workers, 10% reads with Lock:
2.85 M/s
operations over time/2 workers, 10% reads with Rwlock:
5.23 M/s
operations over time/2 workers, 10% reads with Sem:
3.98 M/s
operations over time/2 workers, 100% reads with Lock:
4.33 M/s
operations over time/2 workers, 100% reads with Rwlock:
6.44 M/s
operations over time/2 workers, 100% reads with Sem:
5.45 M/s
operations over time/2 workers, 50% reads with Lock:
4.51 M/s
operations over time/2 workers, 50% reads with Rwlock:
4.29 M/s
operations over time/2 workers, 50% reads with Sem:
5.00 M/s
operations over time/2 workers, 90% reads with Lock:
4.21 M/s
operations over time/2 workers, 90% reads with Rwlock:
4.98 M/s
operations over time/2 workers, 90% reads with Sem:
4.22 M/s
operations over time/2 workers, 95% reads with Lock:
4.35 M/s
operations over time/2 workers, 95% reads with Rwlock:
4.86 M/s
operations over time/2 workers, 95% reads with Sem:
5.65 M/s
operations over time/4 workers, 10% reads with Lock:
4.22 M/s
operations over time/4 workers, 10% reads with Rwlock:
4.79 M/s
operations over time/4 workers, 10% reads with Sem:
4.41 M/s
operations over time/4 workers, 100% reads with Lock:
4.43 M/s
operations over time/4 workers, 100% reads with Rwlock:
8.42 M/s
operations over time/4 workers, 100% reads with Sem:
4.74 M/s
operations over time/4 workers, 50% reads with Lock:
4.69 M/s
operations over time/4 workers, 50% reads with Rwlock:
4.84 M/s
operations over time/4 workers, 50% reads with Sem:
4.64 M/s
operations over time/4 workers, 90% reads with Lock:
4.54 M/s
operations over time/4 workers, 90% reads with Rwlock:
4.94 M/s
operations over time/4 workers, 90% reads with Sem:
4.05 M/s
operations over time/4 workers, 95% reads with Lock:
4.88 M/s
operations over time/4 workers, 95% reads with Rwlock:
5.29 M/s
operations over time/4 workers, 95% reads with Sem:
4.54 M/s
operations over time/8 workers, 10% reads with Lock:
3.72 M/s
operations over time/8 workers, 10% reads with Rwlock:
4.52 M/s
operations over time/8 workers, 10% reads with Sem:
2.48 M/s
operations over time/8 workers, 100% reads with Lock:
4.24 M/s
operations over time/8 workers, 100% reads with Rwlock:
10.01 M/s
operations over time/8 workers, 100% reads with Sem:
3.34 M/s
operations over time/8 workers, 50% reads with Lock:
3.90 M/s
operations over time/8 workers, 50% reads with Rwlock:
3.40 M/s
operations over time/8 workers, 50% reads with Sem:
3.10 M/s
operations over time/8 workers, 90% reads with Lock:
3.09 M/s
operations over time/8 workers, 90% reads with Rwlock:
2.97 M/s
operations over time/8 workers, 90% reads with Sem:
2.39 M/s
operations over time/8 workers, 95% reads with Lock:
3.73 M/s
operations over time/8 workers, 95% reads with Rwlock:
3.73 M/s
operations over time/8 workers, 95% reads with Sem:
3.79 M/s
time per operation/1 worker, 10% reads with Lock:
222.27 ns
time per operation/1 worker, 10% reads with Rwlock:
300.03 ns
time per operation/1 worker, 10% reads with Sem:
181.55 ns
time per operation/1 worker, 100% reads with Lock:
161.50 ns
time per operation/1 worker, 100% reads with Rwlock:
201.10 ns
time per operation/1 worker, 100% reads with Sem:
234.61 ns
time per operation/1 worker, 50% reads with Lock:
221.88 ns
time per operation/1 worker, 50% reads with Rwlock:
269.16 ns
time per operation/1 worker, 50% reads with Sem:
217.43 ns
time per operation/1 worker, 90% reads with Lock:
292.79 ns
time per operation/1 worker, 90% reads with Rwlock:
186.98 ns
time per operation/1 worker, 90% reads with Sem:
191.86 ns
time per operation/1 worker, 95% reads with Lock:
251.05 ns
time per operation/1 worker, 95% reads with Rwlock:
231.80 ns
time per operation/1 worker, 95% reads with Sem:
231.32 ns
time per operation/2 workers, 10% reads with Lock:
700.61 ns
time per operation/2 workers, 10% reads with Rwlock:
382.47 ns
time per operation/2 workers, 10% reads with Sem:
502.59 ns
time per operation/2 workers, 100% reads with Lock:
462.10 ns
time per operation/2 workers, 100% reads with Rwlock:
310.61 ns
time per operation/2 workers, 100% reads with Sem:
366.86 ns
time per operation/2 workers, 50% reads with Lock:
443.25 ns
time per operation/2 workers, 50% reads with Rwlock:
466.57 ns
time per operation/2 workers, 50% reads with Sem:
400.37 ns
time per operation/2 workers, 90% reads with Lock:
475.07 ns
time per operation/2 workers, 90% reads with Rwlock:
401.86 ns
time per operation/2 workers, 90% reads with Sem:
473.64 ns
time per operation/2 workers, 95% reads with Lock:
459.35 ns
time per operation/2 workers, 95% reads with Rwlock:
411.65 ns
time per operation/2 workers, 95% reads with Sem:
354.07 ns
time per operation/4 workers, 10% reads with Lock:
947.66 ns
time per operation/4 workers, 10% reads with Rwlock:
835.30 ns
time per operation/4 workers, 10% reads with Sem:
906.53 ns
time per operation/4 workers, 100% reads with Lock:
902.42 ns
time per operation/4 workers, 100% reads with Rwlock:
474.93 ns
time per operation/4 workers, 100% reads with Sem:
844.42 ns
time per operation/4 workers, 50% reads with Lock:
852.72 ns
time per operation/4 workers, 50% reads with Rwlock:
826.17 ns
time per operation/4 workers, 50% reads with Sem:
861.85 ns
time per operation/4 workers, 90% reads with Lock:
881.52 ns
time per operation/4 workers, 90% reads with Rwlock:
809.24 ns
time per operation/4 workers, 90% reads with Sem:
987.76 ns
time per operation/4 workers, 95% reads with Lock:
819.05 ns
time per operation/4 workers, 95% reads with Rwlock:
756.45 ns
time per operation/4 workers, 95% reads with Sem:
881.19 ns
time per operation/8 workers, 10% reads with Lock:
2148.48 ns
time per operation/8 workers, 10% reads with Rwlock:
1770.96 ns
time per operation/8 workers, 10% reads with Sem:
3222.21 ns
time per operation/8 workers, 100% reads with Lock:
1888.79 ns
time per operation/8 workers, 100% reads with Rwlock:
799.58 ns
time per operation/8 workers, 100% reads with Sem:
2394.83 ns
time per operation/8 workers, 50% reads with Lock:
2050.78 ns
time per operation/8 workers, 50% reads with Rwlock:
2351.37 ns
time per operation/8 workers, 50% reads with Sem:
2580.15 ns
time per operation/8 workers, 90% reads with Lock:
2593.07 ns
time per operation/8 workers, 90% reads with Rwlock:
2696.31 ns
time per operation/8 workers, 90% reads with Sem:
3349.80 ns
time per operation/8 workers, 95% reads with Lock:
2146.10 ns
time per operation/8 workers, 95% reads with Rwlock:
2147.26 ns
time per operation/8 workers, 95% reads with Sem:
2108.42 ns
(cd _build/default/bench && ./main.exe -brief Picos_stdio)
Picos_stdio:
blocking reads over time/1 worker:
0.05 M/s
blocking reads over time/2 workers:
0.09 M/s
blocking reads over time/4 workers:
0.15 M/s
non-blocking reads over time/1 worker:
0.53 M/s
non-blocking reads over time/2 workers:
1.06 M/s
non-blocking reads over time/4 workers:
1.97 M/s
time per blocking read/1 worker:
19768.09 ns
time per blocking read/2 workers:
22110.03 ns
time per blocking read/4 workers:
27396.57 ns
time per non-blocking read/1 worker:
1898.19 ns
time per non-blocking read/2 workers:
1890.57 ns
time per non-blocking read/4 workers:
2026.60 ns
(cd _build/default/bench && ./main.exe -brief 'Picos_sync Stream')
Picos_sync Stream:
messages over time/1 nb pusher, 1 nb reader:
1.95 M/s
messages over time/2 nb pushers, 1 nb reader:
2.13 M/s
messages over time/4 nb pushers, 1 nb reader:
1.95 M/s
messages over time/one domain:
2.82 M/s
time per message/1 nb pusher, 1 nb reader:
1025.20 ns
time per message/2 nb pushers, 1 nb reader:
1406.26 ns
time per message/4 nb pushers, 1 nb reader:
2567.44 ns
time per message/one domain:
354.57 ns
(cd _build/default/bench && ./main.exe -brief Fib)
Fib:
spawns over time/1 mfifo, fib 20:
0.28 M/s
spawns over time/2 mfifos, fib 20:
0.54 M/s
spawns over time/4 mfifos, fib 20:
1.11 M/s
spawns over time/8 mfifos, fib 20:
0.84 M/s
time per spawn/1 mfifo, fib 20:
3558.76 ns
time per spawn/2 mfifos, fib 20:
3700.82 ns
time per spawn/4 mfifos, fib 20:
3604.38 ns
time per spawn/8 mfifos, fib 20:
9524.94 ns
(cd _build/default/bench && ./main.exe -brief 'Picos binaries')
Picos binaries:
binary size/picos:
94.93 kB
binary size/picos.domain:
5.04 kB
binary size/picos.thread:
4.47 kB
binary size/picos_aux.htbl:
58.16 kB
binary size/picos_aux.mpmcq:
18.75 kB
binary size/picos_aux.mpscq:
20.44 kB
binary size/picos_aux.rc:
19.84 kB
binary size/picos_io:
115.90 kB
binary size/picos_io.fd:
10.69 kB
binary size/picos_io.select:
67.04 kB
binary size/picos_io_cohttp:
48.52 kB
binary size/picos_lwt:
29.74 kB
binary size/picos_lwt.unix:
16.07 kB
binary size/picos_mux.fifo:
30.06 kB
binary size/picos_mux.multififo:
67.30 kB
binary size/picos_mux.random:
52.78 kB
binary size/picos_mux.thread:
26.50 kB
binary size/picos_std.awaitable:
36.45 kB
binary size/picos_std.event:
25.92 kB
binary size/picos_std.finally:
20.75 kB
binary size/picos_std.structured:
94.04 kB
binary size/picos_std.sync:
210.12 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:
5.96 M/s
messages over time/1 adder, 2 takers with Lock:
2.17 M/s
messages over time/1 adder, 4 takers with Lock:
0.10 M/s
messages over time/2 adders, 1 taker with Lock:
3.45 M/s
messages over time/2 adders, 2 takers with Lock:
1.90 M/s
messages over time/2 adders, 4 takers with Lock:
0.93 M/s
messages over time/4 adders, 1 taker with Lock:
0.61 M/s
messages over time/4 adders, 2 takers with Lock:
1.55 M/s
messages over time/4 adders, 4 takers with Lock:
0.06 M/s
messages over time/one domain with Lock:
6.17 M/s
time per message/1 adder, 1 taker with Lock:
335.79 ns
time per message/1 adder, 2 takers with Lock:
1380.78 ns
time per message/1 adder, 4 takers with Lock:
48193.54 ns
time per message/2 adders, 1 taker with Lock:
870.54 ns
time per message/2 adders, 2 takers with Lock:
2105.55 ns
time per message/2 adders, 4 takers with Lock:
6429.32 ns
time per message/4 adders, 1 taker with Lock:
8133.34 ns
time per message/4 adders, 2 takers with Lock:
3882.64 ns
time per message/4 adders, 4 takers with Lock:
125068.46 ns
time per message/one domain with Lock:
162.18 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-08-04 10:39.48 ---> saved as "77be2a162458978e832f90ef8d526bd554a68d2865e2c44e43efe2e832cbdfbb"
Job succeeded
2025-08-04 10:39.48: Job succeeded