2025-05-03 13:02.25: New job: test ocaml-multicore/picos https://github.com/ocaml-multicore/picos.git#refs/heads/add-more-structured-run-ops (b61b247e1163c2dad89cf234bcab3d65bfbb9bfc) (linux-x86_64:fedora-41-5.3_opam-2.3)
Base: ocaml/opam:fedora-41-ocaml-5.3@sha256:7adec6cf23ec645aedf5e0674c624effa13664bf4a32ea8f7dc72d6039c89f9f
Opam project build
To reproduce locally:
git clone --recursive "https://github.com/ocaml-multicore/picos.git" -b "add-more-structured-run-ops" && cd "picos" && git reset --hard b61b247e
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-41-ocaml-5.3@sha256:7adec6cf23ec645aedf5e0674c624effa13664bf4a32ea8f7dc72d6039c89f9f
# fedora-41-5.3_opam-2.3
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo dnf install -y findutils
RUN sudo ln -f /usr/bin/opam-2.3 /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 35eb2f107a989a2d623b0bbe170696398fcb9b1e || git fetch origin master) && git reset -q --hard 35eb2f107a989a2d623b0bbe170696398fcb9b1e && 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.1 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.0 cohttp-lwt.6.1.0 cohttp-lwt-unix.6.1.0 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.15 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.18.2 dune-configurator.3.18.2 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.10.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.1.0 ipaddr.5.6.0 ipaddr-sexp.5.6.0 js_of_ocaml.6.0.1 js_of_ocaml-compiler.6.0.1 kdf.1.0.0 logs.0.8.0 lwt.5.9.1 macaddr.5.6.0 magic-mime.1.3.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-crypto.2.0.0 mirage-crypto-ec.2.0.0 mirage-crypto-pk.2.0.0 mirage-crypto-rng.2.0.0 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.0 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.0 ppxlib.0.35.0 ppxlib_jane.v0.17.2 psq.0.2.1 ptime.1.2.0 qcheck-core.0.25 qcheck-multicoretests-util.0.8 qcheck-stm.0.8 re.1.12.0 result.1.5 rresult.0.7.0 sedlex.3.4 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.0.8 tsort.2.2.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.2.2.2 zarith.1.14"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.3 --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-05-03 13:02.25: Using cache hint "ocaml-multicore/picos-ocaml/opam:fedora-41-ocaml-5.3@sha256:7adec6cf23ec645aedf5e0674c624effa13664bf4a32ea8f7dc72d6039c89f9f-fedora-41-5.3_opam-2.3-8e5da39e506bfcaf4197344d95cb0181"
2025-05-03 13:02.25: Using OBuilder spec:
((from ocaml/opam:fedora-41-ocaml-5.3@sha256:7adec6cf23ec645aedf5e0674c624effa13664bf4a32ea8f7dc72d6039c89f9f)
(comment fedora-41-5.3_opam-2.3)
(user (uid 1000) (gid 1000))
(env CLICOLOR_FORCE 1)
(env OPAMCOLOR always)
(workdir /src)
(run (network host)
(shell "sudo dnf install -y findutils"))
(run (shell "sudo ln -f /usr/bin/opam-2.3 /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 35eb2f107a989a2d623b0bbe170696398fcb9b1e || git fetch origin master) && git reset -q --hard 35eb2f107a989a2d623b0bbe170696398fcb9b1e && 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.1 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.0 cohttp-lwt.6.1.0 cohttp-lwt-unix.6.1.0 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.15 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.18.2 dune-configurator.3.18.2 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.10.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.1.0 ipaddr.5.6.0 ipaddr-sexp.5.6.0 js_of_ocaml.6.0.1 js_of_ocaml-compiler.6.0.1 kdf.1.0.0 logs.0.8.0 lwt.5.9.1 macaddr.5.6.0 magic-mime.1.3.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-crypto.2.0.0 mirage-crypto-ec.2.0.0 mirage-crypto-pk.2.0.0 mirage-crypto-rng.2.0.0 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.0 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.0 ppxlib.0.35.0 ppxlib_jane.v0.17.2 psq.0.2.1 ptime.1.2.0 qcheck-core.0.25 qcheck-multicoretests-util.0.8 qcheck-stm.0.8 re.1.12.0 result.1.5 rresult.0.7.0 sedlex.3.4 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.0.8 tsort.2.2.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.2.2.2 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.3 --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-05-03 13:02.25: Waiting for resource in pool OCluster
2025-05-03 13:02.25: Waiting for worker…
2025-05-03 13:02.25: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
HEAD is now at b61b247 Add more structured `Run` operations
(from ocaml/opam:fedora-41-ocaml-5.3@sha256:7adec6cf23ec645aedf5e0674c624effa13664bf4a32ea8f7dc72d6039c89f9f)
2025-05-03 13:02.25 ---> using "2e88ed4dcba4576517c9e5c31ec292604a0167c293ab083c7a17d23ea7043a4b" from cache
/: (comment fedora-41-5.3_opam-2.3)
/: (user (uid 1000) (gid 1000))
/: (env CLICOLOR_FORCE 1)
/: (env OPAMCOLOR always)
/: (workdir /src)
/src: (run (network host)
(shell "sudo dnf install -y findutils"))
Updating and loading repositories:
Fedora 41 openh264 (From Cisco) - x86_ 100% | 9.5 KiB/s | 989.0 B | 00m00s
Fedora 41 - x86_64 100% | 198.6 KiB/s | 26.2 KiB | 00m00s
Fedora 41 - x86_64 - Updates 100% | 102.0 KiB/s | 12.2 KiB | 00m00s
Fedora 41 - x86_64 - Updates 100% | 3.8 MiB/s | 6.1 MiB | 00m02s
Repositories loaded.
Package "findutils-1:4.10.0-4.fc41.x86_64" is already installed.
Nothing to do.
2025-05-03 13:02.25 ---> using "49f03c67259d7c6eb7b329e6dd99562b12957943cdc7eb59c6fccee42cb8c96b" from cache
/src: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-05-03 13:02.25 ---> using "150f83bcd23816c7439e2a7cc0a9510c20852826e7d3646a9a8cf2e4391c06ba" 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 development 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
[NOTE] The 'jobs' option was reset, its value was 255 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=255 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-05-03 13:02.25 ---> using "5eae61695156baf5e0bfdeb6901d4b1acba7463399b56254fb189971f33ed27b" 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.3.0
2025-05-03 13:02.25 ---> using "a870a43310505ebea3993643cb6ece1ed6774daccf03064ec009dba9a7d20968" from cache
/src: (workdir /src)
/src: (run (shell "sudo chown opam /src"))
2025-05-03 13:02.25 ---> using "a82ed21818bd936aec652225771f034594fe03ca3da2cae9c8fcff843f89b805" from cache
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 35eb2f107a989a2d623b0bbe170696398fcb9b1e || git fetch origin master) && git reset -q --hard 35eb2f107a989a2d623b0bbe170696398fcb9b1e && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch master -> FETCH_HEAD
da74d7829f..35eb2f107a master -> origin/master
35eb2f107a Merge pull request #27838 from maiste/release-dune-3.18.2
<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from git+file:///home/opam/opam-repository
Everything as up-to-date as possible (run with --verbose to show unavailable upgrades).
However, you may "opam upgrade" these packages explicitly, which will ask permission to downgrade or uninstall the conflicting packages.
Nothing to do.
# To update the current shell environment, run: eval $(opam env)
2025-05-03 13:02.25 ---> using "f15e50ea6a5ddff8b511db9f73bcd5316e22db338baffff0aafa2d100c5d7ed3" 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-05-03 13:02.25 ---> using "ff6167ffa58e195f1669cd175f44cc88c3fab9c6b76ce2f8c32fcdaa18a3ad0a" from cache
/src: (run (network host)
(shell "opam pin add -yn picos_std.dev './' && \
\nopam pin add -yn picos_mux.dev './' && \
\nopam pin add -yn picos_meta.dev './' && \
\nopam pin add -yn picos_lwt.dev './' && \
\nopam pin add -yn picos_io_cohttp.dev './' && \
\nopam pin add -yn picos_io.dev './' && \
\nopam pin add -yn picos_aux.dev './' && \
\nopam pin add -yn picos.dev './'"))
[picos_std.dev] synchronised (file:///src)
picos_std is now pinned to file:///src (version dev)
[picos_mux.dev] synchronised (file:///src)
picos_mux is now pinned to file:///src (version dev)
[picos_meta.dev] synchronised (file:///src)
picos_meta is now pinned to file:///src (version dev)
[picos_lwt.dev] synchronised (file:///src)
picos_lwt is now pinned to file:///src (version dev)
[picos_io_cohttp.dev] synchronised (file:///src)
picos_io_cohttp is now pinned to file:///src (version dev)
[picos_io.dev] synchronised (file:///src)
picos_io is now pinned to file:///src (version dev)
[picos_aux.dev] synchronised (file:///src)
picos_aux is now pinned to file:///src (version dev)
[picos.dev] synchronised (file:///src)
picos is now pinned to file:///src (version dev)
2025-05-03 13:02.25 ---> using "05d31dfc25dc3c00dd6e3122a69f52a89b23b2f852b31b89c4f73a66cf7c893b" from cache
/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-05-03 13:02.25 ---> using "0bae6151d54cedd5d08ff523bd9d345cecda8bb25faacabedf4c7fa498a2eb05" from cache
/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.1 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.0 cohttp-lwt.6.1.0 cohttp-lwt-unix.6.1.0 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.15 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.18.2 dune-configurator.3.18.2 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.10.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.1.0 ipaddr.5.6.0 ipaddr-sexp.5.6.0 js_of_ocaml.6.0.1 js_of_ocaml-compiler.6.0.1 kdf.1.0.0 logs.0.8.0 lwt.5.9.1 macaddr.5.6.0 magic-mime.1.3.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-crypto.2.0.0 mirage-crypto-ec.2.0.0 mirage-crypto-pk.2.0.0 mirage-crypto-rng.2.0.0 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.0 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.0 ppxlib.0.35.0 ppxlib_jane.v0.17.2 psq.0.2.1 ptime.1.2.0 qcheck-core.0.25 qcheck-multicoretests-util.0.8 qcheck-stm.0.8 re.1.12.0 result.1.5 rresult.0.7.0 sedlex.3.4 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.0.8 tsort.2.2.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.2.2.2 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.3 --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 "yum" "makecache"
- Updating and loading repositories:
- Fedora 41 - x86_64 - Updates 100% | 149.5 KiB/s | 22.9 KiB | 00m00s
- Fedora 41 - x86_64 - Updates 100% | 2.2 MiB/s | 2.9 MiB | 00m01s
- Repositories loaded.
- Metadata cache created.
<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[picos_aux.dev] synchronised (file:///src)
[picos.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
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
+ /usr/bin/sudo "yum" "install" "-y" "gmp-devel" "npm"
- Updating and loading repositories:
- Repositories loaded.
- Package Arch Version Repository Size
- Installing:
- gmp-devel x86_64 1:6.3.0-2.fc41 fedora 352.3 KiB
- nodejs-npm x86_64 1:10.9.2-1.22.14.0.2.fc41 updates 9.3 MiB
- Installing dependencies:
- gmp-c++ x86_64 1:6.3.0-2.fc41 fedora 31.8 KiB
- libuv x86_64 1:1.50.0-1.fc41 updates 568.4 KiB
- nodejs x86_64 1:22.14.0-2.fc41 updates 149.5 KiB
- nodejs-libs x86_64 1:22.14.0-2.fc41 updates 75.9 MiB
- Installing weak dependencies:
- nodejs-docs noarch 1:22.14.0-2.fc41 updates 93.7 MiB
- nodejs-full-i18n x86_64 1:22.14.0-2.fc41 updates 30.4 MiB
-
- Transaction Summary:
- Installing: 8 packages
-
- Total size of inbound packages is 39 MiB. Need to download 39 MiB.
- After this operation, 210 MiB extra will be used (install 210 MiB, remove 0 B).
- [1/8] gmp-c++-1:6.3.0-2.fc41.x86_64 100% | 278.1 KiB/s | 18.6 KiB | 00m00s
- [2/8] nodejs-1:22.14.0-2.fc41.x86_64 100% | 537.2 KiB/s | 46.7 KiB | 00m00s
- [3/8] nodejs-npm-1:10.9.2-1.22.14.0.2.f 100% | 14.3 MiB/s | 2.4 MiB | 00m00s
- [4/8] libuv-1:1.50.0-1.fc41.x86_64 100% | 3.0 MiB/s | 264.3 KiB | 00m00s
- [5/8] gmp-devel-1:6.3.0-2.fc41.x86_64 100% | 612.0 KiB/s | 174.4 KiB | 00m00s
- [6/8] nodejs-docs-1:22.14.0-2.fc41.noar 100% | 7.5 MiB/s | 8.8 MiB | 00m01s
- [7/8] nodejs-full-i18n-1:22.14.0-2.fc41 100% | 7.0 MiB/s | 8.5 MiB | 00m01s
- [8/8] nodejs-libs-1:22.14.0-2.fc41.x86_ 100% | 6.4 MiB/s | 19.2 MiB | 00m03s
- --------------------------------------------------------------------------------
- [8/8] Total 100% | 11.4 MiB/s | 39.4 MiB | 00m03s
- Running transaction
- [ 1/10] Verify package files 100% | 12.0 B/s | 8.0 B | 00m01s
- [ 2/10] Prepare transaction 100% | 43.0 B/s | 8.0 B | 00m00s
- [ 3/10] Installing libuv-1:1.50.0-1.fc4 100% | 62.0 MiB/s | 571.2 KiB | 00m00s
- [ 4/10] Installing nodejs-libs-1:22.14. 100% | 81.6 MiB/s | 75.9 MiB | 00m01s
- [ 5/10] Installing nodejs-1:22.14.0-2.f 100% | 37.0 MiB/s | 151.6 KiB | 00m00s
- [ 6/10] Installing gmp-c++-1:6.3.0-2.fc 100% | 10.6 MiB/s | 32.6 KiB | 00m00s
- [ 7/10] Installing gmp-devel-1:6.3.0-2. 100% | 15.7 MiB/s | 354.1 KiB | 00m00s
- [ 8/10] Installing nodejs-npm-1:10.9.2- 100% | 18.8 MiB/s | 9.8 MiB | 00m01s
- [ 9/10] Installing nodejs-full-i18n-1:2 100% | 82.3 MiB/s | 30.4 MiB | 00m00s
- [10/10] Installing nodejs-docs-1:22.14. 100% | 253.7 MiB/s | 93.9 MiB | 00m00s
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "gmp-devel" "npm"
- gmp-devel-6.3.0-2.fc41.x86_64
- nodejs-npm-10.9.2-1.22.14.0.2.fc41.x86_64
2025-05-03 13:02.25 ---> using "4f6ca5a119765b552890bea8c5dbc68f0dbf698880a0d8fec1bf207ad5df3dd6" from cache
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 3).
[NOTE] Package ocaml-compiler is already installed (current version is 5.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.1
- 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.0
- install cohttp-lwt 6.1.0
- install cohttp-lwt-unix 6.1.0
- 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.15
- 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.18.2
- install dune-configurator 3.18.2
- install duration 0.2.1
- install either 1.0.0
- install eqaf 0.10
- install fmt 0.10.0
- install fpath 0.7.3
- install gen 1.1
- install gmap 0.3.0
- install http 6.1.0
- install ipaddr 5.6.0
- install ipaddr-sexp 5.6.0
- install js_of_ocaml 6.0.1
- install js_of_ocaml-compiler 6.0.1
- install kdf 1.0.0
- install logs 0.8.0
- install lwt 5.9.1
- install macaddr 5.6.0
- 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.0
- install mirage-crypto-ec 2.0.0
- install mirage-crypto-pk 2.0.0
- install mirage-crypto-rng 2.0.0
- 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.0
- 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.0
- install ppxlib 0.35.0
- install ppxlib_jane v0.17.2
- install psq 0.2.1
- install ptime 1.2.0
- install qcheck-core 0.25
- install qcheck-multicoretests-util 0.8
- install qcheck-stm 0.8
- install re 1.12.0
- install result 1.5
- install rresult 0.7.0
- install sedlex 3.4
- 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.0.8
- 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 2.2.2
- install zarith 1.14
The following system packages will first need to be installed:
npm
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
2. Display the recommended yum command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "yum" "install" "-y" "npm"
- Updating and loading repositories:
- Repositories loaded.
- Package "nodejs-npm-1:10.9.2-1.22.14.0.2.fc41.x86_64" is already installed.
-
- Nothing to do.
+ /usr/bin/rpm "-q" "--whatprovides" "npm"
- nodejs-npm-10.9.2-1.22.14.0.2.fc41.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asn1-combinators.0.3.2 (cached)
-> retrieved angstrom.0.16.1 (cached)
-> retrieved alcotest.1.9.0 (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.1 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved ca-certs.1.0.1 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-gmp-powm-sec.4 (cached)
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (cached)
-> retrieved cohttp.6.1.0, cohttp-lwt.6.1.0, cohttp-lwt-unix.6.1.0, http.6.1.0 (cached)
-> retrieved containers.3.15 (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved cppo.1.8.0 (cached)
-> installed conf-npm.1
-> retrieved csexp.1.5.2 (cached)
-> installed conf-gmp-powm-sec.4
-> retrieved domain-local-await.1.0.1 (cached)
-> retrieved domain-name.0.4.1 (cached)
-> retrieved domain_shims.0.1.0 (cached)
-> retrieved dscheck.0.5.0 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved fmt.0.10.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved gen.1.1 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved ipaddr.5.6.0, ipaddr-sexp.5.6.0, macaddr.5.6.0 (cached)
-> retrieved digestif.1.3.0 (cached)
-> retrieved kdf.1.0.0 (cached)
-> retrieved logs.0.8.0 (cached)
-> retrieved lwt.5.9.1 (cached)
-> retrieved magic-mime.1.3.1 (cached)
-> retrieved mdx.2.5.0 (cached)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached)
-> retrieved dune.3.18.2, dune-configurator.3.18.2 (cached)
-> retrieved js_of_ocaml.6.0.1, js_of_ocaml-compiler.6.0.1 (cached)
-> retrieved mirage-crypto.2.0.0, mirage-crypto-ec.2.0.0, mirage-crypto-pk.2.0.0, mirage-crypto-rng.2.0.0 (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.0 (cached)
-> installed cmdliner.1.3.0
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (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.0 (cached)
-> retrieved ppxlib_jane.v0.17.2 (cached)
-> retrieved psq.0.2.1 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved qcheck-core.0.25 (cached)
-> retrieved qcheck-multicoretests-util.0.8, qcheck-stm.0.8 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved re.1.12.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved rresult.0.7.0 (cached)
-> retrieved sedlex.3.4 (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.0.8 (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved zarith.1.14 (cached)
-> retrieved x509.1.0.6 (cached)
-> retrieved yojson.2.2.2 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.0.8
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed mtime.2.1.0
-> installed fmt.0.10.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed dune.3.18.2
-> installed csexp.1.5.2
-> installed asn1-combinators.0.3.2
-> installed backoff.0.1.1
-> installed base64.3.5.1
-> installed camlp-streams.5.0.1
-> installed domain-name.0.4.1
-> installed domain_shims.0.1.0
-> installed duration.0.2.1
-> installed either.1.0.0
-> installed eqaf.0.10
-> installed gen.1.1
-> installed cppo.1.8.0
-> installed gmap.0.3.0
-> installed http.6.1.0
-> installed macaddr.5.6.0
-> installed magic-mime.1.3.1
-> installed menhirCST.20240715
-> installed menhirLib.20240715
-> installed menhirSdk.20240715
-> installed multicore-magic.2.3.1
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-version.4.0.0
-> 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 result.1.5
-> installed re.1.12.0
-> 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 ocplib-endian.1.2
-> installed ocaml-compiler-libs.v0.17.0
-> installed qcheck-core.0.25
-> installed yojson.2.2.2
-> installed ipaddr.5.6.0
-> installed domain-local-await.1.0.1
-> installed digestif.1.3.0
-> installed qcheck-multicoretests-util.0.8
-> installed alcotest.1.9.0
-> installed multicore-bench.0.1.7
-> installed dune-configurator.3.18.2
-> installed qcheck-stm.0.8
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed mirage-crypto.2.0.0
-> installed containers.3.15
-> installed kdf.1.0.0
-> installed dscheck.0.5.0
-> installed uri.4.4.0
-> installed multicore-magic-dscheck.2.3.1
-> installed lwt.5.9.1
-> installed base.v0.17.1
-> installed menhir.20240715
-> installed ppxlib.0.35.0
-> installed ppxlib_jane.v0.17.2
-> installed sedlex.3.4
-> installed ppx_sexp_conv.v0.17.0
-> installed ipaddr-sexp.5.6.0
-> installed uri-sexp.4.4.0
-> installed js_of_ocaml-compiler.6.0.1
-> installed logs.0.8.0
-> installed mirage-crypto-rng.2.0.0
-> installed conduit.8.0.0
-> installed mirage-crypto-pk.2.0.0
-> installed cohttp.6.1.0
-> installed bos.0.2.1
-> installed mdx.2.5.0
-> installed conduit-lwt.8.0.0
-> installed cohttp-lwt.6.1.0
-> installed mirage-crypto-ec.2.0.0
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt-unix.6.1.0
-> installed js_of_ocaml.6.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-05-03 13:02.25 ---> using "a6f61b5491d999b0cd24bef2214485bea0e5cbe4aaa386ee0d302a03995175ed" from cache
/src: (copy (src .) (dst /src))
2025-05-03 13:02.26 ---> saved as "f6dee7b503c1ab6f17bcafa0a0003f10f91d9a4a7c80f1654879f5bfb8fbb62b"
/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
(cd _build/default/example && ./guards.exe)
Testing with scheduler: lwt
Ran guarded case statement examples.
(cd _build/default/test && ./test_finally.exe)
Testing `Picos_finally'.
This run has ID `0L23AJMH'.
[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.010s. 2 tests run.
(cd _build/default/test && ./test_server_and_client.exe)
Using blocking sockets and fibers on OCaml 5:
Looping server running
Server listening
Server accepting
Client B running
Client B connected
Client B wrote 100
Client A running
Client A connected
Client A wrote 100
Server accepted client
Server read 100
Server wrote 50
Server accepting
Server accepted client
Server read 100
Server wrote 50
Server accepting
Client B read 50
Client A read 50
Server and Client test: OK
(cd _build/default/test && ./test_lwt_unix.exe)
Testing `Picos_lwt'.
This run has ID `PK9WBPXS'.
[OK] Basics 0
Full test results in `/src/_build/default/test/_build/_tests/Picos_lwt'.
Test Successful in 0.052s. 1 test run.
(cd _build/default/test && ./test_io.exe)
Testing `Picos_io'.
This run has ID `ROSPG3AV'.
[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.533s. 6 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.0
content-length: 0
Body:
(cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 0)
Testing `Picos_sync'.
This run has ID `HLYL4XVD'.
[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.287s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 1)
Testing `Picos_sync'.
This run has ID `XOFBVAW3'.
[SKIP] Mutex and Condition 0 basics.
[OK] Mutex and Condition 1 errors.
[SKIP] Mutex and Condition 2 cancelation.
[SKIP] Lock and Lock.Condition 0 basics.
[SKIP] Lock and Lock.Condition 1 cancelation.
[SKIP] Lock and Lock.Condition 2 poisoning.
[SKIP] Lock and Lock.Condition 3 try_acquire.
[SKIP] Rwlock and Rwlock.Condition 0 basics.
[SKIP] Rwlock and Rwlock.Condition 1 cancelation.
[SKIP] Rwlock and Rwlock.Condition 2 poisoning.
[SKIP] Rwlock and Rwlock.Condition 3 freezing.
[SKIP] Rwlock and Rwlock.Condition 4 try_acquire.
[SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared.
[SKIP] Rwlock and Rwlock.Condition 6 sharing.
[SKIP] Semaphore 0 basics.
[SKIP] Semaphore 1 stress.
[SKIP] Sem 0 basics.
[SKIP] Sem 1 stress.
[SKIP] Sem 2 poisoning.
[SKIP] Sem 3 try_acquire.
[SKIP] Lazy 0 basics.
[SKIP] Lazy 1 cancelation.
[SKIP] Event 0 basics.
[SKIP] Barrier 0 basics.
[SKIP] Barrier 1 poisoning.
[SKIP] Non-cancelable ops 0 are not canceled.
Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.002s. 1 test run.
(cd _build/default/test && ./test_io_cohttp.exe)
Uri: //127.0.0.1:54555/hello-io-cohttp
Method: POST
host: 127.0.0.1:54555
user-agent: ocaml-cohttp/v6.1.0
content-length: 17
Body: It's-a-Me, Picos!
(cd _build/default/test && ./test_io_with_lwt.exe)
Testing `Picos_io_with_lwt'.
This run has ID `YVDQ6TSH'.
[OK] Unix 0 system.
Full test results in `/src/_build/default/test/_build/_tests/Picos_io_with_lwt'.
Test Successful in 2.167s. 1 test run.
(cd _build/default/test && ./test_structured.exe)
Testing `Picos_structured'.
This run has ID `G51BRYX0'.
[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.
[OK] Run 3 for_n basic.
Full test results in `/src/_build/default/test/_build/_tests/Picos_structured'.
Test Successful in 2.108s. 15 tests run.
(cd _build/default/test && ./test_picos_dscheck.exe)
Testing `Picos DSCheck'.
This run has ID `CKR5J6S9'.
[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.400s. 3 tests run.
(cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 2)
Testing `Picos_sync'.
This run has ID `KTU4PO68'.
[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 2.165s. 1 test run.
(cd _build/default/test && ./test_select.exe)
Testing `Picos_select'.
This run has ID `T76WBF8H'.
[OK] Intr 0
Full test results in `/src/_build/default/test/_build/_tests/Picos_select'.
Test Successful in 3.224s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 0)
Testing `Picos_sync'.
This run has ID `4TUMMV7G'.
[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.413s. 1 test run.
(cd _build/default/test && ./test_mpmcq_dscheck.exe)
Testing `Picos_mpmcq DSCheck'.
This run has ID `04P6H071'.
[OK] Multiple pushes and pops 0
Full test results in `/src/_build/default/test/_build/_tests/Picos_mpmcq DSCheck'.
Test Successful in 3.893s. 1 test run.
(cd _build/default/bench && ./main.exe -brief 'Picos Computation')
Picos Computation:
attach detach pairs over time/1 worker:
0.78 M/s
attach detach pairs over time/2 workers:
1.81 M/s
attach detach pairs over time/4 workers:
1.36 M/s
attach detach pairs over time/trivial:
4.39 M/s
time per attach detach pair/1 worker:
1289.10 ns
time per attach detach pair/2 workers:
1104.79 ns
time per attach detach pair/4 workers:
2943.19 ns
time per attach detach pair/trivial:
227.84 ns
(cd _build/default/test && /usr/bin/node test_js_of_ocaml.bc.js)
Hello, from js_of_ocaml with Picos!
(cd _build/default/bench && ./main.exe -brief 'Picos Current')
Picos Current:
ops over time/1 worker:
18.97 M/s
ops over time/2 workers:
15.76 M/s
ops over time/4 workers:
14.46 M/s
time per op/1 worker:
52.71 ns
time per op/2 workers:
126.89 ns
time per op/4 workers:
276.67 ns
(cd _build/default/bench && ./main.exe -brief 'Picos FLS (excluding Current)')
Picos FLS (excluding Current):
gets over time/1 worker:
125.64 M/s
gets over time/2 workers:
179.03 M/s
gets over time/4 workers:
165.61 M/s
sets over time/1 worker:
68.35 M/s
sets over time/2 workers:
105.11 M/s
sets over time/4 workers:
173.16 M/s
time per get/1 worker:
7.96 ns
time per get/2 workers:
11.17 ns
time per get/4 workers:
24.15 ns
time per set/1 worker:
14.63 ns
time per set/2 workers:
19.03 ns
time per set/4 workers:
23.10 ns
(cd _build/default/bench && ./main.exe -brief 'Picos TLS')
Picos TLS:
gets over time/1 worker:
75.77 M/s
gets over time/2 workers:
117.42 M/s
gets over time/4 workers:
230.91 M/s
sets over time/1 worker:
33.59 M/s
sets over time/2 workers:
52.66 M/s
sets over time/4 workers:
57.10 M/s
time per get/1 worker:
13.20 ns
time per get/2 workers:
17.03 ns
time per get/4 workers:
17.32 ns
time per set/1 worker:
29.77 ns
time per set/2 workers:
37.98 ns
time per set/4 workers:
70.05 ns
(cd _build/default/bench && ./main.exe -brief 'Picos DLS')
Picos DLS:
gets over time/1 worker:
56.21 M/s
gets over time/2 workers:
87.63 M/s
gets over time/4 workers:
133.66 M/s
sets over time/1 worker:
58.50 M/s
sets over time/2 workers:
104.74 M/s
sets over time/4 workers:
126.96 M/s
time per get/1 worker:
17.79 ns
time per get/2 workers:
22.82 ns
time per get/4 workers:
29.93 ns
time per set/1 worker:
17.09 ns
time per set/2 workers:
19.09 ns
time per set/4 workers:
31.50 ns
(cd _build/default/test && ./test_schedulers.exe)
Testing with scheduler: fifos ~quota:46
Fairness of 100 fibers performing at least 10000 yields:
sd: 0.000063 -- ideally 0
mean: 1.000138 -- ideally 1
median: 1.000100 -- ideally 1
Testing `Picos schedulers'.
This run has ID `T7PWXZ4L'.
[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 23.349s. 8 tests run.
Thread 167 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 168 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 169 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 170 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 171 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 172 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 173 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 174 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 175 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 176 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 177 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 178 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 179 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 180 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 181 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 182 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 183 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 184 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 185 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 186 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 187 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 188 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 189 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 190 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 191 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 192 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 193 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 194 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 195 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 196 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 197 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 198 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 199 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 200 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 201 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 202 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 203 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 204 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 205 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 206 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 207 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 208 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 209 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 210 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 211 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 212 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 213 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 214 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 215 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 216 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 217 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 218 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 219 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 220 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 221 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 222 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 223 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 224 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 225 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 226 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 227 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 228 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 229 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 230 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 231 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 232 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 157 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 159 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 247 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 250 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 251 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 160 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 238 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
Thread 155 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 48, characters 8-14
(cd _build/default/test && ./test_picos.exe)
Testing `Picos'.
This run has ID `M1QP7RTO'.
[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 30.582s. 7 tests run.
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 1)
Testing `Picos_sync'.
This run has ID `T5GHG66P'.
[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 29.452s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 2)
Testing `Picos_sync'.
This run has ID `WZKHT884'.
[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 `43PEOYFQ'.
[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.006s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 0)
Testing `Picos_sync'.
This run has ID `GES1WQ3H'.
[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.062s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 1)
Testing `Picos_sync'.
This run has ID `TYU818T2'.
[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 8.162s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 2)
Testing `Picos_sync'.
This run has ID `BHR8RL9T'.
[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.044s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 3)
Testing `Picos_sync'.
This run has ID `OK2ZRQOI'.
[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.004s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 4)
Testing `Picos_sync'.
This run has ID `PNTTSIEX'.
[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 `HETW6HOU'.
[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.021s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 6)
Testing `Picos_sync'.
This run has ID `MVULTYHM'.
[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.004s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Semaphore$ 0)
Testing `Picos_sync'.
This run has ID `Y4B3KMEM'.
[SKIP] Mutex and Condition 0 basics.
[SKIP] Mutex and Condition 1 errors.
[SKIP] Mutex and Condition 2 cancelation.
[SKIP] Lock and Lock.Condition 0 basics.
[SKIP] Lock and Lock.Condition 1 cancelation.
[SKIP] Lock and Lock.Condition 2 poisoning.
[SKIP] Lock and Lock.Condition 3 try_acquire.
[SKIP] Rwlock and Rwlock.Condition 0 basics.
[SKIP] Rwlock and Rwlock.Condition 1 cancelation.
[SKIP] Rwlock and Rwlock.Condition 2 poisoning.
[SKIP] Rwlock and Rwlock.Condition 3 freezing.
[SKIP] Rwlock and Rwlock.Condition 4 try_acquire.
[SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared.
[SKIP] Rwlock and Rwlock.Condition 6 sharing.
[OK] Semaphore 0 basics.
[SKIP] Semaphore 1 stress.
[SKIP] Sem 0 basics.
[SKIP] Sem 1 stress.
[SKIP] Sem 2 poisoning.
[SKIP] Sem 3 try_acquire.
[SKIP] Lazy 0 basics.
[SKIP] Lazy 1 cancelation.
[SKIP] Event 0 basics.
[SKIP] Barrier 0 basics.
[SKIP] Barrier 1 poisoning.
[SKIP] Non-cancelable ops 0 are not canceled.
Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.001s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Semaphore$ 1)
Testing `Picos_sync'.
This run has ID `GRH9EX6K'.
[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.278s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 0)
Testing `Picos_sync'.
This run has ID `FBHYUBLT'.
[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.001s. 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.32 M/s
locked yields over time/1024 fibers with Rwlock:
0.33 M/s
locked yields over time/1024 fibers with Sem:
0.27 M/s
locked yields over time/1024 fibers with Sem 2:
0.61 M/s
locked yields over time/1024 fibers with Sem 3:
0.54 M/s
locked yields over time/1024 fibers with Sem 4:
0.49 M/s
locked yields over time/1 fiber with Lock:
3.35 M/s
locked yields over time/1 fiber with Rwlock:
4.08 M/s
locked yields over time/1 fiber with Sem:
3.57 M/s
locked yields over time/1 fiber with Sem 2:
1.17 M/s
locked yields over time/1 fiber with Sem 3:
3.72 M/s
locked yields over time/1 fiber with Sem 4:
3.64 M/s
locked yields over time/256 fibers with Lock:
0.31 M/s
locked yields over time/256 fibers with Rwlock:
0.26 M/s
locked yields over time/256 fibers with Sem:
0.26 M/s
locked yields over time/256 fibers with Sem 2:
0.97 M/s
locked yields over time/256 fibers with Sem 3:
1.34 M/s
locked yields over time/256 fibers with Sem 4:
0.82 M/s
locked yields over time/2 domains with Lock:
1.27 M/s
locked yields over time/2 domains with Rwlock:
0.88 M/s
locked yields over time/2 domains with Sem:
0.95 M/s
locked yields over time/2 domains with Sem 2:
3.51 M/s
locked yields over time/2 domains with Sem 3:
4.73 M/s
locked yields over time/2 domains with Sem 4:
4.18 M/s
locked yields over time/2 fibers with Lock:
0.74 M/s
locked yields over time/2 fibers with Rwlock:
0.44 M/s
locked yields over time/2 fibers with Sem:
0.46 M/s
locked yields over time/2 fibers with Sem 2:
3.71 M/s
locked yields over time/2 fibers with Sem 3:
2.77 M/s
locked yields over time/2 fibers with Sem 4:
2.88 M/s
locked yields over time/3 domains with Lock:
1.27 M/s
locked yields over time/3 domains with Rwlock:
1.13 M/s
locked yields over time/3 domains with Sem:
0.56 M/s
locked yields over time/3 domains with Sem 2:
2.80 M/s
locked yields over time/3 domains with Sem 3:
6.46 M/s
locked yields over time/3 domains with Sem 4:
6.61 M/s
locked yields over time/3 fibers with Lock:
0.35 M/s
locked yields over time/3 fibers with Rwlock:
0.38 M/s
locked yields over time/3 fibers with Sem:
0.38 M/s
locked yields over time/3 fibers with Sem 2:
1.29 M/s
locked yields over time/3 fibers with Sem 3:
3.36 M/s
locked yields over time/3 fibers with Sem 4:
3.51 M/s
locked yields over time/4 domains with Lock:
0.58 M/s
locked yields over time/4 domains with Rwlock:
0.55 M/s
locked yields over time/4 domains with Sem:
0.73 M/s
locked yields over time/4 domains with Sem 2:
2.24 M/s
locked yields over time/4 domains with Sem 3:
4.43 M/s
locked yields over time/4 domains with Sem 4:
7.00 M/s
locked yields over time/4 fibers with Lock:
0.31 M/s
locked yields over time/4 fibers with Rwlock:
0.41 M/s
locked yields over time/4 fibers with Sem:
0.33 M/s
locked yields over time/4 fibers with Sem 2:
0.93 M/s
locked yields over time/4 fibers with Sem 3:
1.39 M/s
locked yields over time/4 fibers with Sem 4:
3.71 M/s
locked yields over time/512 fibers with Lock:
0.41 M/s
locked yields over time/512 fibers with Rwlock:
0.49 M/s
locked yields over time/512 fibers with Sem:
0.37 M/s
locked yields over time/512 fibers with Sem 2:
0.58 M/s
locked yields over time/512 fibers with Sem 3:
1.03 M/s
locked yields over time/512 fibers with Sem 4:
1.03 M/s
locked yields over time/8 domains with Lock:
0.80 M/s
locked yields over time/8 domains with Rwlock:
0.67 M/s
locked yields over time/8 domains with Sem:
0.71 M/s
locked yields over time/8 domains with Sem 2:
2.33 M/s
locked yields over time/8 domains with Sem 3:
3.44 M/s
locked yields over time/8 domains with Sem 4:
1.73 M/s
locked yields over time/8 fibers with Lock:
0.43 M/s
locked yields over time/8 fibers with Rwlock:
0.51 M/s
locked yields over time/8 fibers with Sem:
0.40 M/s
locked yields over time/8 fibers with Sem 2:
0.48 M/s
locked yields over time/8 fibers with Sem 3:
0.99 M/s
locked yields over time/8 fibers with Sem 4:
1.76 M/s
time per locked yield/1024 fibers with Lock:
3159.74 ns
time per locked yield/1024 fibers with Rwlock:
3030.41 ns
time per locked yield/1024 fibers with Sem:
3676.78 ns
time per locked yield/1024 fibers with Sem 2:
1637.05 ns
time per locked yield/1024 fibers with Sem 3:
1861.66 ns
time per locked yield/1024 fibers with Sem 4:
2055.96 ns
time per locked yield/1 fiber with Lock:
298.09 ns
time per locked yield/1 fiber with Rwlock:
245.13 ns
time per locked yield/1 fiber with Sem:
279.82 ns
time per locked yield/1 fiber with Sem 2:
857.89 ns
time per locked yield/1 fiber with Sem 3:
269.13 ns
time per locked yield/1 fiber with Sem 4:
274.95 ns
time per locked yield/256 fibers with Lock:
3190.49 ns
time per locked yield/256 fibers with Rwlock:
3891.12 ns
time per locked yield/256 fibers with Sem:
3790.28 ns
time per locked yield/256 fibers with Sem 2:
1029.83 ns
time per locked yield/256 fibers with Sem 3:
744.20 ns
time per locked yield/256 fibers with Sem 4:
1219.22 ns
time per locked yield/2 domains with Lock:
1573.85 ns
time per locked yield/2 domains with Rwlock:
2319.95 ns
time per locked yield/2 domains with Sem:
2110.78 ns
time per locked yield/2 domains with Sem 2:
570.47 ns
time per locked yield/2 domains with Sem 3:
422.39 ns
time per locked yield/2 domains with Sem 4:
479.02 ns
time per locked yield/2 fibers with Lock:
1348.84 ns
time per locked yield/2 fibers with Rwlock:
2263.00 ns
time per locked yield/2 fibers with Sem:
2185.19 ns
time per locked yield/2 fibers with Sem 2:
269.35 ns
time per locked yield/2 fibers with Sem 3:
361.43 ns
time per locked yield/2 fibers with Sem 4:
347.41 ns
time per locked yield/3 domains with Lock:
2367.04 ns
time per locked yield/3 domains with Rwlock:
2660.86 ns
time per locked yield/3 domains with Sem:
5341.54 ns
time per locked yield/3 domains with Sem 2:
1071.08 ns
time per locked yield/3 domains with Sem 3:
464.33 ns
time per locked yield/3 domains with Sem 4:
453.59 ns
time per locked yield/3 fibers with Lock:
2829.79 ns
time per locked yield/3 fibers with Rwlock:
2620.90 ns
time per locked yield/3 fibers with Sem:
2617.54 ns
time per locked yield/3 fibers with Sem 2:
774.39 ns
time per locked yield/3 fibers with Sem 3:
297.95 ns
time per locked yield/3 fibers with Sem 4:
285.30 ns
time per locked yield/4 domains with Lock:
6947.58 ns
time per locked yield/4 domains with Rwlock:
7230.49 ns
time per locked yield/4 domains with Sem:
5513.87 ns
time per locked yield/4 domains with Sem 2:
1782.72 ns
time per locked yield/4 domains with Sem 3:
902.56 ns
time per locked yield/4 domains with Sem 4:
571.52 ns
time per locked yield/4 fibers with Lock:
3236.35 ns
time per locked yield/4 fibers with Rwlock:
2415.99 ns
time per locked yield/4 fibers with Sem:
3034.73 ns
time per locked yield/4 fibers with Sem 2:
1079.59 ns
time per locked yield/4 fibers with Sem 3:
717.64 ns
time per locked yield/4 fibers with Sem 4:
269.62 ns
time per locked yield/512 fibers with Lock:
2417.77 ns
time per locked yield/512 fibers with Rwlock:
2021.01 ns
time per locked yield/512 fibers with Sem:
2703.96 ns
time per locked yield/512 fibers with Sem 2:
1729.30 ns
time per locked yield/512 fibers with Sem 3:
975.45 ns
time per locked yield/512 fibers with Sem 4:
974.63 ns
time per locked yield/8 domains with Lock:
10062.83 ns
time per locked yield/8 domains with Rwlock:
11870.70 ns
time per locked yield/8 domains with Sem:
11203.11 ns
time per locked yield/8 domains with Sem 2:
3428.87 ns
time per locked yield/8 domains with Sem 3:
2323.00 ns
time per locked yield/8 domains with Sem 4:
4611.96 ns
time per locked yield/8 fibers with Lock:
2320.69 ns
time per locked yield/8 fibers with Rwlock:
1968.30 ns
time per locked yield/8 fibers with Sem:
2496.92 ns
time per locked yield/8 fibers with Sem 2:
2062.82 ns
time per locked yield/8 fibers with Sem 3:
1010.27 ns
time per locked yield/8 fibers with Sem 4:
567.45 ns
(cd _build/default/bench && ./main.exe -brief 'Picos Spawn')
Picos Spawn:
spawns over time/with packed computation:
5.20 M/s
time per spawn/with packed computation:
192.18 ns
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 1)
Testing `Picos_sync'.
This run has ID `Y8F1A2QS'.
[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.267s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 2)
Testing `Picos_sync'.
This run has ID `UZM9M2BN'.
[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.057s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 3)
Testing `Picos_sync'.
This run has ID `IM5M3IST'.
[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 `NG2EVWU3'.
[SKIP] Mutex and Condition 0 basics.
[SKIP] Mutex and Condition 1 errors.
[SKIP] Mutex and Condition 2 cancelation.
[SKIP] Lock and Lock.Condition 0 basics.
[SKIP] Lock and Lock.Condition 1 cancelation.
[SKIP] Lock and Lock.Condition 2 poisoning.
[SKIP] Lock and Lock.Condition 3 try_acquire.
[SKIP] Rwlock and Rwlock.Condition 0 basics.
[SKIP] Rwlock and Rwlock.Condition 1 cancelation.
[SKIP] Rwlock and Rwlock.Condition 2 poisoning.
[SKIP] Rwlock and Rwlock.Condition 3 freezing.
[SKIP] Rwlock and Rwlock.Condition 4 try_acquire.
[SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared.
[SKIP] Rwlock and Rwlock.Condition 6 sharing.
[SKIP] Semaphore 0 basics.
[SKIP] Semaphore 1 stress.
[SKIP] Sem 0 basics.
[SKIP] Sem 1 stress.
[SKIP] Sem 2 poisoning.
[SKIP] Sem 3 try_acquire.
[OK] Lazy 0 basics.
[SKIP] Lazy 1 cancelation.
[SKIP] Event 0 basics.
[SKIP] Barrier 0 basics.
[SKIP] Barrier 1 poisoning.
[SKIP] Non-cancelable ops 0 are not canceled.
Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.
Test Successful in 0.001s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Lazy$ 1)
Testing `Picos_sync'.
This run has ID `M7UNWXAD'.
[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.001s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Event$ 0)
Testing `Picos_sync'.
This run has ID `VB0SZAG7'.
[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.158s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Barrier$ 0)
Testing `Picos_sync'.
This run has ID `7TYWOB87'.
[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.168s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Barrier$ 1)
Testing `Picos_sync'.
This run has ID `76LH6ULF'.
[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.251s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Non-cancelable ops$' 0)
Testing `Picos_sync'.
This run has ID `QEI6XG5F'.
[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 'Picos Yield')
Picos Yield:
time per yield/10000 fibers:
348.33 ns
time per yield/1000 fibers:
464.88 ns
time per yield/100 fibers:
205.51 ns
time per yield/10 fibers:
174.41 ns
time per yield/1 fiber:
195.29 ns
yields over time/10000 fibers:
2.87 M/s
yields over time/1000 fibers:
2.15 M/s
yields over time/100 fibers:
4.87 M/s
yields over time/10 fibers:
5.73 M/s
yields over time/1 fiber:
5.12 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.19 M/s
async round-trips over time/2 workers:
0.40 M/s
async round-trips over time/4 workers:
0.36 M/s
round-trips over time/1 worker:
0.07 M/s
round-trips over time/2 workers:
0.10 M/s
round-trips over time/4 workers:
0.18 M/s
time per async round-trip/1 worker:
5398.87 ns
time per async round-trip/2 workers:
4980.31 ns
time per async round-trip/4 workers:
11135.87 ns
time per round-trip/1 worker:
14704.53 ns
time per round-trip/2 workers:
19135.99 ns
time per round-trip/4 workers:
22701.01 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:
23.09 M/s
ops over time/cas int with Rwlock:
16.34 M/s
ops over time/cas int with Sem:
23.06 M/s
ops over time/get with Lock:
30.80 M/s
ops over time/get with Rwlock:
30.61 M/s
ops over time/get with Sem:
26.00 M/s
ops over time/incr with Lock:
26.59 M/s
ops over time/incr with Rwlock:
25.33 M/s
ops over time/incr with Sem:
30.39 M/s
ops over time/push & pop with Lock:
20.11 M/s
ops over time/push & pop with Rwlock:
21.58 M/s
ops over time/push & pop with Sem:
19.85 M/s
ops over time/swap with Lock:
23.84 M/s
ops over time/swap with Rwlock:
17.01 M/s
ops over time/swap with Sem:
21.22 M/s
ops over time/xchg int with Lock:
23.17 M/s
ops over time/xchg int with Rwlock:
23.58 M/s
ops over time/xchg int with Sem:
22.84 M/s
time per op/cas int with Lock:
43.31 ns
time per op/cas int with Rwlock:
61.19 ns
time per op/cas int with Sem:
43.37 ns
time per op/get with Lock:
32.47 ns
time per op/get with Rwlock:
32.67 ns
time per op/get with Sem:
38.46 ns
time per op/incr with Lock:
37.61 ns
time per op/incr with Rwlock:
39.47 ns
time per op/incr with Sem:
32.91 ns
time per op/push & pop with Lock:
49.72 ns
time per op/push & pop with Rwlock:
46.34 ns
time per op/push & pop with Sem:
50.38 ns
time per op/swap with Lock:
41.95 ns
time per op/swap with Rwlock:
58.80 ns
time per op/swap with Sem:
47.11 ns
time per op/xchg int with Lock:
43.16 ns
time per op/xchg int with Rwlock:
42.41 ns
time per op/xchg int with Sem:
43.78 ns
(cd _build/default/bench && ./main.exe -brief Picos_mpmcq)
Picos_mpmcq:
messages over time/1 nb adder, 1 nb taker:
21.85 M/s
messages over time/1 nb adder, 2 nb takers:
18.69 M/s
messages over time/1 nb adder, 4 nb takers:
17.87 M/s
messages over time/2 nb adders, 1 nb taker:
13.18 M/s
messages over time/2 nb adders, 2 nb takers:
4.41 M/s
messages over time/2 nb adders, 4 nb takers:
9.71 M/s
messages over time/4 nb adders, 1 nb taker:
6.44 M/s
messages over time/4 nb adders, 2 nb takers:
5.28 M/s
messages over time/4 nb adders, 4 nb takers:
6.47 M/s
messages over time/one domain:
13.39 M/s
time per message/1 nb adder, 1 nb taker:
91.54 ns
time per message/1 nb adder, 2 nb takers:
160.48 ns
time per message/1 nb adder, 4 nb takers:
279.81 ns
time per message/2 nb adders, 1 nb taker:
227.56 ns
time per message/2 nb adders, 2 nb takers:
906.80 ns
time per message/2 nb adders, 4 nb takers:
617.88 ns
time per message/4 nb adders, 1 nb taker:
776.75 ns
time per message/4 nb adders, 2 nb takers:
1137.16 ns
time per message/4 nb adders, 4 nb takers:
1236.11 ns
time per message/one domain:
74.67 ns
(cd _build/default/bench && ./main.exe -brief Picos_mpscq)
Picos_mpscq:
messages over time/1 nb adder, 1 nb taker:
16.92 M/s
messages over time/2 nb adders, 1 nb taker:
27.23 M/s
messages over time/4 nb adders, 1 nb taker:
20.56 M/s
messages over time/one domain:
14.37 M/s
time per message/1 nb adder, 1 nb taker:
118.21 ns
time per message/2 nb adders, 1 nb taker:
110.19 ns
time per message/4 nb adders, 1 nb taker:
243.18 ns
time per message/one domain:
69.59 ns
(cd _build/default/test && ./test_rwlock.exe)
random seed: 2480367053767946813
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Rwlock sequential
[ ] 0 0 0 0 / 32 0.0s Rwlock sequential (generating)
[✓] 32 0 0 32 / 32 0.0s Rwlock sequential
[ ] 0 0 0 0 / 32 0.0s Rwlock parallel
[ ] 1 0 0 1 / 32 0.6s Rwlock parallel
[ ] 2 0 0 2 / 32 1.1s Rwlock parallel
[ ] 3 0 0 3 / 32 1.6s Rwlock parallel
[ ] 4 0 0 4 / 32 2.0s Rwlock parallel
[ ] 5 0 0 5 / 32 2.7s Rwlock parallel
[ ] 6 0 0 6 / 32 3.2s Rwlock parallel
[ ] 7 0 0 7 / 32 3.8s Rwlock parallel
[ ] 8 0 0 8 / 32 4.3s Rwlock parallel
[ ] 9 0 0 9 / 32 4.9s Rwlock parallel
[ ] 10 0 0 10 / 32 5.5s Rwlock parallel
[ ] 11 0 0 11 / 32 6.1s Rwlock parallel
[ ] 12 0 0 12 / 32 6.7s Rwlock parallel
[ ] 13 0 0 13 / 32 7.5s Rwlock parallel
[ ] 14 0 0 14 / 32 8.6s Rwlock parallel
[ ] 15 0 0 15 / 32 9.3s Rwlock parallel
[ ] 16 0 0 16 / 32 9.7s Rwlock parallel
[ ] 17 0 0 17 / 32 10.3s Rwlock parallel
[ ] 18 0 0 18 / 32 10.7s Rwlock parallel
[ ] 19 0 0 19 / 32 11.1s Rwlock parallel
[ ] 20 0 0 20 / 32 11.6s Rwlock parallel
[ ] 21 0 0 21 / 32 12.0s Rwlock parallel
[ ] 22 0 0 22 / 32 12.6s Rwlock parallel
[ ] 23 0 0 23 / 32 12.8s Rwlock parallel
[ ] 24 0 0 24 / 32 13.1s Rwlock parallel
[ ] 25 0 0 25 / 32 13.7s Rwlock parallel
[ ] 26 0 0 26 / 32 13.8s Rwlock parallel
[ ] 27 0 0 27 / 32 14.0s Rwlock parallel
[ ] 28 0 0 28 / 32 14.2s Rwlock parallel
[ ] 29 0 0 29 / 32 14.9s Rwlock parallel
[ ] 30 0 0 30 / 32 15.1s Rwlock parallel
[ ] 31 0 0 31 / 32 15.3s Rwlock parallel
[ ] 32 0 0 32 / 32 15.4s Rwlock parallel
[✓] 32 0 0 32 / 32 15.4s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 2423133977093305500
generated error fail pass / total time test name
[ ] 0 0 0 0 / 64 0.0s Rwlock sequential
[✓] 64 0 0 64 / 64 0.0s Rwlock sequential
[ ] 0 0 0 0 / 64 0.0s Rwlock parallel
[ ] 1 0 0 1 / 64 0.6s Rwlock parallel
[ ] 2 0 0 2 / 64 0.8s Rwlock parallel
[ ] 3 0 0 3 / 64 0.9s Rwlock parallel
[ ] 4 0 0 4 / 64 1.1s Rwlock parallel
[ ] 5 0 0 5 / 64 1.3s Rwlock parallel
[ ] 6 0 0 6 / 64 1.5s Rwlock parallel
[ ] 7 0 0 7 / 64 1.7s Rwlock parallel
[ ] 8 0 0 8 / 64 1.9s Rwlock parallel
[ ] 9 0 0 9 / 64 2.1s Rwlock parallel
[ ] 10 0 0 10 / 64 2.3s Rwlock parallel
[ ] 11 0 0 11 / 64 2.5s Rwlock parallel
[ ] 12 0 0 12 / 64 2.6s Rwlock parallel
[ ] 13 0 0 13 / 64 2.8s Rwlock parallel
[ ] 14 0 0 14 / 64 2.9s Rwlock parallel
[ ] 16 0 0 16 / 64 3.2s Rwlock parallel
[ ] 18 0 0 18 / 64 3.4s Rwlock parallel
[ ] 19 0 0 19 / 64 3.5s Rwlock parallel
[ ] 20 0 0 20 / 64 4.1s Rwlock parallel
[ ] 21 0 0 21 / 64 4.2s Rwlock parallel
[ ] 22 0 0 22 / 64 4.8s Rwlock parallel
[ ] 23 0 0 23 / 64 4.9s Rwlock parallel
[ ] 24 0 0 24 / 64 5.3s Rwlock parallel
[ ] 26 0 0 26 / 64 5.5s Rwlock parallel
[ ] 27 0 0 27 / 64 5.8s Rwlock parallel
[ ] 28 0 0 28 / 64 6.2s Rwlock parallel
[ ] 29 0 0 29 / 64 6.4s Rwlock parallel
[ ] 31 0 0 31 / 64 6.6s Rwlock parallel
[ ] 33 0 0 33 / 64 6.9s Rwlock parallel
[ ] 34 0 0 34 / 64 7.1s Rwlock parallel
[ ] 35 0 0 35 / 64 7.3s Rwlock parallel
[ ] 36 0 0 36 / 64 7.5s Rwlock parallel
[ ] 37 0 0 37 / 64 7.7s Rwlock parallel
[ ] 38 0 0 38 / 64 7.9s Rwlock parallel
[ ] 39 0 0 39 / 64 8.3s Rwlock parallel
[ ] 41 0 0 41 / 64 8.5s Rwlock parallel
[ ] 42 0 0 42 / 64 8.9s Rwlock parallel
[ ] 43 0 0 43 / 64 9.1s Rwlock parallel
[ ] 44 0 0 44 / 64 9.3s Rwlock parallel
[ ] 45 0 0 45 / 64 9.5s Rwlock parallel
[ ] 46 0 0 46 / 64 10.0s Rwlock parallel
[ ] 47 0 0 47 / 64 10.2s Rwlock parallel
[ ] 48 0 0 48 / 64 10.3s Rwlock parallel
[ ] 49 0 0 49 / 64 10.5s Rwlock parallel
[ ] 50 0 0 50 / 64 10.6s Rwlock parallel
[ ] 51 0 0 51 / 64 10.9s Rwlock parallel
[ ] 53 0 0 53 / 64 11.4s Rwlock parallel
[ ] 54 0 0 54 / 64 11.5s Rwlock parallel
[ ] 56 0 0 56 / 64 11.7s Rwlock parallel
[ ] 57 0 0 57 / 64 11.8s Rwlock parallel
[ ] 58 0 0 58 / 64 12.0s Rwlock parallel
[ ] 59 0 0 59 / 64 12.1s Rwlock parallel
[ ] 60 0 0 60 / 64 12.3s Rwlock parallel
[ ] 61 0 0 61 / 64 12.7s Rwlock parallel
[ ] 62 0 0 62 / 64 12.8s Rwlock parallel
[ ] 63 0 0 63 / 64 12.9s Rwlock parallel
[ ] 64 0 0 64 / 64 13.1s Rwlock parallel
[✓] 64 0 0 64 / 64 13.1s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 2993932135124593188
generated error fail pass / total time test name
[ ] 0 0 0 0 / 106 0.0s Rwlock sequential
[✓] 106 0 0 106 / 106 0.0s Rwlock sequential
[ ] 0 0 0 0 / 106 0.0s Rwlock parallel
[ ] 1 0 0 1 / 106 0.3s Rwlock parallel
[ ] 2 0 0 2 / 106 0.4s Rwlock parallel
[ ] 4 0 0 4 / 106 0.6s Rwlock parallel
[ ] 5 0 0 5 / 106 0.8s Rwlock parallel
[ ] 6 0 0 6 / 106 0.9s Rwlock parallel
[ ] 7 0 0 7 / 106 1.1s Rwlock parallel
[ ] 8 0 0 8 / 106 1.3s Rwlock parallel
[ ] 9 0 0 9 / 106 1.7s Rwlock parallel
[ ] 11 0 0 11 / 106 1.9s Rwlock parallel
[ ] 12 0 0 12 / 106 2.1s Rwlock parallel
[ ] 13 0 0 13 / 106 2.2s Rwlock parallel
[ ] 15 0 0 15 / 106 2.3s Rwlock parallel
[ ] 17 0 0 17 / 106 2.5s Rwlock parallel
[ ] 19 0 0 19 / 106 2.7s Rwlock parallel
[ ] 21 0 0 21 / 106 2.8s Rwlock parallel
[ ] 24 0 0 24 / 106 3.0s Rwlock parallel
[ ] 26 0 0 26 / 106 3.2s Rwlock parallel
[ ] 27 0 0 27 / 106 3.4s Rwlock parallel
[ ] 28 0 0 28 / 106 3.5s Rwlock parallel
[ ] 29 0 0 29 / 106 3.6s Rwlock parallel
[ ] 32 0 0 32 / 106 4.0s Rwlock parallel
[ ] 35 0 0 35 / 106 4.1s Rwlock parallel
[ ] 38 0 0 38 / 106 4.3s Rwlock parallel
[ ] 40 0 0 40 / 106 4.9s Rwlock parallel
[ ] 41 0 0 41 / 106 5.1s Rwlock parallel
[ ] 43 0 0 43 / 106 5.3s Rwlock parallel
[ ] 44 0 0 44 / 106 5.8s Rwlock parallel
[ ] 45 0 0 45 / 106 6.0s Rwlock parallel
[ ] 46 0 0 46 / 106 6.2s Rwlock parallel
[ ] 47 0 0 47 / 106 6.3s Rwlock parallel
[ ] 50 0 0 50 / 106 6.5s Rwlock parallel
[ ] 51 0 0 51 / 106 6.7s Rwlock parallel
[ ] 52 0 0 52 / 106 6.8s Rwlock parallel
[ ] 54 0 0 54 / 106 7.0s Rwlock parallel
[ ] 55 0 0 55 / 106 7.2s Rwlock parallel
[ ] 56 0 0 56 / 106 7.3s Rwlock parallel
[ ] 58 0 0 58 / 106 7.5s Rwlock parallel
[ ] 59 0 0 59 / 106 7.6s Rwlock parallel
[ ] 61 0 0 61 / 106 7.9s Rwlock parallel
[ ] 62 0 0 62 / 106 8.1s Rwlock parallel
[ ] 64 0 0 64 / 106 8.2s Rwlock parallel
[ ] 66 0 0 66 / 106 8.3s Rwlock parallel
[ ] 68 0 0 68 / 106 8.5s Rwlock parallel
[ ] 70 0 0 70 / 106 8.7s Rwlock parallel
[ ] 71 0 0 71 / 106 9.2s Rwlock parallel
[ ] 72 0 0 72 / 106 9.4s Rwlock parallel
[ ] 73 0 0 73 / 106 9.5s Rwlock parallel
[ ] 74 0 0 74 / 106 9.7s Rwlock parallel
[ ] 75 0 0 75 / 106 9.8s Rwlock parallel
[ ] 77 0 0 77 / 106 9.9s Rwlock parallel
[ ] 78 0 0 78 / 106 10.2s Rwlock parallel
[ ] 80 0 0 80 / 106 10.4s Rwlock parallel
[ ] 81 0 0 81 / 106 10.5s Rwlock parallel
[ ] 82 0 0 82 / 106 10.7s Rwlock parallel
[ ] 84 0 0 84 / 106 11.1s Rwlock parallel
[ ] 86 0 0 86 / 106 11.2s Rwlock parallel
[ ] 88 0 0 88 / 106 11.4s Rwlock parallel
[ ] 90 0 0 90 / 106 11.9s Rwlock parallel
[ ] 93 0 0 93 / 106 12.0s Rwlock parallel
[ ] 95 0 0 95 / 106 12.2s Rwlock parallel
[ ] 97 0 0 97 / 106 12.4s Rwlock parallel
[ ] 99 0 0 99 / 106 12.5s Rwlock parallel
[ ] 102 0 0 102 / 106 12.7s Rwlock parallel
[ ] 105 0 0 105 / 106 12.8s Rwlock parallel
[✓] 106 0 0 106 / 106 12.8s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 3734450237649672586
generated error fail pass / total time test name
[ ] 0 0 0 0 / 91 0.0s Rwlock sequential
[✓] 91 0 0 91 / 91 0.0s Rwlock sequential
[ ] 0 0 0 0 / 91 0.0s Rwlock parallel
[ ] 2 0 0 2 / 91 0.1s Rwlock parallel
[ ] 6 0 0 6 / 91 0.3s Rwlock parallel
[ ] 10 0 0 10 / 91 0.4s Rwlock parallel
[ ] 11 0 0 11 / 91 0.8s Rwlock parallel
[ ] 12 0 0 12 / 91 1.1s Rwlock parallel
[ ] 14 0 0 14 / 91 1.3s Rwlock parallel
[ ] 16 0 0 16 / 91 1.4s Rwlock parallel
[ ] 18 0 0 18 / 91 1.6s Rwlock parallel
[ ] 20 0 0 20 / 91 1.7s Rwlock parallel
[ ] 21 0 0 21 / 91 1.8s Rwlock parallel
[ ] 22 0 0 22 / 91 2.0s Rwlock parallel
[ ] 25 0 0 25 / 91 2.2s Rwlock parallel
[ ] 27 0 0 27 / 91 2.6s Rwlock parallel
[ ] 29 0 0 29 / 91 2.7s Rwlock parallel
[ ] 30 0 0 30 / 91 2.8s Rwlock parallel
[ ] 34 0 0 34 / 91 2.9s Rwlock parallel
[ ] 39 0 0 39 / 91 3.0s Rwlock parallel
[ ] 42 0 0 42 / 91 3.1s Rwlock parallel
[ ] 47 0 0 47 / 91 3.2s Rwlock parallel
[ ] 52 0 0 52 / 91 3.3s Rwlock parallel
[ ] 54 0 0 54 / 91 3.4s Rwlock parallel
[ ] 57 0 0 57 / 91 3.6s Rwlock parallel
[ ] 60 0 0 60 / 91 3.9s Rwlock parallel
[ ] 64 0 0 64 / 91 4.1s Rwlock parallel
[ ] 68 0 0 68 / 91 4.3s Rwlock parallel
[ ] 71 0 0 71 / 91 4.4s Rwlock parallel
[ ] 76 0 0 76 / 91 4.5s Rwlock parallel
[ ] 80 0 0 80 / 91 4.7s Rwlock parallel
[ ] 84 0 0 84 / 91 5.0s Rwlock parallel
[ ] 87 0 0 87 / 91 5.1s Rwlock parallel
[ ] 91 0 0 91 / 91 5.4s Rwlock parallel
[✓] 91 0 0 91 / 91 5.4s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 2746704435693710723
generated error fail pass / total time test name
[ ] 0 0 0 0 / 83 0.0s Rwlock sequential
[✓] 83 0 0 83 / 83 0.0s Rwlock sequential
[ ] 0 0 0 0 / 83 0.0s Rwlock parallel
[ ] 5 0 0 5 / 83 0.4s Rwlock parallel
[ ] 8 0 0 8 / 83 0.5s Rwlock parallel
[ ] 12 0 0 12 / 83 0.7s Rwlock parallel
[ ] 14 0 0 14 / 83 0.9s Rwlock parallel
[ ] 19 0 0 19 / 83 1.0s Rwlock parallel
[ ] 23 0 0 23 / 83 1.2s Rwlock parallel
[ ] 26 0 0 26 / 83 1.3s Rwlock parallel
[ ] 30 0 0 30 / 83 1.4s Rwlock parallel
[ ] 32 0 0 32 / 83 1.6s Rwlock parallel
[ ] 35 0 0 35 / 83 1.8s Rwlock parallel
[ ] 38 0 0 38 / 83 2.0s Rwlock parallel
[ ] 41 0 0 41 / 83 2.1s Rwlock parallel
[ ] 44 0 0 44 / 83 2.2s Rwlock parallel
[ ] 48 0 0 48 / 83 2.4s Rwlock parallel
[ ] 52 0 0 52 / 83 2.5s Rwlock parallel
[ ] 57 0 0 57 / 83 2.7s Rwlock parallel
[ ] 62 0 0 62 / 83 2.8s Rwlock parallel
[ ] 63 0 0 63 / 83 3.2s Rwlock parallel
[ ] 67 0 0 67 / 83 3.3s Rwlock parallel
[ ] 71 0 0 71 / 83 3.4s Rwlock parallel
[ ] 76 0 0 76 / 83 3.5s Rwlock parallel
[ ] 79 0 0 79 / 83 3.8s Rwlock parallel
[ ] 83 0 0 83 / 83 3.9s Rwlock parallel
[✓] 83 0 0 83 / 83 3.9s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 1996212892886966855
generated error fail pass / total time test name
[ ] 0 0 0 0 / 69 0.0s Rwlock sequential
[✓] 69 0 0 69 / 69 0.0s Rwlock sequential
[ ] 0 0 0 0 / 69 0.0s Rwlock parallel
[ ] 2 0 0 2 / 69 0.2s Rwlock parallel
[ ] 7 0 0 7 / 69 0.3s Rwlock parallel
[ ] 8 0 0 8 / 69 0.6s Rwlock parallel
[ ] 11 0 0 11 / 69 0.7s Rwlock parallel
[ ] 14 0 0 14 / 69 0.9s Rwlock parallel
[ ] 16 0 0 16 / 69 1.3s Rwlock parallel
[ ] 19 0 0 19 / 69 1.6s Rwlock parallel
[ ] 25 0 0 25 / 69 1.7s Rwlock parallel
[ ] 29 0 0 29 / 69 2.1s Rwlock parallel
[ ] 32 0 0 32 / 69 2.3s Rwlock parallel
[ ] 35 0 0 35 / 69 2.7s Rwlock parallel
[ ] 39 0 0 39 / 69 2.8s Rwlock parallel
[ ] 45 0 0 45 / 69 3.2s Rwlock parallel
[ ] 49 0 0 49 / 69 3.3s Rwlock parallel
[ ] 57 0 0 57 / 69 3.5s Rwlock parallel
[ ] 64 0 0 64 / 69 3.6s Rwlock parallel
[ ] 68 0 0 68 / 69 3.9s Rwlock parallel
[✓] 69 0 0 69 / 69 4.0s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 2655857361290364879
generated error fail pass / total time test name
[ ] 0 0 0 0 / 43 0.0s Rwlock sequential
[✓] 43 0 0 43 / 43 0.0s Rwlock sequential
[ ] 0 0 0 0 / 43 0.0s Rwlock parallel
[ ] 6 0 0 6 / 43 0.1s Rwlock parallel
[ ] 13 0 0 13 / 43 0.2s Rwlock parallel
[ ] 18 0 0 18 / 43 0.4s Rwlock parallel
[ ] 27 0 0 27 / 43 0.5s Rwlock parallel
[ ] 31 0 0 31 / 43 0.7s Rwlock parallel
[ ] 33 0 0 33 / 43 1.0s Rwlock parallel
[ ] 35 0 0 35 / 43 1.2s Rwlock parallel
[✓] 43 0 0 43 / 43 1.3s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 81974562635324168
generated error fail pass / total time test name
[ ] 0 0 0 0 / 36 0.0s Rwlock sequential
[✓] 36 0 0 36 / 36 0.0s Rwlock sequential
[ ] 0 0 0 0 / 36 0.0s Rwlock parallel
[ ] 3 0 0 3 / 36 0.3s Rwlock parallel
[ ] 5 0 0 5 / 36 0.4s Rwlock parallel
[ ] 10 0 0 10 / 36 0.8s Rwlock parallel
[ ] 15 0 0 15 / 36 0.9s Rwlock parallel
[ ] 21 0 0 21 / 36 1.0s Rwlock parallel
[ ] 25 0 0 25 / 36 1.1s Rwlock parallel
[ ] 29 0 0 29 / 36 1.2s Rwlock parallel
[ ] 31 0 0 31 / 36 1.3s Rwlock parallel
[ ] 34 0 0 34 / 36 1.5s Rwlock parallel
[✓] 36 0 0 36 / 36 1.5s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 2232431002908433493
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Rwlock sequential
[✓] 32 0 0 32 / 32 0.0s Rwlock sequential
[ ] 0 0 0 0 / 32 0.0s Rwlock parallel
[ ] 2 0 0 2 / 32 0.2s Rwlock parallel
[ ] 3 0 0 3 / 32 0.5s Rwlock parallel
[ ] 5 0 0 5 / 32 0.6s Rwlock parallel
[ ] 11 0 0 11 / 32 0.8s Rwlock parallel
[ ] 15 0 0 15 / 32 1.0s Rwlock parallel
[ ] 23 0 0 23 / 32 1.2s Rwlock parallel
[ ] 27 0 0 27 / 32 1.3s Rwlock parallel
[✓] 32 0 0 32 / 32 1.4s Rwlock parallel
================================================================================
success (ran 2 tests)
random seed: 2840175579314474533
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.0s Rwlock parallel
[ ] 5 0 0 5 / 32 0.1s Rwlock parallel
[ ] 7 0 0 7 / 32 0.5s Rwlock parallel
[ ] 10 0 0 10 / 32 0.6s Rwlock parallel
[ ] 12 0 0 12 / 32 0.9s Rwlock parallel
[ ] 17 0 0 17 / 32 1.0s Rwlock parallel
[ ] 26 0 0 26 / 32 1.1s Rwlock parallel
[ ] 32 0 0 32 / 32 1.3s Rwlock parallel
[✓] 32 0 0 32 / 32 1.3s Rwlock parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_htbl.exe)
random seed: 1819589736503772472
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Htbl sequential
[ ] 0 0 0 0 / 32 0.0s Htbl sequential (generating)
[✓] 32 0 0 32 / 32 0.0s Htbl sequential
[ ] 0 0 0 0 / 32 0.0s Htbl parallel
[ ] 1 0 0 1 / 32 0.7s Htbl parallel
[ ] 2 0 0 2 / 32 1.3s Htbl parallel
[ ] 3 0 0 3 / 32 1.7s Htbl parallel
[ ] 4 0 0 4 / 32 2.9s Htbl parallel
[ ] 5 0 0 5 / 32 3.4s Htbl parallel
[ ] 6 0 0 6 / 32 4.0s Htbl parallel
[ ] 7 0 0 7 / 32 4.6s Htbl parallel
[ ] 8 0 0 8 / 32 5.1s Htbl parallel
[ ] 9 0 0 9 / 32 5.9s Htbl parallel
[ ] 10 0 0 10 / 32 6.4s Htbl parallel
[ ] 11 0 0 11 / 32 6.8s Htbl parallel
[ ] 12 0 0 12 / 32 7.6s Htbl parallel
[ ] 13 0 0 13 / 32 8.2s Htbl parallel
[ ] 14 0 0 14 / 32 8.7s Htbl parallel
[ ] 15 0 0 15 / 32 9.1s Htbl parallel
[ ] 16 0 0 16 / 32 9.6s Htbl parallel
[ ] 17 0 0 17 / 32 10.3s Htbl parallel
[ ] 18 0 0 18 / 32 10.8s Htbl parallel
[ ] 19 0 0 19 / 32 11.4s Htbl parallel
[ ] 20 0 0 20 / 32 11.9s Htbl parallel
[ ] 21 0 0 21 / 32 12.4s Htbl parallel
[ ] 22 0 0 22 / 32 12.7s Htbl parallel
[ ] 23 0 0 23 / 32 12.9s Htbl parallel
[ ] 24 0 0 24 / 32 13.2s Htbl parallel
[ ] 25 0 0 25 / 32 13.7s Htbl parallel
[ ] 26 0 0 26 / 32 14.0s Htbl parallel
[ ] 27 0 0 27 / 32 14.3s Htbl parallel
[ ] 28 0 0 28 / 32 14.6s Htbl parallel
[ ] 29 0 0 29 / 32 14.9s Htbl parallel
[ ] 30 0 0 30 / 32 15.0s Htbl parallel
[ ] 31 0 0 31 / 32 15.3s Htbl parallel
[ ] 32 0 0 32 / 32 15.6s Htbl parallel
[✓] 32 0 0 32 / 32 15.6s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 4430621744007302426
generated error fail pass / total time test name
[ ] 0 0 0 0 / 64 0.0s Htbl sequential
[✓] 64 0 0 64 / 64 0.0s Htbl sequential
[ ] 0 0 0 0 / 64 0.0s Htbl parallel
[ ] 1 0 0 1 / 64 0.2s Htbl parallel
[ ] 2 0 0 2 / 64 0.4s Htbl parallel
[ ] 3 0 0 3 / 64 0.6s Htbl parallel
[ ] 4 0 0 4 / 64 0.9s Htbl parallel
[ ] 5 0 0 5 / 64 1.2s Htbl parallel
[ ] 6 0 0 6 / 64 1.3s Htbl parallel
[ ] 7 0 0 7 / 64 1.5s Htbl parallel
[ ] 8 0 0 8 / 64 1.6s Htbl parallel
[ ] 9 0 0 9 / 64 1.8s Htbl parallel
[ ] 10 0 0 10 / 64 2.0s Htbl parallel
[ ] 11 0 0 11 / 64 2.2s Htbl parallel
[ ] 12 0 0 12 / 64 2.4s Htbl parallel
[ ] 13 0 0 13 / 64 2.6s Htbl parallel
[ ] 14 0 0 14 / 64 3.2s Htbl parallel
[ ] 15 0 0 15 / 64 3.5s Htbl parallel
[ ] 16 0 0 16 / 64 3.7s Htbl parallel
[ ] 17 0 0 17 / 64 3.8s Htbl parallel
[ ] 18 0 0 18 / 64 4.1s Htbl parallel
[ ] 19 0 0 19 / 64 4.3s Htbl parallel
[ ] 20 0 0 20 / 64 4.5s Htbl parallel
[ ] 21 0 0 21 / 64 4.7s Htbl parallel
[ ] 22 0 0 22 / 64 4.9s Htbl parallel
[ ] 23 0 0 23 / 64 5.1s Htbl parallel
[ ] 24 0 0 24 / 64 5.4s Htbl parallel
[ ] 26 0 0 26 / 64 5.6s Htbl parallel
[ ] 27 0 0 27 / 64 5.9s Htbl parallel
[ ] 28 0 0 28 / 64 6.1s Htbl parallel
[ ] 29 0 0 29 / 64 6.5s Htbl parallel
[ ] 30 0 0 30 / 64 6.7s Htbl parallel
[ ] 31 0 0 31 / 64 6.9s Htbl parallel
[ ] 32 0 0 32 / 64 7.1s Htbl parallel
[ ] 33 0 0 33 / 64 7.4s Htbl parallel
[ ] 35 0 0 35 / 64 7.6s Htbl parallel
[ ] 36 0 0 36 / 64 7.8s Htbl parallel
[ ] 37 0 0 37 / 64 7.9s Htbl parallel
[ ] 38 0 0 38 / 64 8.1s Htbl parallel
[ ] 39 0 0 39 / 64 8.4s Htbl parallel
[ ] 40 0 0 40 / 64 8.6s Htbl parallel
[ ] 41 0 0 41 / 64 8.7s Htbl parallel
[ ] 42 0 0 42 / 64 8.8s Htbl parallel
[ ] 43 0 0 43 / 64 9.4s Htbl parallel
[ ] 44 0 0 44 / 64 9.6s Htbl parallel
[ ] 46 0 0 46 / 64 9.9s Htbl parallel
[ ] 48 0 0 48 / 64 10.1s Htbl parallel
[ ] 49 0 0 49 / 64 10.3s Htbl parallel
[ ] 50 0 0 50 / 64 10.4s Htbl parallel
[ ] 51 0 0 51 / 64 10.5s Htbl parallel
[ ] 52 0 0 52 / 64 10.7s Htbl parallel
[ ] 53 0 0 53 / 64 10.9s Htbl parallel
[ ] 54 0 0 54 / 64 11.2s Htbl parallel
[ ] 55 0 0 55 / 64 11.3s Htbl parallel
[ ] 56 0 0 56 / 64 11.5s Htbl parallel
[ ] 58 0 0 58 / 64 11.8s Htbl parallel
[ ] 59 0 0 59 / 64 11.9s Htbl parallel
[ ] 60 0 0 60 / 64 12.1s Htbl parallel
[ ] 61 0 0 61 / 64 12.3s Htbl parallel
[ ] 62 0 0 62 / 64 12.6s Htbl parallel
[ ] 63 0 0 63 / 64 12.8s Htbl parallel
[ ] 64 0 0 64 / 64 13.0s Htbl parallel
[✓] 64 0 0 64 / 64 13.0s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 4171769858360234079
generated error fail pass / total time test name
[ ] 0 0 0 0 / 105 0.0s Htbl sequential
[✓] 105 0 0 105 / 105 0.0s Htbl sequential
[ ] 0 0 0 0 / 105 0.0s Htbl parallel
[ ] 1 0 0 1 / 105 0.2s Htbl parallel
[ ] 3 0 0 3 / 105 0.5s Htbl parallel
[ ] 5 0 0 5 / 105 0.7s Htbl parallel
[ ] 7 0 0 7 / 105 0.9s Htbl parallel
[ ] 9 0 0 9 / 105 1.1s Htbl parallel
[ ] 10 0 0 10 / 105 1.3s Htbl parallel
[ ] 11 0 0 11 / 105 1.5s Htbl parallel
[ ] 12 0 0 12 / 105 1.6s Htbl parallel
[ ] 14 0 0 14 / 105 1.8s Htbl parallel
[ ] 15 0 0 15 / 105 1.9s Htbl parallel
[ ] 17 0 0 17 / 105 2.1s Htbl parallel
[ ] 18 0 0 18 / 105 2.3s Htbl parallel
[ ] 19 0 0 19 / 105 2.8s Htbl parallel
[ ] 20 0 0 20 / 105 2.9s Htbl parallel
[ ] 21 0 0 21 / 105 3.0s Htbl parallel
[ ] 22 0 0 22 / 105 3.5s Htbl parallel
[ ] 23 0 0 23 / 105 3.7s Htbl parallel
[ ] 24 0 0 24 / 105 3.9s Htbl parallel
[ ] 25 0 0 25 / 105 4.0s Htbl parallel
[ ] 26 0 0 26 / 105 4.2s Htbl parallel
[ ] 27 0 0 27 / 105 4.4s Htbl parallel
[ ] 28 0 0 28 / 105 4.6s Htbl parallel
[ ] 29 0 0 29 / 105 5.0s Htbl parallel
[ ] 30 0 0 30 / 105 5.2s Htbl parallel
[ ] 31 0 0 31 / 105 5.3s Htbl parallel
[ ] 33 0 0 33 / 105 5.5s Htbl parallel
[ ] 35 0 0 35 / 105 5.7s Htbl parallel
[ ] 36 0 0 36 / 105 5.9s Htbl parallel
[ ] 37 0 0 37 / 105 6.1s Htbl parallel
[ ] 38 0 0 38 / 105 6.3s Htbl parallel
[ ] 39 0 0 39 / 105 6.4s Htbl parallel
[ ] 40 0 0 40 / 105 6.5s Htbl parallel
[ ] 41 0 0 41 / 105 6.7s Htbl parallel
[ ] 42 0 0 42 / 105 6.8s Htbl parallel
[ ] 43 0 0 43 / 105 7.0s Htbl parallel
[ ] 45 0 0 45 / 105 7.2s Htbl parallel
[ ] 46 0 0 46 / 105 7.4s Htbl parallel
[ ] 47 0 0 47 / 105 7.6s Htbl parallel
[ ] 49 0 0 49 / 105 7.8s Htbl parallel
[ ] 51 0 0 51 / 105 8.1s Htbl parallel
[ ] 52 0 0 52 / 105 8.3s Htbl parallel
[ ] 53 0 0 53 / 105 8.9s Htbl parallel
[ ] 54 0 0 54 / 105 9.0s Htbl parallel
[ ] 55 0 0 55 / 105 9.2s Htbl parallel
[ ] 57 0 0 57 / 105 9.4s Htbl parallel
[ ] 58 0 0 58 / 105 9.6s Htbl parallel
[ ] 59 0 0 59 / 105 10.5s Htbl parallel
[ ] 61 0 0 61 / 105 10.6s Htbl parallel
[ ] 63 0 0 63 / 105 11.1s Htbl parallel
[ ] 65 0 0 65 / 105 11.4s Htbl parallel
[ ] 66 0 0 66 / 105 11.6s Htbl parallel
[ ] 67 0 0 67 / 105 11.8s Htbl parallel
[ ] 68 0 0 68 / 105 11.9s Htbl parallel
[ ] 70 0 0 70 / 105 12.1s Htbl parallel
[ ] 72 0 0 72 / 105 12.3s Htbl parallel
[ ] 73 0 0 73 / 105 12.6s Htbl parallel
[ ] 74 0 0 74 / 105 12.8s Htbl parallel
[ ] 75 0 0 75 / 105 12.9s Htbl parallel
[ ] 76 0 0 76 / 105 13.2s Htbl parallel
[ ] 78 0 0 78 / 105 13.3s Htbl parallel
[ ] 80 0 0 80 / 105 13.4s Htbl parallel
[ ] 84 0 0 84 / 105 13.7s Htbl parallel
[ ] 86 0 0 86 / 105 13.9s Htbl parallel
[ ] 88 0 0 88 / 105 14.0s Htbl parallel
[ ] 91 0 0 91 / 105 14.1s Htbl parallel
[ ] 92 0 0 92 / 105 14.3s Htbl parallel
[ ] 96 0 0 96 / 105 14.4s Htbl parallel
[ ] 98 0 0 98 / 105 14.6s Htbl parallel
[ ] 99 0 0 99 / 105 14.8s Htbl parallel
[ ] 103 0 0 103 / 105 14.9s Htbl parallel
[✓] 105 0 0 105 / 105 15.0s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 1077296987955736969
generated error fail pass / total time test name
[ ] 0 0 0 0 / 75 0.0s Htbl sequential
[✓] 75 0 0 75 / 75 0.0s Htbl sequential
[ ] 0 0 0 0 / 75 0.0s Htbl parallel
[ ] 2 0 0 2 / 75 0.0s Htbl parallel
[ ] 5 0 0 5 / 75 0.5s Htbl parallel
[ ] 7 0 0 7 / 75 0.6s Htbl parallel
[ ] 11 0 0 11 / 75 1.1s Htbl parallel
[ ] 15 0 0 15 / 75 1.2s Htbl parallel
[ ] 19 0 0 19 / 75 1.3s Htbl parallel
[ ] 20 0 0 20 / 75 1.5s Htbl parallel
[ ] 22 0 0 22 / 75 1.8s Htbl parallel
[ ] 26 0 0 26 / 75 2.0s Htbl parallel
[ ] 30 0 0 30 / 75 2.5s Htbl parallel
[ ] 33 0 0 33 / 75 2.6s Htbl parallel
[ ] 36 0 0 36 / 75 2.7s Htbl parallel
[ ] 40 0 0 40 / 75 2.8s Htbl parallel
[ ] 42 0 0 42 / 75 3.0s Htbl parallel
[ ] 45 0 0 45 / 75 3.5s Htbl parallel
[ ] 49 0 0 49 / 75 3.7s Htbl parallel
[ ] 53 0 0 53 / 75 3.8s Htbl parallel
[ ] 56 0 0 56 / 75 4.2s Htbl parallel
[ ] 58 0 0 58 / 75 4.3s Htbl parallel
[ ] 62 0 0 62 / 75 4.5s Htbl parallel
[ ] 65 0 0 65 / 75 4.6s Htbl parallel
[ ] 72 0 0 72 / 75 4.7s Htbl parallel
[ ] 73 0 0 73 / 75 4.8s Htbl parallel
[✓] 75 0 0 75 / 75 4.8s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 3048364392671789988
generated error fail pass / total time test name
[ ] 0 0 0 0 / 66 0.0s Htbl sequential
[✓] 66 0 0 66 / 66 0.0s Htbl sequential
[ ] 0 0 0 0 / 66 0.0s Htbl parallel
[ ] 2 0 0 2 / 66 0.3s Htbl parallel
[ ] 5 0 0 5 / 66 0.4s Htbl parallel
[ ] 8 0 0 8 / 66 0.5s Htbl parallel
[ ] 10 0 0 10 / 66 0.6s Htbl parallel
[ ] 14 0 0 14 / 66 0.7s Htbl parallel
[ ] 17 0 0 17 / 66 1.0s Htbl parallel
[ ] 19 0 0 19 / 66 1.1s Htbl parallel
[ ] 20 0 0 20 / 66 1.2s Htbl parallel
[ ] 21 0 0 21 / 66 1.6s Htbl parallel
[ ] 26 0 0 26 / 66 1.7s Htbl parallel
[ ] 30 0 0 30 / 66 1.8s Htbl parallel
[ ] 35 0 0 35 / 66 1.9s Htbl parallel
[ ] 37 0 0 37 / 66 2.4s Htbl parallel
[ ] 42 0 0 42 / 66 2.5s Htbl parallel
[ ] 45 0 0 45 / 66 2.6s Htbl parallel
[ ] 49 0 0 49 / 66 2.7s Htbl parallel
[ ] 55 0 0 55 / 66 2.8s Htbl parallel
[ ] 63 0 0 63 / 66 2.9s Htbl parallel
[✓] 66 0 0 66 / 66 3.0s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 1063584689341300989
generated error fail pass / total time test name
[ ] 0 0 0 0 / 57 0.0s Htbl sequential
[✓] 57 0 0 57 / 57 0.0s Htbl sequential
[ ] 0 0 0 0 / 57 0.0s Htbl parallel
[ ] 2 0 0 2 / 57 0.0s Htbl parallel
[ ] 8 0 0 8 / 57 0.1s Htbl parallel
[ ] 14 0 0 14 / 57 0.3s Htbl parallel
[ ] 18 0 0 18 / 57 0.7s Htbl parallel
[ ] 22 0 0 22 / 57 0.8s Htbl parallel
[ ] 27 0 0 27 / 57 0.9s Htbl parallel
[ ] 29 0 0 29 / 57 1.1s Htbl parallel
[ ] 31 0 0 31 / 57 1.2s Htbl parallel
[ ] 32 0 0 32 / 57 1.5s Htbl parallel
[ ] 35 0 0 35 / 57 1.7s Htbl parallel
[ ] 39 0 0 39 / 57 1.8s Htbl parallel
[ ] 45 0 0 45 / 57 2.0s Htbl parallel
[ ] 46 0 0 46 / 57 2.4s Htbl parallel
[ ] 50 0 0 50 / 57 2.8s Htbl parallel
[ ] 56 0 0 56 / 57 3.2s Htbl parallel
[ ] 57 0 0 57 / 57 3.5s Htbl parallel
[✓] 57 0 0 57 / 57 3.5s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 2860531075071104903
generated error fail pass / total time test name
[ ] 0 0 0 0 / 37 0.0s Htbl sequential
[✓] 37 0 0 37 / 37 0.0s Htbl sequential
[ ] 0 0 0 0 / 37 0.0s Htbl parallel
[ ] 5 0 0 5 / 37 0.6s Htbl parallel
[ ] 7 0 0 7 / 37 0.7s Htbl parallel
[ ] 13 0 0 13 / 37 0.9s Htbl parallel
[ ] 20 0 0 20 / 37 1.0s Htbl parallel
[ ] 29 0 0 29 / 37 1.2s Htbl parallel
[ ] 37 0 0 37 / 37 1.5s Htbl parallel
[✓] 37 0 0 37 / 37 1.5s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 652924864297288986
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
[ ] 7 0 0 7 / 32 0.2s Htbl parallel
[ ] 13 0 0 13 / 32 0.7s Htbl parallel
[ ] 21 0 0 21 / 32 0.8s Htbl parallel
[ ] 24 0 0 24 / 32 1.3s Htbl parallel
[ ] 30 0 0 30 / 32 1.4s Htbl parallel
[✓] 32 0 0 32 / 32 1.4s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 4155498875106526687
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 0.1s Htbl parallel
[ ] 4 0 0 4 / 32 0.2s Htbl parallel
[ ] 5 0 0 5 / 32 0.5s Htbl parallel
[ ] 8 0 0 8 / 32 0.6s Htbl parallel
[ ] 13 0 0 13 / 32 0.8s Htbl parallel
[ ] 14 0 0 14 / 32 0.9s Htbl parallel
[ ] 23 0 0 23 / 32 1.0s Htbl parallel
[ ] 28 0 0 28 / 32 1.2s Htbl parallel
[ ] 32 0 0 32 / 32 1.3s Htbl parallel
[✓] 32 0 0 32 / 32 1.3s Htbl parallel
================================================================================
success (ran 2 tests)
random seed: 1918969579980446887
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
[ ] 5 0 0 5 / 32 0.3s Htbl parallel
[ ] 9 0 0 9 / 32 0.5s Htbl parallel
[ ] 12 0 0 12 / 32 0.7s Htbl parallel
[ ] 19 0 0 19 / 32 0.8s Htbl parallel
[ ] 29 0 0 29 / 32 1.0s Htbl parallel
[ ] 30 0 0 30 / 32 1.2s Htbl parallel
[✓] 32 0 0 32 / 32 1.2s Htbl parallel
================================================================================
success (ran 2 tests)
(cd _build/default/bench && ./main.exe -brief Picos_htbl)
Picos_htbl:
operations over time/1 worker, 10% reads:
8.77 M/s
operations over time/1 worker, 50% reads:
11.86 M/s
operations over time/1 worker, 90% reads:
13.64 M/s
operations over time/2 workers, 10% reads:
9.35 M/s
operations over time/2 workers, 50% reads:
18.96 M/s
operations over time/2 workers, 90% reads:
19.93 M/s
operations over time/4 workers, 10% reads:
18.17 M/s
operations over time/4 workers, 50% reads:
30.33 M/s
operations over time/4 workers, 90% reads:
46.36 M/s
operations over time/8 workers, 10% reads:
45.29 M/s
operations over time/8 workers, 50% reads:
55.77 M/s
operations over time/8 workers, 90% reads:
79.28 M/s
time per operation/1 worker, 10% reads:
114.05 ns
time per operation/1 worker, 50% reads:
84.31 ns
time per operation/1 worker, 90% reads:
73.31 ns
time per operation/2 workers, 10% reads:
213.93 ns
time per operation/2 workers, 50% reads:
105.50 ns
time per operation/2 workers, 90% reads:
100.37 ns
time per operation/4 workers, 10% reads:
220.18 ns
time per operation/4 workers, 50% reads:
131.87 ns
time per operation/4 workers, 90% reads:
86.28 ns
time per operation/8 workers, 10% reads:
176.64 ns
time per operation/8 workers, 50% reads:
143.44 ns
time per operation/8 workers, 90% reads:
100.91 ns
(cd _build/default/test && ./test_lock.exe)
random seed: 971556989699871290
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Lock sequential
[ ] 0 0 0 0 / 32 0.0s Lock sequential (generating)
[✓] 32 0 0 32 / 32 0.0s Lock sequential
[ ] 0 0 0 0 / 32 0.0s Lock parallel
[ ] 1 0 0 1 / 32 0.6s Lock parallel
[ ] 2 0 0 2 / 32 1.1s Lock parallel
[ ] 3 0 0 3 / 32 1.8s Lock parallel
[ ] 4 0 0 4 / 32 2.5s Lock parallel
[ ] 5 0 0 5 / 32 3.1s Lock parallel
[ ] 6 0 0 6 / 32 3.5s Lock parallel
[ ] 7 0 0 7 / 32 4.0s Lock parallel
[ ] 8 0 0 8 / 32 4.5s Lock parallel
[ ] 9 0 0 9 / 32 5.0s Lock parallel
[ ] 10 0 0 10 / 32 5.5s Lock parallel
[ ] 11 0 0 11 / 32 6.0s Lock parallel
[ ] 12 0 0 12 / 32 6.5s Lock parallel
[ ] 13 0 0 13 / 32 7.1s Lock parallel
[ ] 14 0 0 14 / 32 7.7s Lock parallel
[ ] 15 0 0 15 / 32 8.2s Lock parallel
[ ] 16 0 0 16 / 32 8.7s Lock parallel
[ ] 17 0 0 17 / 32 9.3s Lock parallel
[ ] 18 0 0 18 / 32 10.0s Lock parallel
[ ] 19 0 0 19 / 32 10.5s Lock parallel
[ ] 20 0 0 20 / 32 11.0s Lock parallel
[ ] 21 0 0 21 / 32 11.5s Lock parallel
[ ] 22 0 0 22 / 32 11.9s Lock parallel
[ ] 23 0 0 23 / 32 12.4s Lock parallel
[ ] 24 0 0 24 / 32 12.8s Lock parallel
[ ] 25 0 0 25 / 32 13.2s Lock parallel
[ ] 26 0 0 26 / 32 13.5s Lock parallel
[ ] 27 0 0 27 / 32 13.8s Lock parallel
[ ] 28 0 0 28 / 32 14.2s Lock parallel
[ ] 29 0 0 29 / 32 14.4s Lock parallel
[ ] 30 0 0 30 / 32 14.7s Lock parallel
[ ] 31 0 0 31 / 32 14.9s Lock parallel
[ ] 32 0 0 32 / 32 15.1s Lock parallel
[✓] 32 0 0 32 / 32 15.1s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 1044257741766970655
generated error fail pass / total time test name
[ ] 0 0 0 0 / 64 0.0s Lock sequential
[✓] 64 0 0 64 / 64 0.0s Lock sequential
[ ] 0 0 0 0 / 64 0.0s Lock parallel
[ ] 1 0 0 1 / 64 0.4s Lock parallel
[ ] 2 0 0 2 / 64 0.5s Lock parallel
[ ] 3 0 0 3 / 64 0.7s Lock parallel
[ ] 4 0 0 4 / 64 0.9s Lock parallel
[ ] 5 0 0 5 / 64 1.1s Lock parallel
[ ] 6 0 0 6 / 64 1.3s Lock parallel
[ ] 7 0 0 7 / 64 1.5s Lock parallel
[ ] 8 0 0 8 / 64 1.7s Lock parallel
[ ] 9 0 0 9 / 64 2.0s Lock parallel
[ ] 10 0 0 10 / 64 2.3s Lock parallel
[ ] 11 0 0 11 / 64 2.4s Lock parallel
[ ] 12 0 0 12 / 64 2.6s Lock parallel
[ ] 13 0 0 13 / 64 3.0s Lock parallel
[ ] 14 0 0 14 / 64 3.1s Lock parallel
[ ] 15 0 0 15 / 64 3.3s Lock parallel
[ ] 16 0 0 16 / 64 3.5s Lock parallel
[ ] 17 0 0 17 / 64 3.7s Lock parallel
[ ] 18 0 0 18 / 64 3.8s Lock parallel
[ ] 20 0 0 20 / 64 4.0s Lock parallel
[ ] 21 0 0 21 / 64 4.1s Lock parallel
[ ] 22 0 0 22 / 64 4.3s Lock parallel
[ ] 23 0 0 23 / 64 4.4s Lock parallel
[ ] 24 0 0 24 / 64 4.8s Lock parallel
[ ] 25 0 0 25 / 64 5.0s Lock parallel
[ ] 26 0 0 26 / 64 5.1s Lock parallel
[ ] 27 0 0 27 / 64 5.3s Lock parallel
[ ] 28 0 0 28 / 64 5.5s Lock parallel
[ ] 29 0 0 29 / 64 5.6s Lock parallel
[ ] 30 0 0 30 / 64 6.2s Lock parallel
[ ] 31 0 0 31 / 64 6.4s Lock parallel
[ ] 32 0 0 32 / 64 6.6s Lock parallel
[ ] 33 0 0 33 / 64 6.7s Lock parallel
[ ] 34 0 0 34 / 64 6.9s Lock parallel
[ ] 36 0 0 36 / 64 7.1s Lock parallel
[ ] 37 0 0 37 / 64 7.3s Lock parallel
[ ] 38 0 0 38 / 64 7.4s Lock parallel
[ ] 39 0 0 39 / 64 7.6s Lock parallel
[ ] 40 0 0 40 / 64 8.0s Lock parallel
[ ] 41 0 0 41 / 64 8.2s Lock parallel
[ ] 43 0 0 43 / 64 8.4s Lock parallel
[ ] 44 0 0 44 / 64 8.6s Lock parallel
[ ] 45 0 0 45 / 64 8.7s Lock parallel
[ ] 46 0 0 46 / 64 8.8s Lock parallel
[ ] 47 0 0 47 / 64 8.9s Lock parallel
[ ] 48 0 0 48 / 64 9.1s Lock parallel
[ ] 49 0 0 49 / 64 9.3s Lock parallel
[ ] 50 0 0 50 / 64 9.4s Lock parallel
[ ] 52 0 0 52 / 64 9.7s Lock parallel
[ ] 53 0 0 53 / 64 9.9s Lock parallel
[ ] 55 0 0 55 / 64 10.0s Lock parallel
[ ] 56 0 0 56 / 64 10.4s Lock parallel
[ ] 57 0 0 57 / 64 10.5s Lock parallel
[ ] 58 0 0 58 / 64 10.6s Lock parallel
[ ] 59 0 0 59 / 64 10.8s Lock parallel
[ ] 60 0 0 60 / 64 11.0s Lock parallel
[ ] 61 0 0 61 / 64 11.1s Lock parallel
[ ] 62 0 0 62 / 64 11.3s Lock parallel
[ ] 64 0 0 64 / 64 11.6s Lock parallel
[✓] 64 0 0 64 / 64 11.6s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 3128257742035584112
generated error fail pass / total time test name
[ ] 0 0 0 0 / 119 0.0s Lock sequential
[✓] 119 0 0 119 / 119 0.0s Lock sequential
[ ] 0 0 0 0 / 119 0.0s Lock parallel
[ ] 1 0 0 1 / 119 0.1s Lock parallel
[ ] 3 0 0 3 / 119 0.3s Lock parallel
[ ] 4 0 0 4 / 119 0.5s Lock parallel
[ ] 5 0 0 5 / 119 0.6s Lock parallel
[ ] 6 0 0 6 / 119 0.8s Lock parallel
[ ] 7 0 0 7 / 119 1.0s Lock parallel
[ ] 8 0 0 8 / 119 1.1s Lock parallel
[ ] 9 0 0 9 / 119 1.3s Lock parallel
[ ] 10 0 0 10 / 119 1.6s Lock parallel
[ ] 11 0 0 11 / 119 1.7s Lock parallel
[ ] 12 0 0 12 / 119 2.2s Lock parallel
[ ] 13 0 0 13 / 119 2.3s Lock parallel
[ ] 14 0 0 14 / 119 2.5s Lock parallel
[ ] 15 0 0 15 / 119 3.1s Lock parallel
[ ] 16 0 0 16 / 119 3.3s Lock parallel
[ ] 17 0 0 17 / 119 3.5s Lock parallel
[ ] 18 0 0 18 / 119 3.6s Lock parallel
[ ] 20 0 0 20 / 119 3.7s Lock parallel
[ ] 22 0 0 22 / 119 3.9s Lock parallel
[ ] 23 0 0 23 / 119 4.1s Lock parallel
[ ] 24 0 0 24 / 119 4.2s Lock parallel
[ ] 26 0 0 26 / 119 4.8s Lock parallel
[ ] 28 0 0 28 / 119 4.9s Lock parallel
[ ] 30 0 0 30 / 119 5.1s Lock parallel
[ ] 32 0 0 32 / 119 5.3s Lock parallel
[ ] 33 0 0 33 / 119 5.4s Lock parallel
[ ] 35 0 0 35 / 119 5.5s Lock parallel
[ ] 37 0 0 37 / 119 5.7s Lock parallel
[ ] 40 0 0 40 / 119 5.8s Lock parallel
[ ] 41 0 0 41 / 119 6.0s Lock parallel
[ ] 44 0 0 44 / 119 6.2s Lock parallel
[ ] 46 0 0 46 / 119 6.4s Lock parallel
[ ] 48 0 0 48 / 119 6.5s Lock parallel
[ ] 50 0 0 50 / 119 6.7s Lock parallel
[ ] 51 0 0 51 / 119 6.8s Lock parallel
[ ] 52 0 0 52 / 119 6.9s Lock parallel
[ ] 53 0 0 53 / 119 7.1s Lock parallel
[ ] 55 0 0 55 / 119 7.7s Lock parallel
[ ] 57 0 0 57 / 119 7.9s Lock parallel
[ ] 58 0 0 58 / 119 8.1s Lock parallel
[ ] 60 0 0 60 / 119 8.3s Lock parallel
[ ] 62 0 0 62 / 119 8.4s Lock parallel
[ ] 64 0 0 64 / 119 8.7s Lock parallel
[ ] 66 0 0 66 / 119 8.8s Lock parallel
[ ] 67 0 0 67 / 119 9.0s Lock parallel
[ ] 69 0 0 69 / 119 9.2s Lock parallel
[ ] 70 0 0 70 / 119 9.3s Lock parallel
[ ] 71 0 0 71 / 119 9.6s Lock parallel
[ ] 72 0 0 72 / 119 9.8s Lock parallel
[ ] 73 0 0 73 / 119 10.0s Lock parallel
[ ] 74 0 0 74 / 119 10.1s Lock parallel
[ ] 76 0 0 76 / 119 10.6s Lock parallel
[ ] 78 0 0 78 / 119 10.9s Lock parallel
[ ] 79 0 0 79 / 119 11.0s Lock parallel
[ ] 80 0 0 80 / 119 11.3s Lock parallel
[ ] 82 0 0 82 / 119 11.5s Lock parallel
[ ] 83 0 0 83 / 119 12.0s Lock parallel
[ ] 85 0 0 85 / 119 12.1s Lock parallel
[ ] 86 0 0 86 / 119 12.5s Lock parallel
[ ] 89 0 0 89 / 119 12.7s Lock parallel
[ ] 90 0 0 90 / 119 12.9s Lock parallel
[ ] 92 0 0 92 / 119 13.0s Lock parallel
[ ] 94 0 0 94 / 119 13.3s Lock parallel
[ ] 95 0 0 95 / 119 13.4s Lock parallel
[ ] 96 0 0 96 / 119 13.6s Lock parallel
[ ] 99 0 0 99 / 119 13.8s Lock parallel
[ ] 100 0 0 100 / 119 13.9s Lock parallel
[ ] 102 0 0 102 / 119 14.0s Lock parallel
[ ] 105 0 0 105 / 119 14.3s Lock parallel
[ ] 107 0 0 107 / 119 14.4s Lock parallel
[ ] 108 0 0 108 / 119 14.5s Lock parallel
[ ] 111 0 0 111 / 119 14.6s Lock parallel
[ ] 113 0 0 113 / 119 14.8s Lock parallel
[ ] 115 0 0 115 / 119 15.0s Lock parallel
[ ] 118 0 0 118 / 119 15.1s Lock parallel
[✓] 119 0 0 119 / 119 15.2s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 2713165971140199575
generated error fail pass / total time test name
[ ] 0 0 0 0 / 92 0.0s Lock sequential
[✓] 92 0 0 92 / 92 0.0s Lock sequential
[ ] 0 0 0 0 / 92 0.0s Lock parallel
[ ] 1 0 0 1 / 92 0.2s Lock parallel
[ ] 3 0 0 3 / 92 0.3s Lock parallel
[ ] 4 0 0 4 / 92 0.4s Lock parallel
[ ] 5 0 0 5 / 92 0.6s Lock parallel
[ ] 9 0 0 9 / 92 1.0s Lock parallel
[ ] 11 0 0 11 / 92 1.2s Lock parallel
[ ] 15 0 0 15 / 92 1.3s Lock parallel
[ ] 17 0 0 17 / 92 1.5s Lock parallel
[ ] 21 0 0 21 / 92 1.7s Lock parallel
[ ] 24 0 0 24 / 92 1.8s Lock parallel
[ ] 29 0 0 29 / 92 1.9s Lock parallel
[ ] 33 0 0 33 / 92 2.1s Lock parallel
[ ] 37 0 0 37 / 92 2.2s Lock parallel
[ ] 41 0 0 41 / 92 2.4s Lock parallel
[ ] 45 0 0 45 / 92 2.5s Lock parallel
[ ] 48 0 0 48 / 92 2.6s Lock parallel
[ ] 51 0 0 51 / 92 2.7s Lock parallel
[ ] 56 0 0 56 / 92 2.9s Lock parallel
[ ] 59 0 0 59 / 92 3.2s Lock parallel
[ ] 60 0 0 60 / 92 3.3s Lock parallel
[ ] 63 0 0 63 / 92 3.4s Lock parallel
[ ] 68 0 0 68 / 92 3.6s Lock parallel
[ ] 73 0 0 73 / 92 3.7s Lock parallel
[ ] 75 0 0 75 / 92 3.8s Lock parallel
[ ] 79 0 0 79 / 92 3.9s Lock parallel
[ ] 82 0 0 82 / 92 4.0s Lock parallel
[ ] 88 0 0 88 / 92 4.1s Lock parallel
[ ] 92 0 0 92 / 92 4.6s Lock parallel
[✓] 92 0 0 92 / 92 4.6s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 312980648517507777
generated error fail pass / total time test name
[ ] 0 0 0 0 / 89 0.0s Lock sequential
[✓] 89 0 0 89 / 89 0.0s Lock sequential
[ ] 0 0 0 0 / 89 0.0s Lock parallel
[ ] 2 0 0 2 / 89 0.4s Lock parallel
[ ] 7 0 0 7 / 89 0.5s Lock parallel
[ ] 11 0 0 11 / 89 0.6s Lock parallel
[ ] 12 0 0 12 / 89 0.7s Lock parallel
[ ] 16 0 0 16 / 89 0.9s Lock parallel
[ ] 19 0 0 19 / 89 1.2s Lock parallel
[ ] 22 0 0 22 / 89 1.3s Lock parallel
[ ] 25 0 0 25 / 89 1.4s Lock parallel
[ ] 29 0 0 29 / 89 1.5s Lock parallel
[ ] 33 0 0 33 / 89 1.7s Lock parallel
[ ] 36 0 0 36 / 89 1.8s Lock parallel
[ ] 38 0 0 38 / 89 1.9s Lock parallel
[ ] 41 0 0 41 / 89 2.0s Lock parallel
[ ] 42 0 0 42 / 89 2.2s Lock parallel
[ ] 44 0 0 44 / 89 2.4s Lock parallel
[ ] 46 0 0 46 / 89 2.5s Lock parallel
[ ] 50 0 0 50 / 89 2.7s Lock parallel
[ ] 56 0 0 56 / 89 2.8s Lock parallel
[ ] 60 0 0 60 / 89 3.0s Lock parallel
[ ] 69 0 0 69 / 89 3.1s Lock parallel
[ ] 74 0 0 74 / 89 3.5s Lock parallel
[ ] 79 0 0 79 / 89 3.6s Lock parallel
[ ] 80 0 0 80 / 89 3.9s Lock parallel
[ ] 86 0 0 86 / 89 4.1s Lock parallel
[✓] 89 0 0 89 / 89 4.2s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 999986048963123513
generated error fail pass / total time test name
[ ] 0 0 0 0 / 72 0.0s Lock sequential
[✓] 72 0 0 72 / 72 0.0s Lock sequential
[ ] 0 0 0 0 / 72 0.0s Lock parallel
[ ] 1 0 0 1 / 72 0.0s Lock parallel
[ ] 4 0 0 4 / 72 0.2s Lock parallel
[ ] 11 0 0 11 / 72 0.3s Lock parallel
[ ] 13 0 0 13 / 72 0.4s Lock parallel
[ ] 18 0 0 18 / 72 0.6s Lock parallel
[ ] 27 0 0 27 / 72 0.7s Lock parallel
[ ] 30 0 0 30 / 72 0.9s Lock parallel
[ ] 36 0 0 36 / 72 1.0s Lock parallel
[ ] 39 0 0 39 / 72 1.1s Lock parallel
[ ] 42 0 0 42 / 72 1.4s Lock parallel
[ ] 47 0 0 47 / 72 1.8s Lock parallel
[ ] 52 0 0 52 / 72 1.9s Lock parallel
[ ] 58 0 0 58 / 72 2.0s Lock parallel
[ ] 63 0 0 63 / 72 2.2s Lock parallel
[ ] 66 0 0 66 / 72 2.4s Lock parallel
[ ] 72 0 0 72 / 72 2.5s Lock parallel
[✓] 72 0 0 72 / 72 2.5s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 463135777935790863
generated error fail pass / total time test name
[ ] 0 0 0 0 / 59 0.0s Lock sequential
[✓] 59 0 0 59 / 59 0.0s Lock sequential
[ ] 0 0 0 0 / 59 0.0s Lock parallel
[ ] 4 0 0 4 / 59 0.1s Lock parallel
[ ] 8 0 0 8 / 59 0.2s Lock parallel
[ ] 13 0 0 13 / 59 0.5s Lock parallel
[ ] 17 0 0 17 / 59 0.7s Lock parallel
[ ] 24 0 0 24 / 59 0.9s Lock parallel
[ ] 26 0 0 26 / 59 1.1s Lock parallel
[ ] 29 0 0 29 / 59 1.3s Lock parallel
[ ] 31 0 0 31 / 59 1.4s Lock parallel
[ ] 36 0 0 36 / 59 1.6s Lock parallel
[ ] 41 0 0 41 / 59 1.8s Lock parallel
[ ] 52 0 0 52 / 59 1.9s Lock parallel
[ ] 54 0 0 54 / 59 2.2s Lock parallel
[ ] 58 0 0 58 / 59 2.5s Lock parallel
[✓] 59 0 0 59 / 59 2.5s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 1128622474226877013
generated error fail pass / total time test name
[ ] 0 0 0 0 / 41 0.0s Lock sequential
[✓] 41 0 0 41 / 41 0.0s Lock sequential
[ ] 0 0 0 0 / 41 0.0s Lock parallel
[ ] 6 0 0 6 / 41 0.1s Lock parallel
[ ] 12 0 0 12 / 41 0.2s Lock parallel
[ ] 21 0 0 21 / 41 0.4s Lock parallel
[ ] 22 0 0 22 / 41 0.7s Lock parallel
[ ] 27 0 0 27 / 41 0.8
Lock parallel
[ ] 33 0 0 33 / 41 1.2s Lock parallel
[ ] 35 0 0 35 / 41 1.6s Lock parallel
[ ] 39 0 0 39 / 41 1.7s Lock parallel
[✓] 41 0 0 41 / 41 1.7s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 983754991268248607
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.2s Lock parallel
[ ] 8 0 0 8 / 32 0.4s Lock parallel
[ ] 12 0 0 12 / 32 0.7s Lock parallel
[ ] 19 0 0 19 / 32 1.1s Lock parallel
[ ] 23 0 0 23 / 32 1.3s Lock parallel
[ ] 25 0 0 25 / 32 1.4s Lock parallel
[✓] 32 0 0 32 / 32 1.5s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 1984179024700311053
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
[ ] 3 0 0 3 / 32 0.0s Lock parallel
[ ] 7 0 0 7 / 32 0.2s Lock parallel
[ ] 14 0 0 14 / 32 0.4s Lock parallel
[ ] 18 0 0 18 / 32 0.5s Lock parallel
[ ] 22 0 0 22 / 32 0.6s Lock parallel
[ ] 27 0 0 27 / 32 0.7s Lock parallel
[✓] 32 0 0 32 / 32 0.8s Lock parallel
================================================================================
success (ran 2 tests)
random seed: 1900653454232988645
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.1s Lock parallel
[ ] 4 0 0 4 / 32 0.5s Lock parallel
[ ] 12 0 0 12 / 32 0.6s Lock parallel
[ ] 18 0 0 18 / 32 1.0s Lock parallel
[ ] 24 0 0 24 / 32 1.1s Lock parallel
[✓] 32 0 0 32 / 32 1.2s Lock parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_mpmcq.exe)
random seed: 4396881933378954828
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 32 0.0s Mpmcq sequential (generating)
[✓] 32 0 0 32 / 32 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 32 0.0s Mpmcq parallel
[ ] 1 0 0 1 / 32 0.7s Mpmcq parallel
[ ] 2 0 0 2 / 32 1.4s Mpmcq parallel
[ ] 3 0 0 3 / 32 2.0s Mpmcq parallel
[ ] 4 0 0 4 / 32 2.9s Mpmcq parallel
[ ] 5 0 0 5 / 32 3.4s Mpmcq parallel
[ ] 6 0 0 6 / 32 4.0s Mpmcq parallel
[ ] 7 0 0 7 / 32 4.5s Mpmcq parallel
[ ] 8 0 0 8 / 32 4.9s Mpmcq parallel
[ ] 9 0 0 9 / 32 5.4s Mpmcq parallel
[ ] 10 0 0 10 / 32 5.9s Mpmcq parallel
[ ] 11 0 0 11 / 32 6.2s Mpmcq parallel
[ ] 12 0 0 12 / 32 6.8s Mpmcq parallel
[ ] 13 0 0 13 / 32 7.4s Mpmcq parallel
[ ] 14 0 0 14 / 32 7.8s Mpmcq parallel
[ ] 15 0 0 15 / 32 8.4s Mpmcq parallel
[ ] 16 0 0 16 / 32 8.9s Mpmcq parallel
[ ] 17 0 0 17 / 32 9.4s Mpmcq parallel
[ ] 18 0 0 18 / 32 9.9s Mpmcq parallel
[ ] 19 0 0 19 / 32 10.5s Mpmcq parallel
[ ] 20 0 0 20 / 32 10.9s Mpmcq parallel
[ ] 21 0 0 21 / 32 11.4s Mpmcq parallel
[ ] 22 0 0 22 / 32 11.9s Mpmcq parallel
[ ] 23 0 0 23 / 32 12.3s Mpmcq parallel
[ ] 24 0 0 24 / 32 12.7s Mpmcq parallel
[ ] 25 0 0 25 / 32 13.0s Mpmcq parallel
[ ] 26 0 0 26 / 32 13.5s Mpmcq parallel
[ ] 27 0 0 27 / 32 13.8s Mpmcq parallel
[ ] 28 0 0 28 / 32 14.1s Mpmcq parallel
[ ] 29 0 0 29 / 32 14.4s Mpmcq parallel
[ ] 30 0 0 30 / 32 14.7s Mpmcq parallel
[ ] 31 0 0 31 / 32 15.0s Mpmcq parallel
[ ] 32 0 0 32 / 32 15.3s Mpmcq parallel
[✓] 32 0 0 32 / 32 15.3s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 67736915443370119
generated error fail pass / total time test name
[ ] 0 0 0 0 / 64 0.0s Mpmcq sequential
[✓] 64 0 0 64 / 64 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 64 0.0s Mpmcq parallel
[ ] 1 0 0 1 / 64 0.2s Mpmcq parallel
[ ] 2 0 0 2 / 64 0.3s Mpmcq parallel
[ ] 3 0 0 3 / 64 0.5s Mpmcq parallel
[ ] 4 0 0 4 / 64 0.7s Mpmcq parallel
[ ] 5 0 0 5 / 64 0.9s Mpmcq parallel
[ ] 6 0 0 6 / 64 1.1s Mpmcq parallel
[ ] 7 0 0 7 / 64 1.3s Mpmcq parallel
[ ] 8 0 0 8 / 64 1.5s Mpmcq parallel
[ ] 9 0 0 9 / 64 1.7s Mpmcq parallel
[ ] 11 0 0 11 / 64 2.0s Mpmcq parallel
[ ] 12 0 0 12 / 64 2.1s Mpmcq parallel
[ ] 13 0 0 13 / 64 2.3s Mpmcq parallel
[ ] 14 0 0 14 / 64 2.6s Mpmcq parallel
[ ] 15 0 0 15 / 64 2.7s Mpmcq parallel
[ ] 16 0 0 16 / 64 2.9s Mpmcq parallel
[ ] 17 0 0 17 / 64 3.0s Mpmcq parallel
[ ] 18 0 0 18 / 64 3.2s Mpmcq parallel
[ ] 19 0 0 19 / 64 3.3s Mpmcq parallel
[ ] 20 0 0 20 / 64 3.5s Mpmcq parallel
[ ] 21 0 0 21 / 64 3.7s Mpmcq parallel
[ ] 22 0 0 22 / 64 3.9s Mpmcq parallel
[ ] 23 0 0 23 / 64 4.7s Mpmcq parallel
[ ] 24 0 0 24 / 64 4.9s Mpmcq parallel
[ ] 25 0 0 25 / 64 5.2s Mpmcq parallel
[ ] 26 0 0 26 / 64 5.4s Mpmcq parallel
[ ] 27 0 0 27 / 64 5.6s Mpmcq parallel
[ ] 28 0 0 28 / 64 5.8s Mpmcq parallel
[ ] 29 0 0 29 / 64 5.9s Mpmcq parallel
[ ] 30 0 0 30 / 64 6.1s Mpmcq parallel
[ ] 31 0 0 31 / 64 6.3s Mpmcq parallel
[ ] 32 0 0 32 / 64 6.8s Mpmcq parallel
[ ] 33 0 0 33 / 64 7.0s Mpmcq parallel
[ ] 34 0 0 34 / 64 7.2s Mpmcq parallel
[ ] 35 0 0 35 / 64 7.5s Mpmcq parallel
[ ] 36 0 0 36 / 64 7.7s Mpmcq parallel
[ ] 37 0 0 37 / 64 7.8s Mpmcq parallel
[ ] 39 0 0 39 / 64 8.0s Mpmcq parallel
[ ] 40 0 0 40 / 64 8.2s Mpmcq parallel
[ ] 41 0 0 41 / 64 8.7s Mpmcq parallel
[ ] 42 0 0 42 / 64 8.8s Mpmcq parallel
[ ] 43 0 0 43 / 64 9.0s Mpmcq parallel
[ ] 44 0 0 44 / 64 9.1s Mpmcq parallel
[ ] 45 0 0 45 / 64 9.3s Mpmcq parallel
[ ] 47 0 0 47 / 64 9.5s Mpmcq parallel
[ ] 48 0 0 48 / 64 9.6s Mpmcq parallel
[ ] 50 0 0 50 / 64 9.8s Mpmcq parallel
[ ] 52 0 0 52 / 64 10.0s Mpmcq parallel
[ ] 53 0 0 53 / 64 10.2s Mpmcq parallel
[ ] 54 0 0 54 / 64 10.4s Mpmcq parallel
[ ] 55 0 0 55 / 64 11.0s Mpmcq parallel
[ ] 56 0 0 56 / 64 11.2s Mpmcq parallel
[ ] 57 0 0 57 / 64 11.3s Mpmcq parallel (collecting)
[ ] 58 0 0 58 / 64 11.4s Mpmcq parallel
[ ] 59 0 0 59 / 64 11.5s Mpmcq parallel
[ ] 61 0 0 61 / 64 11.7s Mpmcq parallel
[ ] 63 0 0 63 / 64 11.9s Mpmcq parallel
[ ] 64 0 0 64 / 64 12.1s Mpmcq parallel
[✓] 64 0 0 64 / 64 12.1s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 1237706441103140785
generated error fail pass / total time test name
[ ] 0 0 0 0 / 114 0.0s Mpmcq sequential
[✓] 114 0 0 114 / 114 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 114 0.0s Mpmcq parallel
[ ] 1 0 0 1 / 114 0.1s Mpmcq parallel
[ ] 2 0 0 2 / 114 0.3s Mpmcq parallel
[ ] 3 0 0 3 / 114 0.5s Mpmcq parallel
[ ] 5 0 0 5 / 114 0.6s Mpmcq parallel
[ ] 6 0 0 6 / 114 1.0s Mpmcq parallel
[ ] 7 0 0 7 / 114 1.1s Mpmcq parallel
[ ] 8 0 0 8 / 114 1.3s Mpmcq parallel
[ ] 9 0 0 9 / 114 1.5s Mpmcq parallel
[ ] 10 0 0 10 / 114 1.6s Mpmcq parallel
[ ] 11 0 0 11 / 114 1.8s Mpmcq parallel
[ ] 12 0 0 12 / 114 2.1s Mpmcq parallel
[ ] 13 0 0 13 / 114 2.2s Mpmcq parallel
[ ] 14 0 0 14 / 114 2.4s Mpmcq parallel
[ ] 17 0 0 17 / 114 2.6s Mpmcq parallel
[ ] 18 0 0 18 / 114 2.7s Mpmcq parallel
[ ] 19 0 0 19 / 114 2.8s Mpmcq parallel
[ ] 20 0 0 20 / 114 3.0s Mpmcq parallel
[ ] 21 0 0 21 / 114 3.1s Mpmcq parallel
[ ] 23 0 0 23 / 114 3.3s Mpmcq parallel
[ ] 25 0 0 25 / 114 3.5s Mpmcq parallel
[ ] 26 0 0 26 / 114 3.6s Mpmcq parallel
[ ] 28 0 0 28 / 114 3.7s Mpmcq parallel
[ ] 30 0 0 30 / 114 3.9s Mpmcq parallel
[ ] 32 0 0 32 / 114 4.0s Mpmcq parallel
[ ] 35 0 0 35 / 114 4.3s Mpmcq parallel
[ ] 36 0 0 36 / 114 4.4s Mpmcq parallel
[ ] 37 0 0 37 / 114 4.6s Mpmcq parallel
[ ] 38 0 0 38 / 114 4.8s Mpmcq parallel
[ ] 39 0 0 39 / 114 5.2s Mpmcq parallel
[ ] 42 0 0 42 / 114 5.9s Mpmcq parallel
[ ] 43 0 0 43 / 114 6.0s Mpmcq parallel
[ ] 45 0 0 45 / 114 6.1s Mpmcq parallel
[ ] 47 0 0 47 / 114 6.4s Mpmcq parallel
[ ] 48 0 0 48 / 114 6.5s Mpmcq parallel
[ ] 50 0 0 50 / 114 6.7s Mpmcq parallel
[ ] 51 0 0 51 / 114 6.9s Mpmcq parallel
[ ] 52 0 0 52 / 114 7.0s Mpmcq parallel
[ ] 54 0 0 54 / 114 7.2s Mpmcq parallel
[ ] 57 0 0 57 / 114 7.3s Mpmcq parallel
[ ] 58 0 0 58 / 114 7.8s Mpmcq parallel
[ ] 60 0 0 60 / 114 7.9s Mpmcq parallel
[ ] 61 0 0 61 / 114 8.0s Mpmcq parallel
[ ] 62 0 0 62 / 114 8.1s Mpmcq parallel
[ ] 63 0 0 63 / 114 8.3s Mpmcq parallel
[ ] 64 0 0 64 / 114 8.5s Mpmcq parallel
[ ] 65 0 0 65 / 114 8.6s Mpmcq parallel
[ ] 66 0 0 66 / 114 8.8s Mpmcq parallel
[ ] 67 0 0 67 / 114 8.9s Mpmcq parallel
[ ] 68 0 0 68 / 114 9.0s Mpmcq parallel
[ ] 69 0 0 69 / 114 9.2s Mpmcq parallel
[ ] 71 0 0 71 / 114 9.5s Mpmcq parallel
[ ] 72 0 0 72 / 114 9.6s Mpmcq parallel
[ ] 73 0 0 73 / 114 10.0s Mpmcq parallel
[ ] 74 0 0 74 / 114 10.3s Mpmcq parallel
[ ] 76 0 0 76 / 114 10.5s Mpmcq parallel
[ ] 79 0 0 79 / 114 11.0s Mpmcq parallel
[ ] 82 0 0 82 / 114 11.1s Mpmcq parallel
[ ] 85 0 0 85 / 114 11.2s Mpmcq parallel
[ ] 87 0 0 87 / 114 11.4s Mpmcq parallel
[ ] 89 0 0 89 / 114 11.5s Mpmcq parallel
[ ] 90 0 0 90 / 114 11.7s Mpmcq parallel
[ ] 91 0 0 91 / 114 11.8s Mpmcq parallel
[ ] 92 0 0 92 / 114 12.1s Mpmcq parallel
[ ] 94 0 0 94 / 114 12.2s Mpmcq parallel
[ ] 97 0 0 97 / 114 12.3s Mpmcq parallel
[ ] 98 0 0 98 / 114 12.4s Mpmcq parallel
[ ] 100 0 0 100 / 114 12.5s Mpmcq parallel
[ ] 103 0 0 103 / 114 12.7s Mpmcq parallel
[ ] 105 0 0 105 / 114 12.8s Mpmcq parallel
[ ] 106 0 0 106 / 114 12.9s Mpmcq parallel
[ ] 108 0 0 108 / 114 13.0s Mpmcq parallel
[ ] 110 0 0 110 / 114 13.2s Mpmcq parallel
[ ] 114 0 0 114 / 114 13.4s Mpmcq parallel
[✓] 114 0 0 114 / 114 13.4s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 846086284401372969
generated error fail pass / total time test name
[ ] 0 0 0 0 / 99 0.0s Mpmcq sequential
[✓] 99 0 0 99 / 99 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 99 0.0s Mpmcq parallel
[ ] 1 0 0 1 / 99 0.2s Mpmcq parallel
[ ] 5 0 0 5 / 99 0.3s Mpmcq parallel
[ ] 10 0 0 10 / 99 0.4s Mpmcq parallel
[ ] 12 0 0 12 / 99 0.6s Mpmcq parallel
[ ] 15 0 0 15 / 99 0.7s Mpmcq parallel
[ ] 18 0 0 18 / 99 0.8s Mpmcq parallel
[ ] 20 0 0 20 / 99 1.3s Mpmcq parallel
[ ] 22 0 0 22 / 99 1.5s Mpmcq parallel
[ ] 23 0 0 23 / 99 1.9s Mpmcq parallel
[ ] 26 0 0 26 / 99 2.0s Mpmcq parallel
[ ] 29 0 0 29 / 99 2.1s Mpmcq parallel
[ ] 31 0 0 31 / 99 2.2s Mpmcq parallel
[ ] 35 0 0 35 / 99 2.3s Mpmcq parallel
[ ] 39 0 0 39 / 99 2.5s Mpmcq parallel
[ ] 42 0 0 42 / 99 2.9s Mpmcq parallel
[ ] 44 0 0 44 / 99 3.2s Mpmcq parallel
[ ] 48 0 0 48 / 99 3.3s Mpmcq parallel
[ ] 53 0 0 53 / 99 3.5s Mpmcq parallel
[ ] 58 0 0 58 / 99 3.6s Mpmcq parallel
[ ] 63 0 0 63 / 99 3.8s Mpmcq parallel
[ ] 68 0 0 68 / 99 4.0s Mpmcq parallel
[ ] 71 0 0 71 / 99 4.1s Mpmcq parallel
[ ] 74 0 0 74 / 99 4.3s Mpmcq parallel
[ ] 78 0 0 78 / 99 4.4s Mpmcq parallel
[ ] 85 0 0 85 / 99 4.5s Mpmcq parallel
[ ] 87 0 0 87 / 99 4.7s Mpmcq parallel
[ ] 89 0 0 89 / 99 4.8s Mpmcq parallel
[ ] 92 0 0 92 / 99 4.9s Mpmcq parallel
[ ] 95 0 0 95 / 99 5.0s Mpmcq parallel
[✓] 99 0 0 99 / 99 5.1s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 3839661671360243058
generated error fail pass / total time test name
[ ] 0 0 0 0 / 95 0.0s Mpmcq sequential
[✓] 95 0 0 95 / 95 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 95 0.0s Mpmcq parallel
[ ] 5 0 0 5 / 95 0.3s Mpmcq parallel
[ ] 8 0 0 8 / 95 0.5s Mpmcq parallel
[ ] 11 0 0 11 / 95 0.6s Mpmcq parallel
[ ] 13 0 0 13 / 95 1.0s Mpmcq parallel
[ ] 14 0 0 14 / 95 1.4s Mpmcq parallel
[ ] 19 0 0 19 / 95 1.5s Mpmcq parallel
[ ] 22 0 0 22 / 95 1.9s Mpmcq parallel
[ ] 23 0 0 23 / 95 2.0s Mpmcq parallel
[ ] 25 0 0 25 / 95 2.1s Mpmcq parallel
[ ] 27 0 0 27 / 95 2.4s Mpmcq parallel
[ ] 29 0 0 29 / 95 2.6s Mpmcq parallel
[ ] 33 0 0 33 / 95 2.7s Mpmcq parallel
[ ] 37 0 0 37 / 95 2.9s Mpmcq parallel
[ ] 40 0 0 40 / 95 3.3s Mpmcq parallel
[ ] 47 0 0 47 / 95 3.4s Mpmcq parallel
[ ] 52 0 0 52 / 95 3.6s Mpmcq parallel
[ ] 54 0 0 54 / 95 3.8s Mpmcq parallel
[ ] 58 0 0 58 / 95 3.9s Mpmcq parallel
[ ] 61 0 0 61 / 95 4.3s Mpmcq parallel
[ ] 65 0 0 65 / 95 4.5s Mpmcq parallel
[ ] 70 0 0 70 / 95 4.9s Mpmcq parallel
[ ] 76 0 0 76 / 95 5.1s Mpmcq parallel
[ ] 79 0 0 79 / 95 5.3s Mpmcq parallel
[ ] 82 0 0 82 / 95 5.4s Mpmcq parallel
[ ] 84 0 0 84 / 95 5.7s Mpmcq parallel
[ ] 88 0 0 88 / 95 5.8s Mpmcq parallel
[ ] 95 0 0 95 / 95 6.0s Mpmcq parallel
[✓] 95 0 0 95 / 95 6.0s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 4455592493970785631
generated error fail pass / total time test name
[ ] 0 0 0 0 / 64 0.0s Mpmcq sequential
[✓] 64 0 0 64 / 64 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 64 0.0s Mpmcq parallel
[ ] 5 0 0 5 / 64 0.1s Mpmcq parallel
[ ] 6 0 0 6 / 64 0.2s Mpmcq parallel
[ ] 8 0 0 8 / 64 0.4s Mpmcq parallel
[ ] 10 0 0 10 / 64 0.5s Mpmcq parallel
[ ] 13 0 0 13 / 64 0.7s Mpmcq parallel
[ ] 15 0 0 15 / 64 1.1s Mpmcq parallel
[ ] 19 0 0 19 / 64 1.4s Mpmcq parallel
[ ] 24 0 0 24 / 64 1.7s Mpmcq parallel
[ ] 32 0 0 32 / 64 1.8s Mpmcq parallel
[ ] 34 0 0 34 / 64 2.1s Mpmcq parallel
[ ] 44 0 0 44 / 64 2.2s Mpmcq parallel
[ ] 56 0 0 56 / 64 2.4s Mpmcq parallel
[ ] 61 0 0 61 / 64 2.5s Mpmcq parallel
[✓] 64 0 0 64 / 64 2.5s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 608200813536231647
generated error fail pass / total time test name
[ ] 0 0 0 0 / 49 0.0s Mpmcq sequential
[✓] 49 0 0 49 / 49 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 49 0.0s Mpmcq parallel
[ ] 4 0 0 4 / 49 0.1s Mpmcq parallel
[ ] 12 0 0 12 / 49 0.2s Mpmcq parallel
[ ] 20 0 0 20 / 49 0.3s Mpmcq parallel
[ ] 26 0 0 26 / 49 0.6s Mpmcq parallel
[ ] 33 0 0 33 / 49 0.7s Mpmcq parallel
[ ] 35 0 0 35 / 49 0.8s Mpmcq parallel
[ ] 39 0 0 39 / 49 0.9s Mpmcq parallel
[ ] 43 0 0 43 / 49 1.3s Mpmcq parallel
[ ] 45 0 0 45 / 49 1.5s Mpmcq parallel
[✓] 49 0 0 49 / 49 1.5s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 3974761696005207876
generated error fail pass / total time test name
[ ] 0 0 0 0 / 38 0.0s Mpmcq sequential
[✓] 38 0 0 38 / 38 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 38 0.0s Mpmcq parallel
[ ] 8 0 0 8 / 38 0.2s Mpmcq parallel
[ ] 9 0 0 9 / 38 0.6s Mpmcq parallel
[ ] 11 0 0 11 / 38 0.7s Mpmcq parallel
[ ] 15 0 0 15 / 38 0.9s Mpmcq parallel
[ ] 19 0 0 19 / 38 1.0s Mpmcq parallel
[ ] 26 0 0 26 / 38 1.1s Mpmcq parallel
[ ] 29 0 0 29 / 38 1.2s Mpmcq parallel
[ ] 30 0 0 30 / 38 1.6s Mpmcq parallel
[ ] 38 0 0 38 / 38 1.9s Mpmcq parallel
[✓] 38 0 0 38 / 38 1.9s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 1168459244450673256
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Mpmcq sequential
[✓] 32 0 0 32 / 32 0.0s Mpmcq sequential
[ ] 0 0 0 0 / 32 0.0s Mpmcq parallel
[ ] 6 0 0 6 / 32 0.1s Mpmcq parallel
[ ] 7 0 0 7 / 32 0.5s Mpmcq parallel
[ ] 12 0 0 12 / 32 0.6s Mpmcq parallel
[ ] 13 0 0 13 / 32 0.9s Mpmcq parallel
[ ] 15 0 0 15 / 32 1.3s Mpmcq parallel
[ ] 18 0 0 18 / 32 1.4s Mpmcq parallel
[ ] 23 0 0 23 / 32 1.5s Mpmcq parallel
[ ] 31 0 0 31 / 32 1.8s Mpmcq parallel
[✓] 32 0 0 32 / 32 1.8s Mpmcq parallel
================================================================================
success (ran 2 tests)
random seed: 3951603095371216058
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
[ ] 8 0 0 8 / 32 0.1s Mpmcq parallel
[ ] 14 0 0 14 / 32 0.3s Mpmcq parallel
[ ] 17 0 0 17 / 32 0.7s Mpmcq parallel
[ ] 23 0 0 23 / 32 0.8s Mpmcq parallel
[ ] 30 0 0 30 / 32 1.0s Mpmcq parallel
[✓] 32 0 0 32 / 32 1.1s Mpmcq parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_mutex.exe)
random seed: 2265030533664405719
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Mutex sequential
[ ] 0 0 0 0 / 32 0.0s Mutex sequential (generating)
[✓] 32 0 0 32 / 32 0.0s Mutex sequential
[ ] 0 0 0 0 / 32 0.0s Mutex parallel
[ ] 1 0 0 1 / 32 0.7s Mutex parallel
[ ] 2 0 0 2 / 32 1.4s Mutex parallel
[ ] 3 0 0 3 / 32 2.0s Mutex parallel
[ ] 4 0 0 4 / 32 2.7s Mutex parallel
[ ] 5 0 0 5 / 32 3.3s Mutex parallel
[ ] 6 0 0 6 / 32 3.9s Mutex parallel
[ ] 7 0 0 7 / 32 4.4s Mutex parallel
[ ] 8 0 0 8 / 32 4.8s Mutex parallel
[ ] 9 0 0 9 / 32 5.3s Mutex parallel
[ ] 10 0 0 10 / 32 5.7s Mutex parallel
[ ] 11 0 0 11 / 32 6.1s Mutex parallel
[ ] 12 0 0 12 / 32 6.4s Mutex parallel
[ ] 13 0 0 13 / 32 6.8s Mutex parallel
[ ] 14 0 0 14 / 32 7.3s Mutex parallel
[ ] 15 0 0 15 / 32 7.8s Mutex parallel
[ ] 16 0 0 16 / 32 8.3s Mutex parallel
[ ] 17 0 0 17 / 32 8.8s Mutex parallel
[ ] 18 0 0 18 / 32 9.1s Mutex parallel
[ ] 19 0 0 19 / 32 9.4s Mutex parallel
[ ] 20 0 0 20 / 32 9.8s Mutex parallel
[ ] 21 0 0 21 / 32 10.2s Mutex parallel
[ ] 22 0 0 22 / 32 10.7s Mutex parallel
[ ] 23 0 0 23 / 32 11.2s Mutex parallel
[ ] 24 0 0 24 / 32 11.6s Mutex parallel
[ ] 25 0 0 25 / 32 12.1s Mutex parallel
[ ] 26 0 0 26 / 32 12.5s Mutex parallel
[ ] 27 0 0 27 / 32 13.0s Mutex parallel
[ ] 28 0 0 28 / 32 13.3s Mutex parallel
[ ] 29 0 0 29 / 32 13.5s Mutex parallel
[ ] 30 0 0 30 / 32 13.9s Mutex parallel
[ ] 31 0 0 31 / 32 14.2s Mutex parallel
[ ] 32 0 0 32 / 32 14.4s Mutex parallel
[✓] 32 0 0 32 / 32 14.4s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 445799178713649878
generated error fail pass / total time test name
[ ] 0 0 0 0 / 64 0.0s Mutex sequential
[✓] 64 0 0 64 / 64 0.0s Mutex sequential
[ ] 0 0 0 0 / 64 0.0s Mutex parallel
[ ] 1 0 0 1 / 64 0.2s Mutex parallel
[ ] 2 0 0 2 / 64 0.4s Mutex parallel
[ ] 3 0 0 3 / 64 0.7s Mutex parallel
[ ] 4 0 0 4 / 64 0.8s Mutex parallel
[ ] 5 0 0 5 / 64 1.0s Mutex parallel
[ ] 6 0 0 6 / 64 1.2s Mutex parallel
[ ] 7 0 0 7 / 64 1.4s Mutex parallel
[ ] 8 0 0 8 / 64 1.6s Mutex parallel
[ ] 9 0 0 9 / 64 1.9s Mutex parallel
[ ] 10 0 0 10 / 64 2.3s Mutex parallel
[ ] 11 0 0 11 / 64 2.8s Mutex parallel
[ ] 12 0 0 12 / 64 2.9s Mutex parallel
[ ] 13 0 0 13 / 64 3.1s Mutex parallel
[ ] 14 0 0 14 / 64 3.3s Mutex parallel
[ ] 15 0 0 15 / 64 3.6s Mutex parallel
[ ] 16 0 0 16 / 64 4.0s Mutex parallel
[ ] 17 0 0 17 / 64 4.2s Mutex parallel
[ ] 18 0 0 18 / 64 4.5s Mutex parallel
[ ] 19 0 0 19 / 64 4.6s Mutex parallel
[ ] 20 0 0 20 / 64 4.8s Mutex parallel
[ ] 21 0 0 21 / 64 5.1s Mutex parallel
[ ] 22 0 0 22 / 64 5.5s Mutex parallel
[ ] 23 0 0 23 / 64 5.7s Mutex parallel
[ ] 24 0 0 24 / 64 6.0s Mutex parallel
[ ] 25 0 0 25 / 64 6.3s Mutex parallel
[ ] 26 0 0 26 / 64 6.5s Mutex parallel
[ ] 27 0 0 27 / 64 6.9s Mutex parallel
[ ] 28 0 0 28 / 64 7.1s Mutex parallel
[ ] 29 0 0 29 / 64 7.4s Mutex parallel
[ ] 30 0 0 30 / 64 7.5s Mutex parallel
[ ] 31 0 0 31 / 64 7.6s Mutex parallel
[ ] 32 0 0 32 / 64 7.8s Mutex parallel
[ ] 33 0 0 33 / 64 7.9s Mutex parallel
[ ] 34 0 0 34 / 64 8.1s Mutex parallel
[ ] 35 0 0 35 / 64 8.3s Mutex parallel
[ ] 36 0 0 36 / 64 8.4s Mutex parallel
[ ] 37 0 0 37 / 64 8.7s Mutex parallel
[ ] 39 0 0 39 / 64 9.1s Mutex parallel
[ ] 40 0 0 40 / 64 9.4s Mutex parallel
[ ] 42 0 0 42 / 64 9.6s Mutex parallel
[ ] 43 0 0 43 / 64 9.8s Mutex parallel
[ ] 44 0 0 44 / 64 9.9s Mutex parallel
[ ] 45 0 0 45 / 64 10.1s Mutex parallel
[ ] 46 0 0 46 / 64 10.4s Mutex parallel
[ ] 47 0 0 47 / 64 10.5s Mutex parallel
[ ] 48 0 0 48 / 64 10.7s Mutex parallel
[ ] 49 0 0 49 / 64 11.0s Mutex parallel
[ ] 50 0 0 50 / 64 11.1s Mutex parallel
[ ] 51 0 0 51 / 64 11.2s Mutex parallel
[ ] 52 0 0 52 / 64 11.4s Mutex parallel
[ ] 53 0 0 53 / 64 11.5s Mutex parallel
[ ] 54 0 0 54 / 64 12.0s Mutex parallel
[ ] 55 0 0 55 / 64 12.4s Mutex parallel
[ ] 56 0 0 56 / 64 12.6s Mutex parallel
[ ] 57 0 0 57 / 64 12.7s Mutex parallel
[ ] 58 0 0 58 / 64 12.9s Mutex parallel
[ ] 59 0 0 59 / 64 13.2s Mutex parallel
[ ] 61 0 0 61 / 64 13.4s Mutex parallel
[ ] 63 0 0 63 / 64 13.5s Mutex parallel
[ ] 64 0 0 64 / 64 14.0s Mutex parallel
[✓] 64 0 0 64 / 64 14.0s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 1420972629433195151
generated error fail pass / total time test name
[ ] 0 0 0 0 / 106 0.0s Mutex sequential
[✓] 106 0 0 106 / 106 0.0s Mutex sequential
[ ] 0 0 0 0 / 106 0.0s Mutex parallel
[ ] 1 0 0 1 / 106 0.1s Mutex parallel
[ ] 2 0 0 2 / 106 0.3s Mutex parallel
[ ] 3 0 0 3 / 106 0.4s Mutex parallel
[ ] 4 0 0 4 / 106 0.5s Mutex parallel
[ ] 6 0 0 6 / 106 0.6s Mutex parallel
[ ] 7 0 0 7 / 106 0.8s Mutex parallel
[ ] 9 0 0 9 / 106 0.9s Mutex parallel
[ ] 11 0 0 11 / 106 1.1s Mutex parallel
[ ] 12 0 0 12 / 106 1.2s Mutex parallel
[ ] 14 0 0 14 / 106 1.5s Mutex parallel
[ ] 15 0 0 15 / 106 1.6s Mutex parallel
[ ] 17 0 0 17 / 106 1.9s Mutex parallel
[ ] 19 0 0 19 / 106 2.1s Mutex parallel
[ ] 20 0 0 20 / 106 2.2s Mutex parallel
[ ] 22 0 0 22 / 106 2.4s Mutex parallel
[ ] 23 0 0 23 / 106 2.6s Mutex parallel
[ ] 24 0 0 24 / 106 2.8s Mutex parallel
[ ] 25 0 0 25 / 106 2.9s Mutex parallel
[ ] 27 0 0 27 / 106 3.1s Mutex parallel
[ ] 30 0 0 30 / 106 3.3s Mutex parallel
[ ] 31 0 0 31 / 106 3.5s Mutex parallel
[ ] 32 0 0 32 / 106 3.7s Mutex parallel
[ ] 33 0 0 33 / 106 3.9s Mutex parallel
[ ] 34 0 0 34 / 106 4.1s Mutex parallel
[ ] 35 0 0 35 / 106 4.3s Mutex parallel
[ ] 36 0 0 36 / 106 4.4s Mutex parallel
[ ] 37 0 0 37 / 106 4.7s Mutex parallel
[ ] 39 0 0 39 / 106 4.9s Mutex parallel
[ ] 40 0 0 40 / 106 5.0s Mutex parallel
[ ] 41 0 0 41 / 106 5.3s Mutex parallel
[ ] 43 0 0 43 / 106 5.4s Mutex parallel
[ ] 45 0 0 45 / 106 5.7s Mutex parallel
[ ] 46 0 0 46 / 106 5.8s Mutex parallel
[ ] 47 0 0 47 / 106 6.1s Mutex parallel
[ ] 48 0 0 48 / 106 6.2s Mutex parallel
[ ] 50 0 0 50 / 106 6.5s Mutex parallel
[ ] 51 0 0 51 / 106 6.6s Mutex parallel
[ ] 52 0 0 52 / 106 6.7s Mutex parallel
[ ] 53 0 0 53 / 106 7.1s Mutex parallel
[ ] 56 0 0 56 / 106 7.3s Mutex parallel
[ ] 58 0 0 58 / 106 7.4s Mutex parallel
[ ] 59 0 0 59 / 106 7.7s Mutex parallel
[ ] 60 0 0 60 / 106 7.9s Mutex parallel
[ ] 61 0 0 61 / 106 8.0s Mutex parallel
[ ] 63 0 0 63 / 106 8.2s Mutex parallel
[ ] 65 0 0 65 / 106 8.4s Mutex parallel
[ ] 66 0 0 66 / 106 8.5s Mutex parallel
[ ] 68 0 0 68 / 106 8.7s Mutex parallel
[ ] 69 0 0 69 / 106 8.8s Mutex parallel
[ ] 70 0 0 70 / 106 9.4s Mutex parallel
[ ] 72 0 0 72 / 106 9.6s Mutex parallel
[ ] 73 0 0 73 / 106 9.7s Mutex parallel
[ ] 74 0 0 74 / 106 9.8s Mutex parallel
[ ] 75 0 0 75 / 106 10.0s Mutex parallel
[ ] 76 0 0 76 / 106 10.2s Mutex parallel
[ ] 77 0 0 77 / 106 10.4s Mutex parallel
[ ] 78 0 0 78 / 106 10.5s Mutex parallel
[ ] 79 0 0 79 / 106 10.7s Mutex parallel
[ ] 81 0 0 81 / 106 10.9s Mutex parallel
[ ] 83 0 0 83 / 106 11.2s Mutex parallel
[ ] 85 0 0 85 / 106 11.4s Mutex parallel
[ ] 87 0 0 87 / 106 11.6s Mutex parallel
[ ] 89 0 0 89 / 106 11.9s Mutex parallel
[ ] 91 0 0 91 / 106 12.0s Mutex parallel
[ ] 93 0 0 93 / 106 12.5s Mutex parallel
[ ] 94 0 0 94 / 106 12.8s Mutex parallel
[ ] 95 0 0 95 / 106 13.0s Mutex parallel
[ ] 97 0 0 97 / 106 13.2s Mutex parallel
[ ] 98 0 0 98 / 106 13.3s Mutex parallel
[ ] 99 0 0 99 / 106 13.7s Mutex parallel
[ ] 100 0 0 100 / 106 13.8s Mutex parallel
[ ] 101 0 0 101 / 106 14.0s Mutex parallel
[ ] 102 0 0 102 / 106 14.1s Mutex parallel
[ ] 104 0 0 104 / 106 14.4s Mutex parallel
[ ] 106 0 0 106 / 106 14.5s Mutex parallel
[✓] 106 0 0 106 / 106 14.5s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 2688771383890394279
generated error fail pass / total time test name
[ ] 0 0 0 0 / 80 0.0s Mutex sequential
[✓] 80 0 0 80 / 80 0.0s Mutex sequential
[ ] 0 0 0 0 / 80 0.0s Mutex parallel
[ ] 4 0 0 4 / 80 0.1s Mutex parallel
[ ] 8 0 0 8 / 80 0.3s Mutex parallel
[ ] 13 0 0 13 / 80 0.5s Mutex parallel
[ ] 17 0 0 17 / 80 0.7s Mutex parallel
[ ] 20 0 0 20 / 80 0.8s Mutex parallel
[ ] 22 0 0 22 / 80 1.0s Mutex parallel
[ ] 23 0 0 23 / 80 1.1s Mutex parallel
[ ] 26 0 0 26 / 80 1.5s Mutex parallel
[ ] 33 0 0 33 / 80 1.6s Mutex parallel
[ ] 35 0 0 35 / 80 1.7s Mutex parallel
[ ] 38 0 0 38 / 80 1.9s Mutex parallel
[ ] 43 0 0 43 / 80 2.0s Mutex parallel
[ ] 46 0 0 46 / 80 2.1s Mutex parallel
[ ] 47 0 0 47 / 80 2.3s Mutex parallel
[ ] 50 0 0 50 / 80 2.6s Mutex parallel
[ ] 55 0 0 55 / 80 2.8s Mutex parallel
[ ] 59 0 0 59 / 80 2.9s Mutex parallel
[ ] 65 0 0 65 / 80 3.3s Mutex parallel
[ ] 66 0 0 66 / 80 3.4s Mutex parallel
[ ] 67 0 0 67 / 80 3.8s Mutex parallel
[ ] 70 0 0 70 / 80 3.9s Mutex parallel
[ ] 76 0 0 76 / 80 4.1s Mutex parallel
[ ] 77 0 0 77 / 80 4.4s Mutex parallel
[ ] 80 0 0 80 / 80 4.6s Mutex parallel
[✓] 80 0 0 80 / 80 4.6s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 2474270833737231330
generated error fail pass / total time test name
[ ] 0 0 0 0 / 74 0.0s Mutex sequential
[✓] 74 0 0 74 / 74 0.0s Mutex sequential
[ ] 0 0 0 0 / 74 0.0s Mutex parallel
[ ] 4 0 0 4 / 74 0.1s Mutex parallel
[ ] 5 0 0 5 / 74 0.3s Mutex parallel
[ ] 6 0 0 6 / 74 0.6s Mutex parallel
[ ] 8 0 0 8 / 74 1.0s Mutex parallel
[ ] 11 0 0 11 / 74 1.1s Mutex parallel
[ ] 14 0 0 14 / 74 1.3s Mutex parallel
[ ] 16 0 0 16 / 74 1.5s Mutex parallel
[ ] 20 0 0 20 / 74 1.7s Mutex parallel
[ ] 21 0 0 21 / 74 2.0s Mutex parallel
[ ] 25 0 0 25 / 74 2.1s Mutex parallel
[ ] 28 0 0 28 / 74 2.5s Mutex parallel
[ ] 31 0 0 31 / 74 2.6s Mutex parallel
[ ] 35 0 0 35 / 74 2.7s Mutex parallel
[ ] 38 0 0 38 / 74 2.8s Mutex parallel
[ ] 39 0 0 39 / 74 3.2s Mutex parallel
[ ] 43 0 0 43 / 74 3.3s Mutex parallel
[ ] 48 0 0 48 / 74 3.4s Mutex parallel
[ ] 54 0 0 54 / 74 3.6s Mutex parallel
[ ] 57 0 0 57 / 74 3.7s Mutex parallel
[ ] 64 0 0 64 / 74 3.8s Mutex parallel
[ ] 69 0 0 69 / 74 4.2s Mutex parallel
[ ] 74 0 0 74 / 74 4.3s Mutex parallel
[✓] 74 0 0 74 / 74 4.3s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 1812912142002144668
generated error fail pass / total time test name
[ ] 0 0 0 0 / 56 0.0s Mutex sequential
[✓] 56 0 0 56 / 56 0.0s Mutex sequential
[ ] 0 0 0 0 / 56 0.0s Mutex parallel
[ ] 2 0 0 2 / 56 0.3s Mutex parallel
[ ] 5 0 0 5 / 56 0.7s Mutex parallel
[ ] 11 0 0 11 / 56 0.8s Mutex parallel
[ ] 13 0 0 13 / 56 0.9s Mutex parallel
[ ] 17 0 0 17 / 56 1.1s Mutex parallel
[ ] 22 0 0 22 / 56 1.5s Mutex parallel
[ ] 27 0 0 27 / 56 1.6s Mutex parallel
[ ] 35 0 0 35 / 56 2.0s Mutex parallel
[ ] 37 0 0 37 / 56 2.3s Mutex parallel
[ ] 42 0 0 42 / 56 2.4s Mutex parallel
[ ] 43 0 0 43 / 56 2.6s Mutex parallel
[ ] 45 0 0 45 / 56 2.8s Mutex parallel
[ ] 51 0 0 51 / 56 2.9s Mutex parallel
[✓] 56 0 0 56 / 56 2.9s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 4261797621874133356
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
[ ] 4 0 0 4 / 39 0.2s Mutex parallel
[ ] 9 0 0 9 / 39 0.3s Mutex parallel
[ ] 14 0 0 14 / 39 0.5s Mutex parallel
[ ] 24 0 0 24 / 39 0.7s Mutex parallel
[ ] 26 0 0 26 / 39 1.1s Mutex parallel
[ ] 27 0 0 27 / 39 1.2s Mutex parallel
[ ] 32 0 0 32 / 39 1.4s Mutex parallel
[ ] 37 0 0 37 / 39 1.6s Mutex parallel
[✓] 39 0 0 39 / 39 1.6s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 449836370568247903
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
[ ] 5 0 0 5 / 32 0.1s Mutex parallel
[ ] 9 0 0 9 / 32 0.2s Mutex parallel
[ ] 12 0 0 12 / 32 0.3s Mutex parallel
[ ] 14 0 0 14 / 32 0.4s Mutex parallel
[ ] 20 0 0 20 / 32 0.5s Mutex parallel
[ ] 21 0 0 21 / 32 0.9s Mutex parallel
[ ] 25 0 0 25 / 32 1.0s Mutex parallel
[ ] 27 0 0 27 / 32 1.1s Mutex parallel
[✓] 32 0 0 32 / 32 1.2s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 1198007647355873825
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
[ ] 6 0 0 6 / 32 0.4s Mutex parallel
[ ] 12 0 0 12 / 32 0.5s Mutex parallel
[ ] 19 0 0 19 / 32 0.9s Mutex parallel
[ ] 22 0 0 22 / 32 1.0s Mutex parallel
[ ] 24 0 0 24 / 32 1.2s Mutex parallel
[✓] 32 0 0 32 / 32 1.2s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 1709378391060439123
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
[ ] 3 0 0 3 / 32 0.0s Mutex parallel
[ ] 9 0 0 9 / 32 0.2s Mutex parallel
[ ] 14 0 0 14 / 32 0.3s Mutex parallel
[ ] 17 0 0 17 / 32 0.6s Mutex parallel
[ ] 25 0 0 25 / 32 0.7s Mutex parallel
[ ] 29 0 0 29 / 32 0.8s Mutex parallel
[✓] 32 0 0 32 / 32 0.9s Mutex parallel
================================================================================
success (ran 2 tests)
random seed: 2509878724339433174
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 0.1s Mutex parallel
[ ] 7 0 0 7 / 32 0.2s Mutex parallel
[ ] 9 0 0 9 / 32 0.5s Mutex parallel
[ ] 11 0 0 11 / 32 0.7s Mutex parallel
[ ] 16 0 0 16 / 32 0.8s Mutex parallel
[ ] 23 0 0 23 / 32 1.0s Mutex parallel
[ ] 26 0 0 26 / 32 1.3s Mutex parallel
[✓] 32 0 0 32 / 32 1.3s Mutex parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_sem.exe)
random seed: 4522936736508642982
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Sem sequential
[ ] 0 0 0 0 / 32 0.0s Sem sequential (generating)
[✓] 32 0 0 32 / 32 0.0s Sem sequential
[ ] 0 0 0 0 / 32 0.0s Sem parallel
[ ] 1 0 0 1 / 32 1.0s Sem parallel
[ ] 2 0 0 2 / 32 2.4s Sem parallel
[ ] 3 0 0 3 / 32 3.0s Sem parallel
[ ] 4 0 0 4 / 32 3.6s Sem parallel
[ ] 5 0 0 5 / 32 4.1s Sem parallel
[ ] 6 0 0 6 / 32 4.6s Sem parallel
[ ] 7 0 0 7 / 32 5.1s Sem parallel
[ ] 8 0 0 8 / 32 5.5s Sem parallel
[ ] 9 0 0 9 / 32 6.0s Sem parallel
[ ] 10 0 0 10 / 32 6.4s Sem parallel
[ ] 11 0 0 11 / 32 6.8s Sem parallel
[ ] 12 0 0 12 / 32 7.3s Sem parallel
[ ] 13 0 0 13 / 32 7.8s Sem parallel
[ ] 14 0 0 14 / 32 8.3s Sem parallel
[ ] 15 0 0 15 / 32 8.8s Sem parallel
[ ] 16 0 0 16 / 32 9.2s Sem parallel
[ ] 17 0 0 17 / 32 9.7s Sem parallel
[ ] 18 0 0 18 / 32 10.2s Sem parallel
[ ] 19 0 0 19 / 32 10.6s Sem parallel
[ ] 20 0 0 20 / 32 11.1s Sem parallel
[ ] 21 0 0 21 / 32 11.5s Sem parallel
[ ] 22 0 0 22 / 32 12.3s Sem parallel
[ ] 23 0 0 23 / 32 12.8s Sem parallel
[ ] 24 0 0 24 / 32 13.0s Sem parallel
[ ] 25 0 0 25 / 32 13.3s Sem parallel
[ ] 26 0 0 26 / 32 13.6s Sem parallel
[ ] 27 0 0 27 / 32 13.9s Sem parallel
[ ] 28 0 0 28 / 32 14.5s Sem parallel
[ ] 29 0 0 29 / 32 15.1s Sem parallel
[ ] 30 0 0 30 / 32 15.2s Sem parallel
[ ] 31 0 0 31 / 32 15.5s Sem parallel
[ ] 32 0 0 32 / 32 15.7s Sem parallel
[✓] 32 0 0 32 / 32 15.7s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 3629246240808086609
generated error fail pass / total time test name
[ ] 0 0 0 0 / 64 0.0s Sem sequential
[✓] 64 0 0 64 / 64 0.0s Sem sequential
[ ] 0 0 0 0 / 64 0.0s Sem parallel
[ ] 1 0 0 1 / 64 0.2s Sem parallel
[ ] 2 0 0 2 / 64 0.4s Sem parallel
[ ] 3 0 0 3 / 64 0.7s Sem parallel
[ ] 4 0 0 4 / 64 0.9s Sem parallel
[ ] 5 0 0 5 / 64 1.1s Sem parallel
[ ] 6 0 0 6 / 64 1.4s Sem parallel
[ ] 7 0 0 7 / 64 1.7s Sem parallel
[ ] 8 0 0 8 / 64 1.9s Sem parallel
[ ] 9 0 0 9 / 64 2.1s Sem parallel
[ ] 10 0 0 10 / 64 2.3s Sem parallel
[ ] 11 0 0 11 / 64 2.6s Sem parallel
[ ] 12 0 0 12 / 64 2.7s Sem parallel
[ ] 13 0 0 13 / 64 2.9s Sem parallel
[ ] 14 0 0 14 / 64 3.2s Sem parallel
[ ] 15 0 0 15 / 64 3.8s Sem parallel
[ ] 16 0 0 16 / 64 4.2s Sem parallel
[ ] 17 0 0 17 / 64 4.3s Sem parallel
[ ] 18 0 0 18 / 64 4.5s Sem parallel
[ ] 19 0 0 19 / 64 4.7s Sem parallel
[ ] 20 0 0 20 / 64 4.9s Sem parallel
[ ] 21 0 0 21 / 64 5.2s Sem parallel
[ ] 22 0 0 22 / 64 5.4s Sem parallel
[ ] 23 0 0 23 / 64 5.6s Sem parallel
[ ] 24 0 0 24 / 64 5.8s Sem parallel
[ ] 25 0 0 25 / 64 6.0s Sem parallel
[ ] 26 0 0 26 / 64 6.2s Sem parallel
[ ] 27 0 0 27 / 64 6.7s Sem parallel
[ ] 28 0 0 28 / 64 6.9s Sem parallel
[ ] 29 0 0 29 / 64 7.1s Sem parallel
[ ] 30 0 0 30 / 64 7.6s Sem parallel
[ ] 32 0 0 32 / 64 7.8s Sem parallel
[ ] 33 0 0 33 / 64 8.0s Sem parallel
[ ] 34 0 0 34 / 64 8.1s Sem parallel
[ ] 35 0 0 35 / 64 8.3s Sem parallel
[ ] 36 0 0 36 / 64 8.4s Sem parallel
[ ] 37 0 0 37 / 64 8.6s Sem parallel
[ ] 38 0 0 38 / 64 8.7s Sem parallel
[ ] 39 0 0 39 / 64 9.3s Sem parallel
[ ] 40 0 0 40 / 64 9.4s Sem parallel
[ ] 41 0 0 41 / 64 9.5s Sem parallel
[ ] 42 0 0 42 / 64 9.7s Sem parallel
[ ] 44 0 0 44 / 64 10.0s Sem parallel
[ ] 45 0 0 45 / 64 10.2s Sem parallel
[ ] 46 0 0 46 / 64 10.4s Sem parallel
[ ] 47 0 0 47 / 64 10.5s Sem parallel
[ ] 48 0 0 48 / 64 11.1s Sem parallel
[ ] 49 0 0 49 / 64 11.3s Sem parallel
[ ] 50 0 0 50 / 64 11.7s Sem parallel
[ ] 51 0 0 51 / 64 11.8s Sem parallel
[ ] 52 0 0 52 / 64 12.0s Sem parallel
[ ] 53 0 0 53 / 64 12.1s Sem parallel
[ ] 55 0 0 55 / 64 12.2s Sem parallel
[ ] 56 0 0 56 / 64 12.5s Sem parallel
[ ] 57 0 0 57 / 64 12.7s Sem parallel
[ ] 59 0 0 59 / 64 12.8s Sem parallel
[ ] 60 0 0 60 / 64 12.9s Sem parallel
[ ] 61 0 0 61 / 64 13.1s Sem parallel
[ ] 62 0 0 62 / 64 13.4s Sem parallel
[ ] 64 0 0 64 / 64 13.5s Sem parallel
[✓] 64 0 0 64 / 64 13.5s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 4476492904554555281
generated error fail pass / total time test name
[ ] 0 0 0 0 / 101 0.0s Sem sequential
[✓] 101 0 0 101 / 101 0.0s Sem sequential
[ ] 0 0 0 0 / 101 0.0s Sem parallel
[ ] 3 0 0 3 / 101 0.2s Sem parallel
[ ] 4 0 0 4 / 101 0.5s Sem parallel
[ ] 5 0 0 5 / 101 0.6s Sem parallel
[ ] 7 0 0 7 / 101 0.8s Sem parallel
[ ] 8 0 0 8 / 101 0.9s Sem parallel
[ ] 9 0 0 9 / 101 1.0s Sem parallel
[ ] 10 0 0 10 / 101 1.2s Sem parallel
[ ] 12 0 0 12 / 101 1.5s Sem parallel
[ ] 13 0 0 13 / 101 1.7s Sem parallel
[ ] 14 0 0 14 / 101 1.8s Sem parallel
[ ] 16 0 0 16 / 101 2.0s Sem parallel
[ ] 18 0 0 18 / 101 2.2s Sem parallel
[ ] 19 0 0 19 / 101 2.3s Sem parallel
[ ] 20 0 0 20 / 101 2.7s Sem parallel
[ ] 21 0 0 21 / 101 2.9s Sem parallel
[ ] 22 0 0 22 / 101 3.1s Sem parallel
[ ] 23 0 0 23 / 101 3.2s Sem parallel
[ ] 24 0 0 24 / 101 3.4s Sem parallel
[ ] 25 0 0 25 / 101 3.6s Sem parallel
[ ] 26 0 0 26 / 101 3.8s Sem parallel
[ ] 28 0 0 28 / 101 3.9s Sem parallel
[ ] 30 0 0 30 / 101 4.3s Sem parallel
[ ] 31 0 0 31 / 101 4.4s Sem parallel
[ ] 32 0 0 32 / 101 4.6s Sem parallel
[ ] 34 0 0 34 / 101 4.8s Sem parallel
[ ] 35 0 0 35 / 101 5.4s Sem parallel
[ ] 36 0 0 36 / 101 5.5s Sem parallel
[ ] 38 0 0 38 / 101 5.8s Sem parallel
[ ] 39 0 0 39 / 101 6.0s Sem parallel
[ ] 40 0 0 40 / 101 6.1s Sem parallel
[ ] 41 0 0 41 / 101 6.2s Sem parallel
[ ] 43 0 0 43 / 101 6.4s Sem parallel
[ ] 45 0 0 45 / 101 6.5s Sem parallel
[ ] 46 0 0 46 / 101 6.7s Sem parallel
[ ] 47 0 0 47 / 101 6.8s Sem parallel
[ ] 48 0 0 48 / 101 7.0s Sem parallel
[ ] 49 0 0 49 / 101 7.4s Sem parallel
[ ] 51 0 0 51 / 101 7.5s Sem parallel
[ ] 53 0 0 53 / 101 7.9s Sem parallel
[ ] 54 0 0 54 / 101 8.4s Sem parallel
[ ] 55 0 0 55 / 101 8.6s Sem parallel
[ ] 56 0 0 56 / 101 8.7s Sem parallel
[ ] 58 0 0 58 / 101 8.9s Sem parallel
[ ] 59 0 0 59 / 101 9.1s Sem parallel
[ ] 60 0 0 60 / 101 9.6s Sem parallel
[ ] 61 0 0 61 / 101 9.8s Sem parallel
[ ] 62 0 0 62 / 101 10.0s Sem parallel
[ ] 64 0 0 64 / 101 10.2s Sem parallel
[ ] 65 0 0 65 / 101 10.3s Sem parallel
[ ] 67 0 0 67 / 101 10.6s Sem parallel
[ ] 68 0 0 68 / 101 10.8s Sem parallel
[ ] 71 0 0 71 / 101 10.9s Sem parallel
[ ] 73 0 0 73 / 101 11.0s Sem parallel
[ ] 75 0 0 75 / 101 11.2s Sem parallel
[ ] 76 0 0 76 / 101 11.3s Sem parallel
[ ] 78 0 0 78 / 101 11.9s Sem parallel
[ ] 79 0 0 79 / 101 12.0s Sem parallel
[ ] 80 0 0 80 / 101 12.3s Sem parallel
[ ] 81 0 0 81 / 101 12.4s Sem parallel
[ ] 84 0 0 84 / 101 12.5s Sem parallel
[ ] 85 0 0 85 / 101 12.7s Sem parallel
[ ] 87 0 0 87 / 101 12.8s Sem parallel
[ ] 89 0 0 89 / 101 13.0s Sem parallel
[ ] 92 0 0 92 / 101 13.1s Sem parallel
[ ] 95 0 0 95 / 101 13.3s Sem parallel
[ ] 98 0 0 98 / 101 13.5s Sem parallel
[✓] 101 0 0 101 / 101 13.5s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 3779092058574320593
generated error fail pass / total time test name
[ ] 0 0 0 0 / 79 0.0s Sem sequential
[✓] 79 0 0 79 / 79 0.0s Sem sequential
[ ] 0 0 0 0 / 79 0.0s Sem parallel
[ ] 2 0 0 2 / 79 0.1s Sem parallel
[ ] 5 0 0 5 / 79 0.2s Sem parallel
[ ] 10 0 0 10 / 79 0.5s Sem parallel
[ ] 14 0 0 14 / 79 0.6s Sem parallel
[ ] 17 0 0 17 / 79 0.7s Sem parallel
[ ] 19 0 0 19 / 79 0.8s Sem parallel
[ ] 22 0 0 22 / 79 0.9s Sem parallel
[ ] 27 0 0 27 / 79 1.0s Sem parallel
[ ] 30 0 0 30 / 79 1.1s Sem parallel
[ ] 32 0 0 32 / 79 1.2s Sem parallel
[ ] 36 0 0 36 / 79 1.4s Sem parallel
[ ] 37 0 0 37 / 79 1.5s Sem parallel
[ ] 42 0 0 42 / 79 1.6s Sem parallel
[ ] 43 0 0 43 / 79 1.8s Sem parallel
[ ] 46 0 0 46 / 79 1.9s Sem parallel
[ ] 49 0 0 49 / 79 2.0s Sem parallel
[ ] 53 0 0 53 / 79 2.1s Sem parallel
[ ] 59 0 0 59 / 79 2.2s Sem parallel
[ ] 62 0 0 62 / 79 2.3s Sem parallel
[ ] 65 0 0 65 / 79 2.6s Sem parallel
[ ] 69 0 0 69 / 79 2.7s Sem parallel
[ ] 71 0 0 71 / 79 2.8s Sem parallel
[ ] 73 0 0 73 / 79 3.0s Sem parallel
[ ] 76 0 0 76 / 79 3.1s Sem parallel
[ ] 79 0 0 79 / 79 3.2s Sem parallel
[✓] 79 0 0 79 / 79 3.2s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 510489885884947719
generated error fail pass / total time test name
[ ] 0 0 0 0 / 84 0.0s Sem sequential
[✓] 84 0 0 84 / 84 0.0s Sem sequential
[ ] 0 0 0 0 / 84 0.0s Sem parallel
[ ] 1 0 0 1 / 84 0.2s Sem parallel
[ ] 2 0 0 2 / 84 0.3s Sem parallel
[ ] 5 0 0 5 / 84 0.5s Sem parallel
[ ] 8 0 0 8 / 84 0.8s Sem parallel
[ ] 14 0 0 14 / 84 1.0s Sem parallel
[ ] 16 0 0 16 / 84 1.2s Sem parallel
[ ] 19 0 0 19 / 84 1.3s Sem parallel
[ ] 22 0 0 22 / 84 1.5s Sem parallel
[ ] 24 0 0 24 / 84 1.6s Sem parallel
[ ] 26 0 0 26 / 84 1.8s Sem parallel
[ ] 31 0 0 31 / 84 1.9s Sem parallel
[ ] 37 0 0 37 / 84 2.1s Sem parallel
[ ] 44 0 0 44 / 84 2.2s Sem parallel
[ ] 47 0 0 47 / 84 2.3s Sem parallel
[ ] 49 0 0 49 / 84 2.5s Sem parallel
[ ] 54 0 0 54 / 84 2.6s Sem parallel
[ ] 58 0 0 58 / 84 2.7s Sem parallel
[ ] 60 0 0 60 / 84 2.8s Sem parallel
[ ] 65 0 0 65 / 84 3.0s Sem parallel
[ ] 69 0 0 69 / 84 3.3s Sem parallel
[ ] 72 0 0 72 / 84 3.5s Sem parallel
[ ] 74 0 0 74 / 84 3.6s Sem parallel
[ ] 77 0 0 77 / 84 3.8s Sem parallel
[ ] 81 0 0 81 / 84 3.9s Sem parallel
[ ] 84 0 0 84 / 84 4.1s Sem parallel
[✓] 84 0 0 84 / 84 4.1s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 176550396059772387
generated error fail pass / total time test name
[ ] 0 0 0 0 / 70 0.0s Sem sequential
[✓] 70 0 0 70 / 70 0.0s Sem sequential
[ ] 0 0 0 0 / 70 0.0s Sem parallel
[ ] 4 0 0 4 / 70 0.2s Sem parallel
[ ] 7 0 0 7 / 70 0.4s Sem parallel
[ ] 12 0 0 12 / 70 0.5s Sem parallel
[ ] 15 0 0 15 / 70 0.8s Sem parallel
[ ] 21 0 0 21 / 70 0.9s Sem parallel
[ ] 29 0 0 29 / 70 1.2s Sem parallel
[ ] 37 0 0 37 / 70 1.3s Sem parallel
[ ] 38 0 0 38 / 70 1.4s Sem parallel
[ ] 43 0 0 43 / 70 1.5s Sem parallel
[ ] 47 0 0 47 / 70 1.6s Sem parallel
[ ] 49 0 0 49 / 70 1.7s Sem parallel
[ ] 55 0 0 55 / 70 1.9s Sem parallel
[ ] 57 0 0 57 / 70 2.0s Sem parallel
[ ] 59 0 0 59 / 70 2.3s Sem parallel
[ ] 63 0 0 63 / 70 2.8s Sem parallel
[ ] 64 0 0 64 / 70 2.9s Sem parallel
[ ] 66 0 0 66 / 70 3.1s Sem parallel
[✓] 70 0 0 70 / 70 3.2s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 3058681541699053055
generated error fail pass / total time test name
[ ] 0 0 0 0 / 54 0.0s Sem sequential
[✓] 54 0 0 54 / 54 0.0s Sem sequential
[ ] 0 0 0 0 / 54 0.0s Sem parallel
[ ] 2 0 0 2 / 54 0.0s Sem parallel
[ ] 14 0 0 14 / 54 0.1s Sem parallel
[ ] 21 0 0 21 / 54 0.2s Sem parallel
[ ] 24 0 0 24 / 54 0.6s Sem parallel
[ ] 28 0 0 28 / 54 0.7s Sem parallel
[ ] 37 0 0 37 / 54 0.8s Sem parallel
[ ] 47 0 0 47 / 54 0.9s Sem parallel
[ ] 48 0 0 48 / 54 1.2s Sem parallel
[ ] 51 0 0 51 / 54 1.6s Sem parallel
[✓] 54 0 0 54 / 54 1.6s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 2574407552872505768
generated error fail pass / total time test name
[ ] 0 0 0 0 / 44 0.0s Sem sequential
[✓] 44 0 0 44 / 44 0.0s Sem sequential
[ ] 0 0 0 0 / 44 0.0s Sem parallel
[ ] 3 0 0 3 / 44 0.1s Sem parallel
[ ] 4 0 0 4 / 44 0.4s Sem parallel
[ ] 5 0 0 5 / 44 0.5s Sem parallel
[ ] 7 0 0 7 / 44 0.6s Sem parallel
[ ] 12 0 0 12 / 44 0.8s Sem parallel
[ ] 14 0 0 14 / 44 0.9s Sem parallel
[ ] 22 0 0 22 / 44 1.1s Sem parallel
[ ] 25 0 0 25 / 44 1.3s Sem parallel
[ ] 29 0 0 29 / 44 1.7s Sem parallel
[ ] 31 0 0 31 / 44 1.8s Sem parallel
[ ] 36 0 0 36 / 44 2.0s Sem parallel
[✓] 44 0 0 44 / 44 2.1s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 2601960414837051860
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.0s Sem parallel
[ ] 4 0 0 4 / 32 0.2s Sem parallel
[ ] 14 0 0 14 / 32 0.3s Sem parallel
[ ] 19 0 0 19 / 32 0.5s Sem parallel
[ ] 22 0 0 22 / 32 0.6s Sem parallel
[ ] 24 0 0 24 / 32 0.7s Sem parallel
[ ] 29 0 0 29 / 32 1.0s Sem parallel
[ ] 32 0 0 32 / 32 1.2s Sem parallel
[✓] 32 0 0 32 / 32 1.2s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 3233331952519784869
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
[ ] 6 0 0 6 / 32 0.2s Sem parallel
[ ] 13 0 0 13 / 32 0.3s Sem parallel
[ ] 14 0 0 14 / 32 0.5s Sem parallel
[ ] 17 0 0 17 / 32 0.6s Sem parallel
[ ] 21 0 0 21 / 32 0.8s Sem parallel
[ ] 27 0 0 27 / 32 0.9s Sem parallel
[ ] 29 0 0 29 / 32 1.2s Sem parallel
[✓] 32 0 0 32 / 32 1.3s Sem parallel
================================================================================
success (ran 2 tests)
random seed: 552781023928834890
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Sem sequential
[✓] 32 0 0 32 / 32 0.0s Sem sequential
[ ] 0 0 0 0 / 32 0.0s Sem parallel
[ ] 2 0 0 2 / 32 0.1s Sem parallel
[ ] 11 0 0 11 / 32 0.2s Sem parallel
[ ] 14 0 0 14 / 32 0.5s Sem parallel
[ ] 17 0 0 17 / 32 0.7s Sem parallel
[ ] 21 0 0 21 / 32 0.8s Sem parallel
[ ] 22 0 0 22 / 32 1.1s Sem parallel
[ ] 25 0 0 25 / 32 1.4s Sem parallel
[✓] 32 0 0 32 / 32 1.4s Sem parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_mpscq.exe)
random seed: 3252984506816897130
generated error fail pass / total time test name
[ ] 0 0 0 0 / 32 0.0s Mpscq sequential
[ ] 0 0 0 0 / 32 0.0s Mpscq sequential (generating)
[✓] 32 0 0 32 / 32 0.0s Mpscq sequential
[ ] 0 0 0 0 / 32 0.0s Mpscq parallel
[ ] 1 0 0 1 / 32 1.3s Mpscq parallel
[ ] 2 0 0 2 / 32 2.5s Mpscq parallel
[ ] 3 0 0 3 / 32 4.1s Mpscq parallel
[ ] 4 0 0 4 / 32 5.1s Mpscq parallel
[ ] 5 0 0 5 / 32 5.9s Mpscq parallel
[ ] 6 0 0 6 / 32 6.5s Mpscq parallel
[ ] 7 0 0 7 / 32 7.2s Mpscq parallel
[ ] 8 0 0 8 / 32 8.0s Mpscq parallel
[ ] 9 0 0 9 / 32 8.9s Mpscq parallel
[ ] 10 0 0 10 / 32 9.6s Mpscq parallel
[ ] 11 0 0 11 / 32 10.5s Mpscq parallel
[ ] 12 0 0 12 / 32 11.4s Mpscq parallel
[ ] 13 0 0 13 / 32 12.3s Mpscq parallel
[ ] 14 0 0 14 / 32 12.9s Mpscq parallel
[ ] 15 0 0 15 / 32 13.2s Mpscq parallel
[ ] 16 0 0 16 / 32 13.7s Mpscq parallel
[ ] 17 0 0 17 / 32 14.3s Mpscq parallel
[ ] 18 0 0 18 / 32 14.7s Mpscq parallel
[ ] 19 0 0 19 / 32 15.1s Mpscq parallel
[ ] 20 0 0 20 / 32 15.5s Mpscq parallel
[ ] 21 0 0 21 / 32 16.0s Mpscq parallel
[ ] 22 0 0 22 / 32 16.2s Mpscq parallel
[ ] 23 0 0 23 / 32 16.5s Mpscq parallel
[ ] 24 0 0 24 / 32 16.8s Mpscq parallel
[ ] 25 0 0 25 / 32 17.1s Mpscq parallel
[ ] 26 0 0 26 / 32 17.3s Mpscq parallel
[ ] 27 0 0 27 / 32 18.0s Mpscq parallel
[ ] 28 0 0 28 / 32 18.4s Mpscq parallel
[ ] 29 0 0 29 / 32 18.6s Mpscq parallel
[ ] 30 0 0 30 / 32 19.0s Mpscq parallel
[ ] 31 0 0 31 / 32 19.4s Mpscq parallel
[ ] 32 0 0 32 / 32 19.7s Mpscq parallel
[✓] 32 0 0 32 / 32 19.7s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 4231170893324286927
generated error fail pass / total time test name
[ ] 0 0 0 0 / 64 0.0s Mpscq sequential
[✓] 64 0 0 64 / 64 0.0s Mpscq sequential
[ ] 0 0 0 0 / 64 0.0s Mpscq parallel
[ ] 1 0 0 1 / 64 0.3s Mpscq parallel
[ ] 2 0 0 2 / 64 0.5s Mpscq parallel
[ ] 3 0 0 3 / 64 0.8s Mpscq parallel
[ ] 4 0 0 4 / 64 1.0s Mpscq parallel
[ ] 5 0 0 5 / 64 1.3s Mpscq parallel
[ ] 6 0 0 6 / 64 2.1s Mpscq parallel
[ ] 7 0 0 7 / 64 2.3s Mpscq parallel
[ ] 8 0 0 8 / 64 2.6s Mpscq parallel
[ ] 9 0 0 9 / 64 2.9s Mpscq parallel
[ ] 10 0 0 10 / 64 3.4s Mpscq parallel
[ ] 11 0 0 11 / 64 3.8s Mpscq parallel
[ ] 12 0 0 12 / 64 4.0s Mpscq parallel
[ ] 13 0 0 13 / 64 4.3s Mpscq parallel
[ ] 14 0 0 14 / 64 4.5s Mpscq parallel
[ ] 16 0 0 16 / 64 4.9s Mpscq parallel
[ ] 17 0 0 17 / 64 5.2s Mpscq parallel
[ ] 18 0 0 18 / 64 5.4s Mpscq parallel
[ ] 19 0 0 19 / 64 5.6s Mpscq parallel
[ ] 20 0 0 20 / 64 5.8s Mpscq parallel
[ ] 21 0 0 21 / 64 6.1s Mpscq parallel
[ ] 22 0 0 22 / 64 6.4s Mpscq parallel
[ ] 23 0 0 23 / 64 6.6s Mpscq parallel
[ ] 24 0 0 24 / 64 7.3s Mpscq parallel
[ ] 25 0 0 25 / 64 7.7s Mpscq parallel
[ ] 26 0 0 26 / 64 7.9s Mpscq parallel
[ ] 27 0 0 27 / 64 8.1s Mpscq parallel
[ ] 28 0 0 28 / 64 8.2s Mpscq parallel
[ ] 29 0 0 29 / 64 8.7s Mpscq parallel
[ ] 30 0 0 30 / 64 8.9s Mpscq parallel
[ ] 31 0 0 31 / 64 9.1s Mpscq parallel
[ ] 33 0 0 33 / 64 9.3s Mpscq parallel
[ ] 34 0 0 34 / 64 9.4s Mpscq parallel
[ ] 36 0 0 36 / 64 9.7s Mpscq parallel
[ ] 37 0 0 37 / 64 10.3s Mpscq parallel
[ ] 38 0 0 38 / 64 10.4s Mpscq parallel
[ ] 39 0 0 39 / 64 10.6s Mpscq parallel
[ ] 40 0 0 40 / 64 10.8s Mpscq parallel
[ ] 41 0 0 41 / 64 10.9s Mpscq parallel
[ ] 43 0 0 43 / 64 11.0s Mpscq parallel
[ ] 44 0 0 44 / 64 11.4s Mpscq parallel
[ ] 45 0 0 45 / 64 11.6s Mpscq parallel
[ ] 46 0 0 46 / 64 13.0s Mpscq parallel
[ ] 47 0 0 47 / 64 13.2s Mpscq parallel
[ ] 48 0 0 48 / 64 13.4s Mpscq parallel
[ ] 49 0 0 49 / 64 13.6s Mpscq parallel
[ ] 50 0 0 50 / 64 13.9s Mpscq parallel
[ ] 51 0 0 51 / 64 14.0s Mpscq parallel
[ ] 52 0 0 52 / 64 14.3s Mpscq parallel
[ ] 53 0 0 53 / 64 14.4s Mpscq parallel
[ ] 55 0 0 55 / 64 14.7s Mpscq parallel
[ ] 56 0 0 56 / 64 15.0s Mpscq parallel
[ ] 57 0 0 57 / 64 15.2s Mpscq parallel
[ ] 58 0 0 58 / 64 15.5s Mpscq parallel
[ ] 59 0 0 59 / 64 15.6s Mpscq parallel
[ ] 60 0 0 60 / 64 15.8s Mpscq parallel
[ ] 61 0 0 61 / 64 16.7s Mpscq parallel
[ ] 62 0 0 62 / 64 16.9s Mpscq parallel
[ ] 63 0 0 63 / 64 17.1s Mpscq parallel
[ ] 64 0 0 64 / 64 17.3s Mpscq parallel
[✓] 64 0 0 64 / 64 17.3s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 622763932723546556
generated error fail pass / total time test name
[ ] 0 0 0 0 / 59 0.0s Mpscq sequential
[✓] 59 0 0 59 / 59 0.0s Mpscq sequential
[ ] 0 0 0 0 / 59 0.0s Mpscq parallel
[ ] 2 0 0 2 / 59 0.1s Mpscq parallel
[ ] 3 0 0 3 / 59 0.3s Mpscq parallel
[ ] 5 0 0 5 / 59 0.7s Mpscq parallel
[ ] 6 0 0 6 / 59 0.9s Mpscq parallel
[ ] 7 0 0 7 / 59 1.2s Mpscq parallel
[ ] 8 0 0 8 / 59 1.3s Mpscq parallel
[ ] 9 0 0 9 / 59 1.6s Mpscq parallel
[ ] 10 0 0 10 / 59 1.8s Mpscq parallel
[ ] 11 0 0 11 / 59 2.1s Mpscq parallel
[ ] 12 0 0 12 / 59 2.2s Mpscq parallel
[ ] 13 0 0 13 / 59 2.3s Mpscq parallel
[ ] 14 0 0 14 / 59 2.5s Mpscq parallel
[ ] 15 0 0 15 / 59 2.7s Mpscq parallel
[ ] 17 0 0 17 / 59 2.8s Mpscq parallel
[ ] 18 0 0 18 / 59 3.2s Mpscq parallel
[ ] 19 0 0 19 / 59 3.4s Mpscq parallel
[ ] 20 0 0 20 / 59 3.5s Mpscq parallel
[ ] 21 0 0 21 / 59 3.7s Mpscq parallel
[ ] 22 0 0 22 / 59 3.9s Mpscq parallel
[ ] 23 0 0 23 / 59 4.0s Mpscq parallel
[ ] 24 0 0 24 / 59 4.1s Mpscq parallel
[ ] 25 0 0 25 / 59 4.6s Mpscq parallel
[ ] 26 0 0 26 / 59 4.8s Mpscq parallel
[ ] 28 0 0 28 / 59 4.9s Mpscq parallel
[ ] 31 0 0 31 / 59 5.2s Mpscq parallel
[ ] 33 0 0 33 / 59 5.5s Mpscq parallel
[ ] 35 0 0 35 / 59 5.6s Mpscq parallel
[ ] 37 0 0 37 / 59 5.8s Mpscq parallel
[ ] 39 0 0 39 / 59 6.0s Mpscq parallel
[ ] 42 0 0 42 / 59 6.1s Mpscq parallel
[ ] 45 0 0 45 / 59 6.2s Mpscq parallel
[ ] 49 0 0 49 / 59 6.3s Mpscq parallel
[ ] 50 0 0 50 / 59 6.4s Mpscq parallel
[ ] 51 0 0 51 / 59 7.0s Mpscq parallel
[ ] 52 0 0 52 / 59 7.1s Mpscq parallel
[ ] 56 0 0 56 / 59 7.2s Mpscq parallel
[ ] 59 0 0 59 / 59 7.4s Mpscq parallel
[✓] 59 0 0 59 / 59 7.4s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 3157152498065545174
generated error fail pass / total time test name
[ ] 0 0 0 0 / 54 0.0s Mpscq sequential
[✓] 54 0 0 54 / 54 0.0s Mpscq sequential
[ ] 0 0 0 0 / 54 0.0s Mpscq parallel
[ ] 1 0 0 1 / 54 0.1s Mpscq parallel
[ ] 3 0 0 3 / 54 0.2s Mpscq parallel
[ ] 5 0 0 5 / 54 0.6s Mpscq parallel
[ ] 9 0 0 9 / 54 0.7s Mpscq parallel
[ ] 12 0 0 12 / 54 0.8s Mpscq parallel
[ ] 16 0 0 16 / 54 1.0s Mpscq parallel
[ ] 18 0 0 18 / 54 1.1s Mpscq parallel
[ ] 22 0 0 22 / 54 1.2s Mpscq parallel
[ ] 25 0 0 25 / 54 1.4s Mpscq parallel
[ ] 26 0 0 26 / 54 1.7s Mpscq parallel
[ ] 29 0 0 29 / 54 1.8s Mpscq parallel
[ ] 34 0 0 34 / 54 1.9s Mpscq parallel
[ ] 36 0 0 36 / 54 2.0s Mpscq parallel
[ ] 41 0 0 41 / 54 2.2s Mpscq parallel
[ ] 44 0 0 44 / 54 2.3s Mpscq parallel
[ ] 49 0 0 49 / 54 2.4s Mpscq parallel
[ ] 51 0 0 51 / 54 2.6s Mpscq parallel
[ ] 54 0 0 54 / 54 2.7s Mpscq parallel
[✓] 54 0 0 54 / 54 2.7s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 2181567354539201355
generated error fail pass / total time test name
[ ] 0 0 0 0 / 57 0.0s Mpscq sequential
[✓] 57 0 0 57 / 57 0.0s Mpscq sequential
[ ] 0 0 0 0 / 57 0.0s Mpscq parallel
[ ] 4 0 0 4 / 57 0.1s Mpscq parallel
[ ] 7 0 0 7 / 57 0.4s Mpscq parallel
[ ] 11 0 0 11 / 57 0.5s Mpscq parallel
[ ] 14 0 0 14 / 57 0.7s Mpscq parallel
[ ] 17 0 0 17 / 57 0.9s Mpscq parallel
[ ] 20 0 0 20 / 57 1.0s Mpscq parallel
[ ] 22 0 0 22 / 57 1.3s Mpscq parallel
[ ] 24 0 0 24 / 57 1.5s Mpscq parallel
[ ] 27 0 0 27 / 57 1.8s Mpscq parallel
[ ] 32 0 0 32 / 57 1.9s Mpscq parallel
[ ] 37 0 0 37 / 57 2.0s Mpscq parallel
[ ] 39 0 0 39 / 57 2.1s Mpscq parallel
[ ] 42 0 0 42 / 57 2.3s Mpscq parallel
[ ] 46 0 0 46 / 57 2.4s Mpscq parallel
[ ] 47 0 0 47 / 57 2.5s Mpscq parallel
[ ] 48 0 0 48 / 57 2.6s Mpscq parallel
[ ] 50 0 0 50 / 57 2.9s Mpscq parallel
[ ] 54 0 0 54 / 57 3.0s Mpscq parallel
[✓] 57 0 0 57 / 57 3.1s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 1506064251906905753
generated error fail pass / total time test name
[ ] 0 0 0 0 / 52 0.0s Mpscq sequential
[✓] 52 0 0 52 / 52 0.0s Mpscq sequential
[ ] 0 0 0 0 / 52 0.0s Mpscq parallel
[ ] 1 0 0 1 / 52 0.0s Mpscq parallel
[ ] 5 0 0 5 / 52 0.2s Mpscq parallel
[ ] 8 0 0 8 / 52 0.3s Mpscq parallel
[ ] 10 0 0 10 / 52 0.8s Mpscq parallel
[ ] 14 0 0 14 / 52 0.9s Mpscq parallel
[ ] 16 0 0 16 / 52 1.0s Mpscq parallel
[ ] 17 0 0 17 / 52 1.4s Mpscq parallel
[ ] 21 0 0 21 / 52 1.5s Mpscq parallel
[ ] 24 0 0 24 / 52 1.8s Mpscq parallel
[ ] 29 0 0 29 / 52 1.9s Mpscq parallel
[ ] 30 0 0 30 / 52 2.0s Mpscq parallel
[ ] 35 0 0 35 / 52 2.3s Mpscq parallel
[ ] 38 0 0 38 / 52 2.5s Mpscq parallel
[ ] 40 0 0 40 / 52 2.6s Mpscq parallel
[ ] 42 0 0 42 / 52 2.8s Mpscq parallel
[ ] 45 0 0 45 / 52 2.9s Mpscq parallel
[ ] 47 0 0 47 / 52 3.0s Mpscq parallel
[ ] 52 0 0 52 / 52 3.2s Mpscq parallel
[✓] 52 0 0 52 / 52 3.2s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 4044416027669238785
generated error fail pass / total time test name
[ ] 0 0 0 0 / 39 0.0s Mpscq sequential
[✓] 39 0 0 39 / 39 0.0s Mpscq sequential
[ ] 0 0 0 0 / 39 0.0s Mpscq parallel
[ ] 2 0 0 2 / 39 0.1s Mpscq parallel
[ ] 4 0 0 4 / 39 0.3s Mpscq parallel
[ ] 8 0 0 8 / 39 0.6s Mpscq parallel
[ ] 14 0 0 14 / 39 0.7s Mpscq parallel
[ ] 20 0 0 20 / 39 1.1s Mpscq parallel
[ ] 23 0 0 23 / 39 1.2s Mpscq parallel
[ ] 26 0 0 26 / 39 1.5s Mpscq parallel
[ ] 31 0 0 31 / 39 1.7s Mpscq parallel
[ ] 32 0 0 32 / 39 2.0s Mpscq parallel
[✓] 39 0 0 39 / 39 2.1s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 1003985381752466514
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.1s Mpscq parallel
[ ] 2 0 0 2 / 32 0.8s Mpscq parallel
[ ] 4 0 0 4 / 32 0.9s Mpscq parallel
[ ] 7 0 0 7 / 32 1.0s Mpscq parallel
[ ] 10 0 0 10 / 32 1.1s Mpscq parallel
[ ] 13 0 0 13 / 32 1.3s Mpscq parallel
[ ] 14 0 0 14 / 32 1.7s Mpscq parallel
[ ] 19 0 0 19 / 32 2.0s Mpscq parallel
[ ] 27 0 0 27 / 32 2.3s Mpscq parallel
[ ] 32 0 0 32 / 32 2.7s Mpscq parallel
[✓] 32 0 0 32 / 32 2.7s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 2338316092693061553
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
[ ] 5 0 0 5 / 32 0.1s Mpscq parallel
[ ] 9 0 0 9 / 32 0.2s Mpscq parallel
[ ] 13 0 0 13 / 32 0.5s Mpscq parallel
[ ] 15 0 0 15 / 32 0.6s Mpscq parallel
[ ] 19 0 0 19 / 32 0.7s Mpscq parallel
[ ] 24 0 0 24 / 32 0.9s Mpscq parallel
[ ] 31 0 0 31 / 32 1.0s Mpscq parallel
[✓] 32 0 0 32 / 32 1.0s Mpscq parallel
================================================================================
success (ran 2 tests)
random seed: 3674237259274904024
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
[ ] 7 0 0 7 / 32 0.7s Mpscq parallel
[ ] 12 0 0 12 / 32 0.9s Mpscq parallel
[ ] 14 0 0 14 / 32 1.0s Mpscq parallel
[ ] 16 0 0 16 / 32 1.4s Mpscq parallel
[ ] 19 0 0 19 / 32 1.6s Mpscq parallel
[ ] 29 0 0 29 / 32 1.8s Mpscq parallel
[ ] 31 0 0 31 / 32 2.1s Mpscq parallel
[✓] 32 0 0 32 / 32 2.1s Mpscq parallel
================================================================================
success (ran 2 tests)
(cd _build/default/bench && ./main.exe -brief 'Hashtbl with Picos_std_sync')
Hashtbl with Picos_std_sync:
operations over time/1 worker, 10% reads with Lock:
6.88 M/s
operations over time/1 worker, 10% reads with Rwlock:
9.34 M/s
operations over time/1 worker, 10% reads with Sem:
9.74 M/s
operations over time/1 worker, 100% reads with Lock:
10.34 M/s
operations over time/1 worker, 100% reads with Rwlock:
9.85 M/s
operations over time/1 worker, 100% reads with Sem:
9.99 M/s
operations over time/1 worker, 50% reads with Lock:
6.34 M/s
operations over time/1 worker, 50% reads with Rwlock:
9.97 M/s
operations over time/1 worker, 50% reads with Sem:
9.45 M/s
operations over time/1 worker, 90% reads with Lock:
10.51 M/s
operations over time/1 worker, 90% reads with Rwlock:
10.03 M/s
operations over time/1 worker, 90% reads with Sem:
10.50 M/s
operations over time/1 worker, 95% reads with Lock:
10.31 M/s
operations over time/1 worker, 95% reads with Rwlock:
10.09 M/s
operations over time/1 worker, 95% reads with Sem:
9.79 M/s
operations over time/2 workers, 10% reads with Lock:
1.79 M/s
operations over time/2 workers, 10% reads with Rwlock:
3.43 M/s
operations over time/2 workers, 10% reads with Sem:
3.18 M/s
operations over time/2 workers, 100% reads with Lock:
4.18 M/s
operations over time/2 workers, 100% reads with Rwlock:
10.54 M/s
operations over time/2 workers, 100% reads with Sem:
4.94 M/s
operations over time/2 workers, 50% reads with Lock:
2.88 M/s
operations over time/2 workers, 50% reads with Rwlock:
3.83 M/s
operations over time/2 workers, 50% reads with Sem:
3.85 M/s
operations over time/2 workers, 90% reads with Lock:
4.16 M/s
operations over time/2 workers, 90% reads with Rwlock:
5.73 M/s
operations over time/2 workers, 90% reads with Sem:
3.98 M/s
operations over time/2 workers, 95% reads with Lock:
4.25 M/s
operations over time/2 workers, 95% reads with Rwlock:
6.75 M/s
operations over time/2 workers, 95% reads with Sem:
4.96 M/s
operations over time/4 workers, 10% reads with Lock:
2.66 M/s
operations over time/4 workers, 10% reads with Rwlock:
2.52 M/s
operations over time/4 workers, 10% reads with Sem:
2.84 M/s
operations over time/4 workers, 100% reads with Lock:
3.28 M/s
operations over time/4 workers, 100% reads with Rwlock:
8.96 M/s
operations over time/4 workers, 100% reads with Sem:
2.24 M/s
operations over time/4 workers, 50% reads with Lock:
2.70 M/s
operations over time/4 workers, 50% reads with Rwlock:
2.29 M/s
operations over time/4 workers, 50% reads with Sem:
3.23 M/s
operations over time/4 workers, 90% reads with Lock:
2.85 M/s
operations over time/4 workers, 90% reads with Rwlock:
4.19 M/s
operations over time/4 workers, 90% reads with Sem:
3.53 M/s
operations over time/4 workers, 95% reads with Lock:
2.83 M/s
operations over time/4 workers, 95% reads with Rwlock:
4.76 M/s
operations over time/4 workers, 95% reads with Sem:
2.10 M/s
operations over time/8 workers, 10% reads with Lock:
1.25 M/s
operations over time/8 workers, 10% reads with Rwlock:
1.35 M/s
operations over time/8 workers, 10% reads with Sem:
2.13 M/s
operations over time/8 workers, 100% reads with Lock:
1.71 M/s
operations over time/8 workers, 100% reads with Rwlock:
10.46 M/s
operations over time/8 workers, 100% reads with Sem:
2.05 M/s
operations over time/8 workers, 50% reads with Lock:
2.75 M/s
operations over time/8 workers, 50% reads with Rwlock:
1.29 M/s
operations over time/8 workers, 50% reads with Sem:
2.34 M/s
operations over time/8 workers, 90% reads with Lock:
1.89 M/s
operations over time/8 workers, 90% reads with Rwlock:
2.96 M/s
operations over time/8 workers, 90% reads with Sem:
1.76 M/s
operations over time/8 workers, 95% reads with Lock:
2.74 M/s
operations over time/8 workers, 95% reads with Rwlock:
4.59 M/s
operations over time/8 workers, 95% reads with Sem:
2.74 M/s
time per operation/1 worker, 10% reads with Lock:
145.37 ns
time per operation/1 worker, 10% reads with Rwlock:
108.61 ns
time per operation/1 worker, 10% reads with Sem:
102.69 ns
time per operation/1 worker, 100% reads with Lock:
96.73 ns
time per operation/1 worker, 100% reads with Rwlock:
101.56 ns
time per operation/1 worker, 100% reads with Sem:
100.06 ns
time per operation/1 worker, 50% reads with Lock:
157.71 ns
time per operation/1 worker, 50% reads with Rwlock:
100.26 ns
time per operation/1 worker, 50% reads with Sem:
105.87 ns
time per operation/1 worker, 90% reads with Lock:
95.16 ns
time per operation/1 worker, 90% reads with Rwlock:
99.73 ns
time per operation/1 worker, 90% reads with Sem:
95.21 ns
time per operation/1 worker, 95% reads with Lock:
97.04 ns
time per operation/1 worker, 95% reads with Rwlock:
99.08 ns
time per operation/1 worker, 95% reads with Sem:
102.16 ns
time per operation/2 workers, 10% reads with Lock:
1115.57 ns
time per operation/2 workers, 10% reads with Rwlock:
582.80 ns
time per operation/2 workers, 10% reads with Sem:
628.29 ns
time per operation/2 workers, 100% reads with Lock:
478.18 ns
time per operation/2 workers, 100% reads with Rwlock:
189.84 ns
time per operation/2 workers, 100% reads with Sem:
405.26 ns
time per operation/2 workers, 50% reads with Lock:
694.67 ns
time per operation/2 workers, 50% reads with Rwlock:
522.74 ns
time per operation/2 workers, 50% reads with Sem:
519.86 ns
time per operation/2 workers, 90% reads with Lock:
481.34 ns
time per operation/2 workers, 90% reads with Rwlock:
349.28 ns
time per operation/2 workers, 90% reads with Sem:
502.41 ns
time per operation/2 workers, 95% reads with Lock:
470.22 ns
time per operation/2 workers, 95% reads with Rwlock:
296.26 ns
time per operation/2 workers, 95% reads with Sem:
402.88 ns
time per operation/4 workers, 10% reads with Lock:
1503.31 ns
time per operation/4 workers, 10% reads with Rwlock:
1585.71 ns
time per operation/4 workers, 10% reads with Sem:
1409.26 ns
time per operation/4 workers, 100% reads with Lock:
1220.33 ns
time per operation/4 workers, 100% reads with Rwlock:
446.38 ns
time per operation/4 workers, 100% reads with Sem:
1786.59 ns
time per operation/4 workers, 50% reads with Lock:
1481.64 ns
time per operation/4 workers, 50% reads with Rwlock:
1749.92 ns
time per operation/4 workers, 50% reads with Sem:
1237.77 ns
time per operation/4 workers, 90% reads with Lock:
1402.70 ns
time per operation/4 workers, 90% reads with Rwlock:
954.27 ns
time per operation/4 workers, 90% reads with Sem:
1133.50 ns
time per operation/4 workers, 95% reads with Lock:
1412.99 ns
time per operation/4 workers, 95% reads with Rwlock:
839.89 ns
time per operation/4 workers, 95% reads with Sem:
1903.84 ns
time per operation/8 workers, 10% reads with Lock:
6398.91 ns
time per operation/8 workers, 10% reads with Rwlock:
5930.71 ns
time per operation/8 workers, 10% reads with Sem:
3747.98 ns
time per operation/8 workers, 100% reads with Lock:
4678.39 ns
time per operation/8 workers, 100% reads with Rwlock:
764.86 ns
time per operation/8 workers, 100% reads with Sem:
3910.16 ns
time per operation/8 workers, 50% reads with Lock:
2907.11 ns
time per operation/8 workers, 50% reads with Rwlock:
6194.10 ns
time per operation/8 workers, 50% reads with Sem:
3422.15 ns
time per operation/8 workers, 90% reads with Lock:
4237.08 ns
time per operation/8 workers, 90% reads with Rwlock:
2703.22 ns
time per operation/8 workers, 90% reads with Sem:
4533.67 ns
time per operation/8 workers, 95% reads with Lock:
2924.84 ns
time per operation/8 workers, 95% reads with Rwlock:
1742.98 ns
time per operation/8 workers, 95% reads with Sem:
2916.96 ns
(cd _build/default/bench && ./main.exe -brief Picos_stdio)
Picos_stdio:
blocking reads over time/1 worker:
0.08 M/s
blocking reads over time/2 workers:
0.07 M/s
blocking reads over time/4 workers:
0.11 M/s
non-blocking reads over time/1 worker:
0.67 M/s
non-blocking reads over time/2 workers:
1.55 M/s
non-blocking reads over time/4 workers:
2.02 M/s
time per blocking read/1 worker:
12247.73 ns
time per blocking read/2 workers:
29516.14 ns
time per blocking read/4 workers:
35752.57 ns
time per non-blocking read/1 worker:
1498.64 ns
time per non-blocking read/2 workers:
1289.49 ns
time per non-blocking read/4 workers:
1976.66 ns
(cd _build/default/bench && ./main.exe -brief 'Picos_sync Stream')
Picos_sync Stream:
messages over time/1 nb pusher, 1 nb reader:
3.06 M/s
messages over time/2 nb pushers, 1 nb reader:
2.73 M/s
messages over time/4 nb pushers, 1 nb reader:
3.43 M/s
messages over time/one domain:
2.75 M/s
time per message/1 nb pusher, 1 nb reader:
654.03 ns
time per message/2 nb pushers, 1 nb reader:
1097.66 ns
time per message/4 nb pushers, 1 nb reader:
1457.21 ns
time per message/one domain:
363.40 ns
(cd _build/default/bench && ./main.exe -brief Fib)
Fib:
spawns over time/1 mfifo, fib 20:
0.45 M/s
spawns over time/1 rando, fib 20:
0.25 M/s
spawns over time/2 mfifos, fib 20:
0.91 M/s
spawns over time/2 randos, fib 20:
0.54 M/s
spawns over time/4 mfifos, fib 20:
2.11 M/s
spawns over time/4 randos, fib 20:
0.80 M/s
spawns over time/8 mfifos, fib 20:
3.37 M/s
spawns over time/8 randos, fib 20:
1.08 M/s
time per spawn/1 mfifo, fib 20:
2234.88 ns
time per spawn/1 rando, fib 20:
3956.17 ns
time per spawn/2 mfifos, fib 20:
2201.29 ns
time per spawn/2 randos, fib 20:
3714.28 ns
time per spawn/4 mfifos, fib 20:
1892.97 ns
time per spawn/4 randos, fib 20:
5002.76 ns
time per spawn/8 mfifos, fib 20:
2371.32 ns
time per spawn/8 randos, fib 20:
7428.95 ns
(cd _build/default/bench && ./main.exe -brief 'Picos binaries')
Picos binaries:
binary size/picos:
100.73 kB
binary size/picos.domain:
5.20 kB
binary size/picos.thread:
4.65 kB
binary size/picos_aux.htbl:
62.17 kB
binary size/picos_aux.mpmcq:
18.11 kB
binary size/picos_aux.mpscq:
21.62 kB
binary size/picos_aux.rc:
20.84 kB
binary size/picos_io:
121.62 kB
binary size/picos_io.fd:
11.05 kB
binary size/picos_io.select:
68.18 kB
binary size/picos_io_cohttp:
51.28 kB
binary size/picos_lwt:
31.42 kB
binary size/picos_lwt.unix:
16.85 kB
binary size/picos_mux.fifo:
31.42 kB
binary size/picos_mux.multififo:
72.92 kB
binary size/picos_mux.random:
55.33 kB
binary size/picos_mux.thread:
27.70 kB
binary size/picos_std.awaitable:
38.99 kB
binary size/picos_std.event:
27.56 kB
binary size/picos_std.finally:
21.90 kB
binary size/picos_std.structured:
119.47 kB
binary size/picos_std.sync:
220.22 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:
1.62 M/s
messages over time/1 adder, 2 takers with Lock:
0.66 M/s
messages over time/1 adder, 4 takers with Lock:
0.14 M/s
messages over time/2 adders, 1 taker with Lock:
1.53 M/s
messages over time/2 adders, 2 takers with Lock:
0.78 M/s
messages over time/2 adders, 4 takers with Lock:
0.60 M/s
messages over time/4 adders, 1 taker with Lock:
0.96 M/s
messages over time/4 adders, 2 takers with Lock:
0.78 M/s
messages over time/4 adders, 4 takers with Lock:
0.56 M/s
messages over time/one domain with Lock:
5.75 M/s
time per message/1 adder, 1 taker with Lock:
1237.54 ns
time per message/1 adder, 2 takers with Lock:
4568.90 ns
time per message/1 adder, 4 takers with Lock:
36973.56 ns
time per message/2 adders, 1 taker with Lock:
1959.54 ns
time per message/2 adders, 2 takers with Lock:
5101.20 ns
time per message/2 adders, 4 takers with Lock:
9937.33 ns
time per message/4 adders, 1 taker with Lock:
5206.02 ns
time per message/4 adders, 2 takers with Lock:
7733.56 ns
time per message/4 adders, 4 takers with Lock:
14396.61 ns
time per message/one domain with Lock:
173.84 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:
232.00 B
stack and heap used/fiber in a flock:
248.00 B
stack and heap used/fiber with shared computation & latch:
232.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:
352.00 B
stack and heap used/promise in a flock:
368.00 B
(cd _build/default/bench && ./main.exe -brief Picos_std_structured.Run)
Picos_std_structured.Run:
ignores over time/1 mfifo, run_n 100:
12.57 M/s
ignores over time/1 mfifo, run_n 1000:
57.78 M/s
ignores over time/1 mfifo, run_n 10000:
128.86 M/s
ignores over time/1 mfifo, run_n 100000:
161.23 M/s
ignores over time/1 mfifo, run_n 1000000:
166.40 M/s
ignores over time/1 mfifo, run_n 10000000:
166.57 M/s
ignores over time/2 mfifos, run_n 100:
12.10 M/s
ignores over time/2 mfifos, run_n 1000:
56.53 M/s
ignores over time/2 mfifos, run_n 10000:
126.86 M/s
ignores over time/2 mfifos, run_n 100000:
172.75 M/s
ignores over time/2 mfifos, run_n 1000000:
327.73 M/s
ignores over time/2 mfifos, run_n 10000000:
443.70 M/s
ignores over time/4 mfifos, run_n 100:
11.85 M/s
ignores over time/4 mfifos, run_n 1000:
55.73 M/s
ignores over time/4 mfifos, run_n 10000:
126.91 M/s
ignores over time/4 mfifos, run_n 100000:
191.39 M/s
ignores over time/4 mfifos, run_n 1000000:
572.59 M/s
ignores over time/4 mfifos, run_n 10000000:
589.56 M/s
ignores over time/8 mfifos, run_n 100:
11.54 M/s
ignores over time/8 mfifos, run_n 1000:
54.05 M/s
ignores over time/8 mfifos, run_n 10000:
126.66 M/s
ignores over time/8 mfifos, run_n 100000:
233.09 M/s
ignores over time/8 mfifos, run_n 1000000:
871.97 M/s
ignores over time/8 mfifos, run_n 10000000:
937.66 M/s
time per ignore/1 mfifo, run_n 100:
79.53 ns
time per ignore/1 mfifo, run_n 1000:
17.31 ns
time per ignore/1 mfifo, run_n 10000:
7.76 ns
time per ignore/1 mfifo, run_n 100000:
6.20 ns
time per ignore/1 mfifo, run_n 1000000:
6.01 ns
time per ignore/1 mfifo, run_n 10000000:
6.00 ns
time per ignore/2 mfifos, run_n 100:
165.35 ns
time per ignore/2 mfifos, run_n 1000:
35.38 ns
time per ignore/2 mfifos, run_n 10000:
15.77 ns
time per ignore/2 mfifos, run_n 100000:
11.58 ns
time per ignore/2 mfifos, run_n 1000000:
6.10 ns
time per ignore/2 mfifos, run_n 10000000:
4.51 ns
time per ignore/4 mfifos, run_n 100:
337.63 ns
time per ignore/4 mfifos, run_n 1000:
71.78 ns
time per ignore/4 mfifos, run_n 10000:
31.52 ns
time per ignore/4 mfifos, run_n 100000:
20.90 ns
time per ignore/4 mfifos, run_n 1000000:
6.99 ns
time per ignore/4 mfifos, run_n 10000000:
6.78 ns
time per ignore/8 mfifos, run_n 100:
693.34 ns
time per ignore/8 mfifos, run_n 1000:
148.01 ns
time per ignore/8 mfifos, run_n 10000:
63.16 ns
time per ignore/8 mfifos, run_n 100000:
34.32 ns
time per ignore/8 mfifos, run_n 1000000:
9.17 ns
time per ignore/8 mfifos, run_n 10000000:
8.53 ns
2025-05-03 13:04.14 ---> saved as "3565ec43de7d62a054f4f78ccbdded2b56f89c01f6d719c7fb510308ef4f37db"
Job succeeded
2025-05-03 13:04.14: Job succeeded