- github
- ocaml
- opam-repository
- 3e0c39
- compilers,4.14,dune.3.22.2,revdeps,kcas_data.0.7.0
(not at the head of any monitored branch or PR)
2026-04-10 17:57.40: New job: test kcas_data.0.7.0 with dune.3.22.2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune.3.22.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall kcas_data.0.7.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'kcas_data.0.7.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test kcas_data.0.7.0) || true
RUN opam reinstall --with-test --verbose kcas_data.0.7.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'kcas_data.0.7.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-04-10 17:57.40: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-kcas_data.0.7.0-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.40: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall kcas_data.0.7.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'kcas_data.0.7.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test kcas_data.0.7.0) || true"))
(run (shell "opam reinstall --with-test --verbose kcas_data.0.7.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'kcas_data.0.7.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-04-10 17:57.40: Waiting for resource in pool OCluster
2026-04-11 03:01.04: Waiting for worker…
2026-04-11 03:03.15: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
packages/chrome-trace/chrome-trace.3.22.2/opam | 39 +++++++++++
.../dune-action-plugin.3.22.2/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.2/opam | 39 +++++++++++
.../dune-build-info/dune-build-info.3.22.2/opam | 45 +++++++++++++
.../dune-configurator.3.22.2/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.2/opam | 42 ++++++++++++
.../dune-private-libs.3.22.2/opam | 50 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.2/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.2/opam | 37 +++++++++++
packages/dune/dune.3.22.2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.2/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.2/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.2/opam | 38 +++++++++++
packages/stdune/stdune.3.22.2/opam | 46 +++++++++++++
packages/top-closure/top-closure.3.22.2/opam | 38 +++++++++++
packages/xdg/xdg.3.22.2/opam | 39 +++++++++++
18 files changed, 796 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
create mode 100644 packages/dune-site/dune-site.3.22.2/opam
create mode 100644 packages/dune/dune.3.22.2/opam
create mode 100644 packages/dyn/dyn.3.22.2/opam
create mode 100644 packages/fs-io/fs-io.3.22.2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
create mode 100644 packages/ordering/ordering.3.22.2/opam
create mode 100644 packages/stdune/stdune.3.22.2/opam
create mode 100644 packages/top-closure/top-closure.3.22.2/opam
create mode 100644 packages/xdg/xdg.3.22.2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-11 03:03.16 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-11 03:03.16 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 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=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-11 03:03.16 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.3
2026-04-11 03:03.16 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-11 03:03.16 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 03:03.17 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 03:03.17 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [121 kB]
- Fetched 211 kB in 0s (2452 kB/s)
- Reading package lists...
2026-04-11 03:03.17 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 03:03.17 ---> using "a60db6b945be7f2fc9953546cee71bf416921d54f02951a4c9176dbdf1065520" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2 (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:03.17 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall kcas_data.0.7.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'kcas_data.0.7.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
kcas_data.0.7.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 13 packages
- install backoff 0.1.1 [required by kcas]
- install domain-local-await 1.0.1 [required by kcas]
- install domain-local-timeout 1.0.1 [required by kcas]
- install kcas 0.7.0 [required by kcas_data]
- install kcas_data 0.7.0
- install mtime 2.1.0 [required by domain-local-timeout]
- install multicore-magic 2.3.2 [required by kcas_data]
- install ocamlbuild 0.16.1 [required by mtime]
- install ocamlfind 1.9.8 [required by mtime]
- install psq 0.2.1 [required by domain-local-timeout]
- install seq base [required by psq]
- install thread-table 1.0.0 [required by domain-local-await, domain-local-timeout]
- install topkg 1.1.1 [required by mtime]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved backoff.0.1.1 (cached)
-> retrieved domain-local-await.1.0.1 (cached)
-> retrieved domain-local-timeout.1.0.1 (cached)
-> retrieved kcas.0.7.0, kcas_data.0.7.0 (cached)
-> retrieved mtime.2.1.0 (cached)
-> retrieved multicore-magic.2.3.2 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved psq.0.2.1 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> installed backoff.0.1.1
-> retrieved thread-table.1.0.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> installed multicore-magic.2.3.2
-> installed thread-table.1.0.0
-> installed psq.0.2.1
-> installed domain-local-await.1.0.1
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed mtime.2.1.0
-> installed domain-local-timeout.1.0.1
-> installed kcas.0.7.0
-> installed kcas_data.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:03.30 ---> saved as "5937720a3550b9a341b714eb0c5281fe330d67a8b0bdd8aa357a827a14067b94"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test kcas_data.0.7.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile kcas_data 0.7.0
=== install 21 packages
- install alcotest 1.9.1 [required by kcas_data]
- install astring 0.8.5 [required by alcotest, mdx]
- install camlp-streams 5.0.1 [required by mdx]
- install cmdliner 2.1.0 [required by alcotest, mdx]
- install cppo 1.8.0 [required by mdx]
- install csexp 1.5.2 [required by mdx]
- install domain_shims 0.1.0 [required by kcas_data]
- install fmt 0.11.0 [required by alcotest, mdx]
- install logs 0.10.0 [required by mdx]
- install mdx 2.5.2 [required by kcas_data]
- install multicore-bench 0.1.7 [required by kcas_data]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocaml-version 4.0.4 [required by mdx]
- install qcheck-core 0.91 [required by kcas_data]
- install qcheck-multicoretests-util 0.10 [required by qcheck-stm]
- install qcheck-stm 0.10 [required by kcas_data]
- install re 1.14.0 [required by alcotest, mdx]
- install result 1.5 [required by mdx]
- install stdlib-shims 0.3.0 [required by alcotest]
- install uutf 1.0.4 [required by alcotest]
- install yojson 3.0.0 [required by multicore-bench]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved camlp-streams.5.0.1 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved cppo.1.8.0 (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> retrieved csexp.1.5.2 (https://opam.ocaml.org/cache)
-> retrieved domain_shims.0.1.0 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> installed csexp.1.5.2
-> installed domain_shims.0.1.0
-> retrieved kcas_data.0.7.0 (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0 (https://opam.ocaml.org/cache)
-> retrieved mdx.2.5.2 (https://opam.ocaml.org/cache)
-> retrieved multicore-bench.0.1.7 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-version.4.0.4 (https://opam.ocaml.org/cache)
-> installed cppo.1.8.0
-> retrieved qcheck-core.0.91 (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> retrieved qcheck-multicoretests-util.0.10, qcheck-stm.0.10 (https://opam.ocaml.org/cache)
-> installed ocaml-version.4.0.4
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved result.1.5 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed result.1.5
-> installed ocaml-syntax-shims.1.0.0
-> installed stdlib-shims.0.3.0
-> retrieved yojson.3.0.0 (https://opam.ocaml.org/cache)
-> installed qcheck-core.0.91
-> installed re.1.14.0
-> installed qcheck-multicoretests-util.0.10
-> installed cmdliner.2.1.0
-> removed kcas_data.0.7.0
-> installed qcheck-stm.0.10
-> installed yojson.3.0.0
-> installed multicore-bench.0.1.7
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed alcotest.1.9.1
-> installed logs.0.10.0
-> installed mdx.2.5.2
-> installed kcas_data.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:03.59 ---> saved as "bc0ad3b6d1467b8b107af819bea81331a42ad04178d65d24a1e6d25135079290"
/home/opam: (run (shell "opam reinstall --with-test --verbose kcas_data.0.7.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'kcas_data.0.7.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile kcas_data 0.7.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [kcas_data.0.7.0: extract]
-> retrieved kcas_data.0.7.0 (cached)
Processing 2/4: [kcas_data: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "kcas_data" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/kcas_data.0.7.0)
- (cd _build/default/test/kcas_data && ./lru_cache_example.exe)
- LRU Cache OK!
- (cd _build/default/test/kcas_data && ./mvar_test.exe)
- Testing `Mvar'.
- This run has ID `H71UMGCX'.
-
- [OK] basics 0
-
- Full test results in `~/.opam/4.14/.opam-switch/build/kcas_data.0.7.0/_build/default/test/kcas_data/_build/_tests/Mvar'.
- Test Successful in 0.000s. 1 test run.
- (cd _build/default/test/kcas_data && ./dllist_test.exe)
- Testing `Dllist'.
- This run has ID `9EU2MTXB'.
-
- [OK] basics 0
- [OK] add 0
- [OK] move 0
-
- Full test results in `~/.opam/4.14/.opam-switch/build/kcas_data.0.7.0/_build/default/test/kcas_data/_build/_tests/Dllist'.
- Test Successful in 0.000s. 3 tests run.
- (cd _build/default/test/kcas_data && ./queue_test.exe)
- Testing `Queue'.
- This run has ID `27N9W986'.
-
- [OK] basics 0
-
- Full test results in `~/.opam/4.14/.opam-switch/build/kcas_data.0.7.0/_build/default/test/kcas_data/_build/_tests/Queue'.
- Test Successful in 0.000s. 1 test run.
- (cd _build/default/test/kcas_data && ./stack_test.exe)
- Testing `Stack'.
- This run has ID `4ZFYF1O0'.
-
- [OK] basics 0
-
- Full test results in `~/.opam/4.14/.opam-switch/build/kcas_data.0.7.0/_build/default/test/kcas_data/_build/_tests/Stack'.
- Test Successful in 0.000s. 1 test run.
- (cd _build/default/test/kcas_data && ./xt_test.exe)
- Testing `Transactions'.
- This run has ID `M9BOY449'.
-
- [OK] basics 0
-
- Full test results in `~/.opam/4.14/.opam-switch/build/kcas_data.0.7.0/_build/default/test/kcas_data/_build/_tests/Transactions'.
- Test Successful in 0.000s. 1 test run.
- (cd _build/default/test/kcas_data && ./hashtbl_test.exe)
- Testing `Hashtbl'.
- This run has ID `OAAHGOB8'.
-
- [OK] replace and remove 0
- [OK] large tx 0
- [OK] large ops 0
- [OK] basics 0
-
- Full test results in `~/.opam/4.14/.opam-switch/build/kcas_data.0.7.0/_build/default/test/kcas_data/_build/_tests/Hashtbl'.
- Test Successful in 0.003s. 4 tests run.
- (cd _build/default/bench && ./main.exe)
- {
- "results": [
- {
- "name": "Atomic",
- "metrics": [
- {
- "name": "time per op/get",
- "value": 1.5538120000000002,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 1.541446,
- "#mean": 1.5548391851851853,
- "#median": 1.5538120000000002,
- "#sd": 0.009485469452983555,
- "#runs": 27
- },
- {
- "name": "ops over time/get",
- "value": 643.578502418568,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 648.741506351828,
- "#mean": 643.1770706453922,
- "#median": 643.578502418568,
- "#sd": 3.8918026006305424,
- "#runs": 27
- },
- {
- "name": "time per op/incr",
- "value": 2.77564,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 2.77504,
- "#mean": 2.804623193277312,
- "#median": 2.77564,
- "#sd": 0.09156552248226425,
- "#runs": 119
- },
- {
- "name": "ops over time/incr",
- "value": 360.2772693865199,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 360.3551660516605,
- "#mean": 356.87035734921534,
- "#median": 360.2772693865199,
- "#sd": 9.741581449661457,
- "#runs": 119
- },
- {
- "name": "time per op/push & pop",
- "value": 9.85905,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 9.7545,
- "#mean": 9.856842,
- "#median": 9.85905,
- "#sd": 0.03295559779460828,
- "#runs": 20
- },
- {
- "name": "ops over time/push & pop",
- "value": 101.42966342228975,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 102.51678712389153,
- "#mean": 101.45350988738835,
- "#median": 101.42966342228975,
- "#sd": 0.3403831028946408,
- "#runs": 20
- },
- {
- "name": "time per op/cas int",
- "value": 6.1668400000000005,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 6.16622,
- "#mean": 6.245272580645161,
- "#median": 6.1668400000000005,
- "#sd": 0.15949675758596793,
- "#runs": 62
- },
- {
- "name": "ops over time/cas int",
- "value": 162.15760421869223,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 162.17390881285453,
- "#mean": 160.21688193894045,
- "#median": 162.15760421869223,
- "#sd": 3.7539463227600134,
- "#runs": 62
- },
- {
- "name": "time per op/xchg int",
- "value": 5.8620600000000005,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 5.85804,
- "#mean": 5.924504923076921,
- "#median": 5.8620600000000005,
- "#sd": 0.11539256315355817,
- "#runs": 65
- },
- {
- "name": "ops over time/xchg int",
- "value": 170.58849619417066,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 170.70556022150754,
- "#mean": 168.85105380022253,
- "#median": 170.58849619417066,
- "#sd": 3.1131811054606526,
- "#runs": 65
- },
- {
- "name": "time per op/swap",
- "value": 8.878845,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 8.854100000000001,
- "#mean": 8.983602727272729,
- "#median": 8.878845,
- "#sd": 0.2818557959663675,
- "#runs": 22
- },
- {
- "name": "ops over time/swap",
- "value": 112.62726384105054,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 112.94202685761398,
- "#mean": 111.41591871239437,
- "#median": 112.62726384105054,
- "#sd": 3.251615572434082,
- "#runs": 22
- }
- ]
- },
- {
- "name": "Kcas Loc",
- "metrics": [
- {
- "name": "time per op/get",
- "value": 2.774912,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 2.7747520000000003,
- "#mean": 2.7973722033898305,
- "#median": 2.774912,
- "#sd": 0.043290607587727035,
- "#runs": 59
- },
- {
- "name": "ops over time/get",
- "value": 360.37178836662207,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 360.3925684169252,
- "#mean": 357.5594399097009,
- "#median": 360.37178836662207,
- "#sd": 5.243684834440979,
- "#runs": 59
- },
- {
- "name": "time per op/incr",
- "value": 13.09892,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 13.048600000000002,
- "#mean": 13.18682903225807,
- "#median": 13.09892,
- "#sd": 0.16133492075152917,
- "#runs": 62
- },
- {
- "name": "ops over time/incr",
- "value": 76.34217173882466,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 76.63657403859418,
- "#mean": 75.84443042570261,
- "#median": 76.34217173882466,
- "#sd": 0.9145392022318424,
- "#runs": 62
- },
- {
- "name": "time per op/push & pop",
- "value": 13.111120000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 13.0474,
- "#mean": 13.352483934426232,
- "#median": 13.111120000000001,
- "#sd": 0.8464104333146329,
- "#runs": 61
- },
- {
- "name": "ops over time/push & pop",
- "value": 76.27113473143407,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 76.64362248417309,
- "#mean": 75.113237094903,
- "#median": 76.27113473143407,
- "#sd": 3.508020377299605,
- "#runs": 61
- },
- {
- "name": "time per op/cas int",
- "value": 9.08793,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 9.022020000000001,
- "#mean": 9.129405652173913,
- "#median": 9.08793,
- "#sd": 0.0854856823672365,
- "#runs": 46
- },
- {
- "name": "ops over time/cas int",
- "value": 110.03641846776776,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 110.83992276674181,
- "#mean": 109.54572860337214,
- "#median": 110.03641846776776,
- "#sd": 1.022341491307737,
- "#runs": 46
- },
- {
- "name": "time per op/xchg int",
- "value": 9.677060000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 9.622160000000001,
- "#mean": 9.740673488372092,
- "#median": 9.677060000000001,
- "#sd": 0.12242104734079559,
- "#runs": 43
- },
- {
- "name": "ops over time/xchg int",
- "value": 103.33717058693446,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 103.9267690414626,
- "#mean": 102.67803288400526,
- "#median": 103.33717058693446,
- "#sd": 1.2518701286364582,
- "#runs": 43
- },
- {
- "name": "time per op/swap",
- "value": 13.17448,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 13.106320000000002,
- "#mean": 13.300634098360657,
- "#median": 13.17448,
- "#sd": 0.19615187168408726,
- "#runs": 61
- },
- {
- "name": "ops over time/swap",
- "value": 75.90432411753632,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 76.29906793058615,
- "#mean": 75.20057224533228,
- "#median": 75.90432411753632,
- "#sd": 1.0976252637190418,
- "#runs": 61
- }
- ]
- },
- {
- "name": "Kcas Xt",
- "metrics": [
- {
- "name": "time per transaction/0 loc tx",
- "value": 7.921592592592592,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 7.474148148148148,
- "#mean": 7.951559728742824,
- "#median": 7.921592592592592,
- "#sd": 0.31595961732980826,
- "#runs": 142
- },
- {
- "name": "transactions over time/0 loc tx",
- "value": 126.23724307348134,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 133.79451145181912,
- "#mean": 125.93609161666622,
- "#median": 126.23724307348134,
- "#sd": 4.424113174665938,
- "#runs": 142
- },
- {
- "name": "time per transaction/1 loc tx",
- "value": 23.737291666666668,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 23.637916666666666,
- "#mean": 23.90760661764705,
- "#median": 23.737291666666668,
- "#sd": 0.30519792806514773,
- "#runs": 68
- },
- {
- "name": "transactions over time/1 loc tx",
- "value": 42.12780522924363,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 42.304912657982406,
- "#mean": 41.83440540729541,
- "#median": 42.12780522924363,
- "#sd": 0.5259401636513206,
- "#runs": 68
- },
- {
- "name": "time per transaction/2 loc tx",
- "value": 54.52571428571428,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 53.62685714285714,
- "#mean": 55.01790476190475,
- "#median": 54.52571428571428,
- "#sd": 3.068508944808351,
- "#runs": 36
- },
- {
- "name": "transactions over time/2 loc tx",
- "value": 18.339975725375304,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 18.647372851556256,
- "#mean": 18.21981187939249,
- "#median": 18.339975725375304,
- "#sd": 0.7889941414899553,
- "#runs": 36
- },
- {
- "name": "time per transaction/4 loc tx",
- "value": 95.01386666666667,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 93.77680000000001,
- "#mean": 95.06320919540232,
- "#median": 95.01386666666667,
- "#sd": 0.7630972451699343,
- "#runs": 29
- },
- {
- "name": "transactions over time/4 loc tx",
- "value": 10.524779540951213,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 10.663618293650455,
- "#mean": 10.519992494934435,
- "#median": 10.524779540951213,
- "#sd": 0.08419838676180949,
- "#runs": 29
- },
- {
- "name": "time per transaction/8 loc tx",
- "value": 174.37900000000002,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 173.03933333333333,
- "#mean": 176.33739814814808,
- "#median": 174.37900000000002,
- "#sd": 3.928634407859027,
- "#runs": 72
- },
- {
- "name": "transactions over time/8 loc tx",
- "value": 5.7346354804313275,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 5.779032898107944,
- "#mean": 5.673617352453839,
- "#median": 5.7346354804313275,
- "#sd": 0.1200190498710738,
- "#runs": 72
- }
- ]
- },
- {
- "name": "Kcas Xt read-only",
- "metrics": [
- {
- "name": "time per transaction/0 loc tx",
- "value": 7.577361111111111,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 7.518611111111112,
- "#mean": 7.733175411522636,
- "#median": 7.577361111111111,
- "#sd": 0.6065277591976314,
- "#runs": 108
- },
- {
- "name": "transactions over time/0 loc tx",
- "value": 131.9720660563719,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 133.00328813684558,
- "#mean": 129.85851635134992,
- "#median": 131.9720660563719,
- "#sd": 7.021945995058137,
- "#runs": 108
- },
- {
- "name": "time per transaction/1 loc tx",
- "value": 16.491718750000004,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 16.3139375,
- "#mean": 16.7561875,
- "#median": 16.491718750000004,
- "#sd": 0.9352625312780812,
- "#runs": 68
- },
- {
- "name": "transactions over time/1 loc tx",
- "value": 60.63651901169274,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 61.297280316293964,
- "#mean": 59.82335880520896,
- "#median": 60.63651901169274,
- "#sd": 2.598114170812485,
- "#runs": 68
- },
- {
- "name": "time per transaction/2 loc tx",
- "value": 32.37242857142858,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 32.21000000000001,
- "#mean": 32.650011627906984,
- "#median": 32.37242857142858,
- "#sd": 0.39074279777478915,
- "#runs": 43
- },
- {
- "name": "transactions over time/2 loc tx",
- "value": 30.890484406924767,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 31.046258925799442,
- "#mean": 30.632221654220004,
- "#median": 30.890484406924767,
- "#sd": 0.36443031416448085,
- "#runs": 43
- },
- {
- "name": "time per transaction/4 loc tx",
- "value": 55.333400000000005,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 54.344500000000004,
- "#mean": 55.07053513513514,
- "#median": 55.333400000000005,
- "#sd": 0.54095821600954,
- "#runs": 37
- },
- {
- "name": "transactions over time/4 loc tx",
- "value": 18.07226738281038,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 18.401126148920312,
- "#mean": 18.16028445978718,
- "#median": 18.07226738281038,
- "#sd": 0.17854421337647858,
- "#runs": 37
- },
- {
- "name": "time per transaction/8 loc tx",
- "value": 98.3955,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 97.8045,
- "#mean": 99.64259411764706,
- "#median": 98.3955,
- "#sd": 2.1399486641645207,
- "#runs": 85
- },
- {
- "name": "transactions over time/8 loc tx",
- "value": 10.163066400394328,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 10.224478423794405,
- "#mean": 10.040388819020626,
- "#median": 10.163066400394328,
- "#sd": 0.21048372812194813,
- "#runs": 85
- }
- ]
- },
- {
- "name": "Kcas parallel CMP",
- "metrics": [
- {
- "name": "time per transaction/1 worker",
- "value": 60.14040000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 59.19160000000001,
- "#mean": 60.62515483870968,
- "#median": 60.14040000000001,
- "#sd": 1.0604102781284506,
- "#runs": 62
- },
- {
- "name": "transactions over time/1 worker",
- "value": 16.62775793888358,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 16.894289054528006,
- "#mean": 16.49978598495707,
- "#median": 16.62775793888358,
- "#sd": 0.2849060860282066,
- "#runs": 62
- },
- {
- "name": "time per transaction/2 workers",
- "value": 122.13435000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 119.24980000000002,
- "#mean": 125.2271866666667,
- "#median": 122.13435000000001,
- "#sd": 9.808384175820647,
- "#runs": 30
- },
- {
- "name": "transactions over time/2 workers",
- "value": 16.375442909149893,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 16.7715165979314,
- "#mean": 16.05093995383398,
- "#median": 16.375442909149893,
- "#sd": 1.0241742464610948,
- "#runs": 30
- },
- {
- "name": "time per transaction/4 workers",
- "value": 238.15870000000007,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 235.95860000000002,
- "#mean": 247.17457692307693,
- "#median": 238.15870000000007,
- "#sd": 25.26476030004437,
- "#runs": 13
- },
- {
- "name": "transactions over time/4 workers",
- "value": 16.79552332121396,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 16.95212634758809,
- "#mean": 16.31364640489701,
- "#median": 16.79552332121396,
- "#sd": 1.2814050299357864,
- "#runs": 13
- }
- ]
- },
- {
- "name": "Kcas_data Accumulator",
- "metrics": [
- {
- "name": "time per operation/1 worker, 0% reads",
- "value": 13.578944444444446,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 13.524888888888889,
- "#mean": 13.672328078078081,
- "#median": 13.578944444444446,
- "#sd": 0.20372027688792266,
- "#runs": 74
- },
- {
- "name": "operations over time/1 worker, 0% reads",
- "value": 73.64342671047085,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 73.93776083598961,
- "#mean": 73.15635813457389,
- "#median": 73.64342671047085,
- "#sd": 1.0688049581652201,
- "#runs": 74
- },
- {
- "name": "time per operation/2 workers, 0% reads",
- "value": 26.875444444444447,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 26.298472222222223,
- "#mean": 27.624429429429433,
- "#median": 26.875444444444447,
- "#sd": 2.195790566379873,
- "#runs": 37
- },
- {
- "name": "operations over time/2 workers, 0% reads",
- "value": 74.41737397624432,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 76.0500451547143,
- "#mean": 72.7951011819721,
- "#median": 74.41737397624432,
- "#sd": 4.984044478590076,
- "#runs": 37
- },
- {
- "name": "time per operation/4 workers, 0% reads",
- "value": 55.667236111111116,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 55.36927777777779,
- "#mean": 55.764697712418304,
- "#median": 55.667236111111116,
- "#sd": 0.5780073409885002,
- "#runs": 17
- },
- {
- "name": "operations over time/4 workers, 0% reads",
- "value": 71.85555237583647,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 72.24222819112482,
- "#mean": 71.73741769105871,
- "#median": 71.85555237583647,
- "#sd": 0.7187359168224253,
- "#runs": 17
- }
- ]
- },
- {
- "name": "Kcas_data Dllist",
- "metrics": [
- {
- "name": "time per message/one domain",
- "value": 228.47066666666666,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 226.43333333333334,
- "#mean": 231.2328740740741,
- "#median": 228.47066666666666,
- "#sd": 9.065129054610047,
- "#runs": 45
- },
- {
- "name": "messages over time/one domain",
- "value": 4.376929496419671,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 4.416310908287944,
- "#mean": 4.330334520945214,
- "#median": 4.376929496419671,
- "#sd": 0.14546354017951657,
- "#runs": 45
- },
- {
- "name": "time per message/1 nb adder, 1 nb taker",
- "value": 860.1595000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 686.4399999999999,
- "#mean": 1026.8422083333335,
- "#median": 860.1595000000001,
- "#sd": 587.4711403783828,
- "#runs": 12
- },
- {
- "name": "messages over time/1 nb adder, 1 nb taker",
- "value": 2.326118612006256,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 2.9135831245265433,
- "#mean": 2.2545923371448686,
- "#median": 2.326118612006256,
- "#sd": 0.5864644430064344,
- "#runs": 12
- },
- {
- "name": "time per message/1 nb adder, 2 nb takers",
- "value": 1532.2005000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 1414.9800000000002,
- "#mean": 1611.554222222222,
- "#median": 1532.2005000000001,
- "#sd": 167.16158851577498,
- "#runs": 9
- },
- {
- "name": "messages over time/1 nb adder, 2 nb takers",
- "value": 1.957968294619405,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 2.120171309841835,
- "#mean": 1.8802468018587015,
- "#median": 1.957968294619405,
- "#sd": 0.18077844328851483,
- "#runs": 9
- },
- {
- "name": "time per message/2 nb adders, 1 nb taker",
- "value": 856.12,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 793.171,
- "#mean": 907.5172,
- "#median": 856.12,
- "#sd": 212.41556194119423,
- "#runs": 15
- },
- {
- "name": "messages over time/2 nb adders, 1 nb taker",
- "value": 3.5041816567770874,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 3.782286543507012,
- "#mean": 3.4106079209600626,
- "#median": 3.5041816567770874,
- "#sd": 0.45105717963530184,
- "#runs": 15
- },
- {
- "name": "time per message/2 nb adders, 2 nb takers",
- "value": 1871.6905000000002,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 1116.2160000000001,
- "#mean": 1760.7302727272731,
- "#median": 1871.6905000000002,
- "#sd": 231.61230949912076,
- "#runs": 11
- },
- {
- "name": "messages over time/2 nb adders, 2 nb takers",
- "value": 2.137105466956209,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 3.5835358031062086,
- "#mean": 2.326729728189063,
- "#median": 2.137105466956209,
- "#sd": 0.422498645224776,
- "#runs": 11
- }
- ]
- },
- {
- "name": "Kcas_data Hashtbl",
- "metrics": [
- {
- "name": "time per operation/1 worker, 90% reads",
- "value": 36.75486842105263,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 35.441842105263156,
- "#mean": 37.03071160042964,
- "#median": 36.75486842105263,
- "#sd": 1.0433246250964057,
- "#runs": 49
- },
- {
- "name": "operations over time/1 worker, 90% reads",
- "value": 27.207280095368674,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 28.215237713377732,
- "#mean": 27.02566956537218,
- "#median": 27.207280095368674,
- "#sd": 0.7477847906860998,
- "#runs": 49
- },
- {
- "name": "time per operation/2 workers, 90% reads",
- "value": 75.38269736842103,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 72.77934210526315,
- "#mean": 76.4491801619433,
- "#median": 75.38269736842103,
- "#sd": 3.7043021887469885,
- "#runs": 26
- },
- {
- "name": "operations over time/2 workers, 90% reads",
- "value": 26.531291861045307,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 27.48032535258885,
- "#mean": 26.216818093413597,
- "#median": 26.531291861045307,
- "#sd": 1.1498935306414175,
- "#runs": 26
- },
- {
- "name": "time per operation/4 workers, 90% reads",
- "value": 158.72700657894734,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 156.16263157894738,
- "#mean": 159.63467105263157,
- "#median": 158.72700657894734,
- "#sd": 3.0748682374538263,
- "#runs": 11
- },
- {
- "name": "operations over time/4 workers, 90% reads",
- "value": 25.20050044546444,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 25.614322450616594,
- "#mean": 25.066365583806277,
- "#median": 25.20050044546444,
- "#sd": 0.4752477660483062,
- "#runs": 11
- },
- {
- "name": "time per operation/1 worker, 50% reads",
- "value": 77.93866666666668,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 75.5575,
- "#mean": 78.23063725490195,
- "#median": 77.93866666666668,
- "#sd": 1.7946655970804417,
- "#runs": 34
- },
- {
- "name": "operations over time/1 worker, 50% reads",
- "value": 12.83069381164634,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 13.234953512225788,
- "#mean": 12.789207217167212,
- "#median": 12.83069381164634,
- "#sd": 0.2831854646577562,
- "#runs": 34
- },
- {
- "name": "time per operation/2 workers, 50% reads",
- "value": 167.41491666666667,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 165.90875000000003,
- "#mean": 172.44556770833333,
- "#median": 167.41491666666667,
- "#sd": 6.559039214660998,
- "#runs": 16
- },
- {
- "name": "operations over time/2 workers, 50% reads",
- "value": 11.946367169922976,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 12.054819290724568,
- "#mean": 11.614493530181125,
- "#median": 11.946367169922976,
- "#sd": 0.43726499334720464,
- "#runs": 16
- },
- {
- "name": "time per operation/4 workers, 50% reads",
- "value": 394.5529583333334,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 350.70520833333336,
- "#mean": 407.3925595238095,
- "#median": 394.5529583333334,
- "#sd": 52.029876889107335,
- "#runs": 7
- },
- {
- "name": "operations over time/4 workers, 50% reads",
- "value": 10.138056034091747,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 11.405590521479043,
- "#mean": 9.978055769003673,
- "#median": 10.138056034091747,
- "#sd": 1.2514074481342246,
- "#runs": 7
- },
- {
- "name": "time per operation/1 worker, 10% reads",
- "value": 95.90136363636366,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 94.59204545454546,
- "#mean": 96.31397095959598,
- "#median": 95.90136363636366,
- "#sd": 1.1716597434516764,
- "#runs": 36
- },
- {
- "name": "operations over time/1 worker, 10% reads",
- "value": 10.427384674271124,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 10.571713458512033,
- "#mean": 10.384239580001708,
- "#median": 10.427384674271124,
- "#sd": 0.1257673273402643,
- "#runs": 36
- },
- {
- "name": "time per operation/2 workers, 10% reads",
- "value": 286.73977272727274,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 221.4540909090909,
- "#mean": 272.08900974025977,
- "#median": 286.73977272727274,
- "#sd": 45.16992402158084,
- "#runs": 14
- },
- {
- "name": "operations over time/2 workers, 10% reads",
- "value": 6.97497385822225,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 9.031217223352266,
- "#mean": 7.553993844294303,
- "#median": 6.97497385822225,
- "#sd": 1.2342032041444544,
- "#runs": 14
- },
- {
- "name": "time per operation/4 workers, 10% reads",
- "value": 458.9553977272727,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 437.1545454545454,
- "#mean": 461.3723792613637,
- "#median": 458.9553977272727,
- "#sd": 18.07647508465577,
- "#runs": 8
- },
- {
- "name": "operations over time/4 workers, 10% reads",
- "value": 8.715445965850831,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 9.150082142782873,
- "#mean": 8.682467586671267,
- "#median": 8.715445965850831,
- "#sd": 0.32407938629247524,
- "#runs": 8
- }
- ]
- },
- {
- "name": "Kcas_data Mvar",
- "metrics": [
- {
- "name": "time per message/1 nb adder, 1 nb taker",
- "value": 37658.625,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 36954.9,
- "#mean": 38965.4,
- "#median": 37658.625,
- "#sd": 2221.128134295079,
- "#runs": 7
- },
- {
- "name": "messages over time/1 nb adder, 1 nb taker",
- "value": 0.053108683601698146,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.05412002197272892,
- "#mean": 0.05148638544808764,
- "#median": 0.053108683601698146,
- "#sd": 0.0027883800315388644,
- "#runs": 7
- },
- {
- "name": "time per message/1 nb adder, 1 taker",
- "value": 21298.375,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 21074.550000000003,
- "#mean": 21365.527142857143,
- "#median": 21298.375,
- "#sd": 171.75838598485532,
- "#runs": 7
- },
- {
- "name": "messages over time/1 nb adder, 1 taker",
- "value": 0.09390387764324742,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.09490119599232248,
- "#mean": 0.09361479307931347,
- "#median": 0.09390387764324742,
- "#sd": 0.0007534226418655941,
- "#runs": 7
- },
- {
- "name": "time per message/1 nb adder, 2 nb takers",
- "value": 31944.795000000002,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 31038.6,
- "#mean": 32109.462142857144,
- "#median": 31944.795000000002,
- "#sd": 902.5237047336343,
- "#runs": 7
- },
- {
- "name": "messages over time/1 nb adder, 2 nb takers",
- "value": 0.09391201289599761,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.09665384392337284,
- "#mean": 0.09350260318160825,
- "#median": 0.09391201289599761,
- "#sd": 0.0025697504517370497,
- "#runs": 7
- },
- {
- "name": "time per message/1 nb adder, 2 takers",
- "value": 31568.49,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 30708.425,
- "#mean": 31959.566428571427,
- "#median": 31568.49,
- "#sd": 1034.681963551101,
- "#runs": 7
- },
- {
- "name": "messages over time/1 nb adder, 2 takers",
- "value": 0.09503146967118162,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.09769305980362065,
- "#mean": 0.09396634694802627,
- "#median": 0.09503146967118162,
- "#sd": 0.00301951107567084,
- "#runs": 7
- },
- {
- "name": "time per message/1 adder, 1 nb taker",
- "value": 20192.730000000003,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 19210.735,
- "#mean": 22214.31928571429,
- "#median": 20192.730000000003,
- "#sd": 5427.521128516768,
- "#runs": 7
- },
- {
- "name": "messages over time/1 adder, 1 nb taker",
- "value": 0.09904554758073821,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.1041084581094893,
- "#mean": 0.09381141356472184,
- "#median": 0.09904554758073821,
- "#sd": 0.015515797036748514,
- "#runs": 7
- },
- {
- "name": "time per message/1 adder, 1 taker",
- "value": 23036.050000000003,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 21712.450000000004,
- "#mean": 28852.06071428572,
- "#median": 23036.050000000003,
- "#sd": 7782.913007146501,
- "#runs": 7
- },
- {
- "name": "messages over time/1 adder, 1 taker",
- "value": 0.08682044013622127,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.09211305034669048,
- "#mean": 0.07434194546332037,
- "#median": 0.08682044013622127,
- "#sd": 0.018636879898399974,
- "#runs": 7
- },
- {
- "name": "time per message/1 adder, 2 nb takers",
- "value": 32226.84,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 31184.519999999997,
- "#mean": 32816.695,
- "#median": 32226.84,
- "#sd": 1632.2329585614582,
- "#runs": 7
- },
- {
- "name": "messages over time/1 adder, 2 nb takers",
- "value": 0.09309010750045615,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.09620157693624914,
- "#mean": 0.09162729689976185,
- "#median": 0.09309010750045615,
- "#sd": 0.0042342515786793645,
- "#runs": 7
- },
- {
- "name": "time per message/1 adder, 2 takers",
- "value": 37255.16500000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 35470.645000000004,
- "#mean": 38081.94571428571,
- "#median": 37255.16500000001,
- "#sd": 3558.7265240767415,
- "#runs": 7
- },
- {
- "name": "messages over time/1 adder, 2 takers",
- "value": 0.08052574723531623,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.08457697907664209,
- "#mean": 0.07936994698447608,
- "#median": 0.08052574723531623,
- "#sd": 0.00634983685180492,
- "#runs": 7
- },
- {
- "name": "time per message/2 nb adders, 1 nb taker",
- "value": 34723.685000000005,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 33325.51,
- "#mean": 34794.70071428572,
- "#median": 34723.685000000005,
- "#sd": 1156.3637644339765,
- "#runs": 7
- },
- {
- "name": "messages over time/2 nb adders, 1 nb taker",
- "value": 0.08639636029413351,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.09002112795873191,
- "#mean": 0.08631497329318717,
- "#median": 0.08639636029413351,
- "#sd": 0.0028578480304467736,
- "#runs": 7
- },
- {
- "name": "time per message/2 nb adders, 1 taker",
- "value": 33273.11,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 32049.25,
- "#mean": 33155.94428571429,
- "#median": 33273.11,
- "#sd": 599.1432599043214,
- "#runs": 7
- },
- {
- "name": "messages over time/2 nb adders, 1 taker",
- "value": 0.09016289730656377,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.09360593461625466,
- "#mean": 0.09051138054809146,
- "#median": 0.09016289730656377,
- "#sd": 0.0016530866260028299,
- "#runs": 7
- },
- {
- "name": "time per message/2 nb adders, 2 nb takers",
- "value": 42804.94,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 42222.93,
- "#mean": 42908.60071428571,
- "#median": 42804.94,
- "#sd": 494.497165219584,
- "#runs": 7
- },
- {
- "name": "messages over time/2 nb adders, 2 nb takers",
- "value": 0.09344715820183372,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.09473525404324143,
- "#mean": 0.09323370677503102,
- "#median": 0.09344715820183372,
- "#sd": 0.0010676157282274686,
- "#runs": 7
- },
- {
- "name": "time per message/2 nb adders, 2 takers",
- "value": 60592.229999999996,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 58593.60500000001,
- "#mean": 61803.14714285714,
- "#median": 60592.229999999996,
- "#sd": 2747.9843202854513,
- "#runs": 7
- },
- {
- "name": "messages over time/2 nb adders, 2 takers",
- "value": 0.06601506496790101,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.06826683560432917,
- "#mean": 0.06484557504522849,
- "#median": 0.06601506496790101,
- "#sd": 0.002789832171236923,
- "#runs": 7
- },
- {
- "name": "time per message/2 adders, 1 nb taker",
- "value": 44513.955,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 35214.01,
- "#mean": 43046.21000000001,
- "#median": 44513.955,
- "#sd": 6771.921816389032,
- "#runs": 7
- },
- {
- "name": "messages over time/2 adders, 1 nb taker",
- "value": 0.06739459569476583,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.08519336479997593,
- "#mean": 0.07148548315156478,
- "#median": 0.06739459569476583,
- "#sd": 0.011425403846095951,
- "#runs": 7
- },
- {
- "name": "time per message/2 adders, 1 taker",
- "value": 33069.485,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 30875.190000000002,
- "#mean": 32786.79928571429,
- "#median": 33069.485,
- "#sd": 873.0909724340976,
- "#runs": 7
- },
- {
- "name": "messages over time/2 adders, 1 taker",
- "value": 0.09071807438186594,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.09716539396194808,
- "#mean": 0.09156742712012653,
- "#median": 0.09071807438186594,
- "#sd": 0.0025239777487750708,
- "#runs": 7
- },
- {
- "name": "time per message/2 adders, 2 nb takers",
- "value": 58460.920000000006,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 46946.99999999999,
- "#mean": 56823.70071428571,
- "#median": 58460.920000000006,
- "#sd": 4252.737287121615,
- "#runs": 7
- },
- {
- "name": "messages over time/2 adders, 2 nb takers",
- "value": 0.06842177646195098,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.08520246235116195,
- "#mean": 0.07084633427818796,
- "#median": 0.06842177646195098,
- "#sd": 0.006067004462302114,
- "#runs": 7
- },
- {
- "name": "time per message/2 adders, 2 takers",
- "value": 58229.68000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 56766.72000000001,
- "#mean": 59463.55071428572,
- "#median": 58229.68000000001,
- "#sd": 3575.0066641051067,
- "#runs": 7
- },
- {
- "name": "messages over time/2 adders, 2 takers",
- "value": 0.06869349101695219,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.07046382105571715,
- "#mean": 0.0674882971545612,
- "#median": 0.06869349101695219,
- "#sd": 0.003665205223686078,
- "#runs": 7
- }
- ]
- },
- {
- "name": "Kcas_data Queue",
- "metrics": [
- {
- "name": "time per message/one domain",
- "value": 49.3742,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 41.329800000000006,
- "#mean": 50.04565454545454,
- "#median": 49.3742,
- "#sd": 5.714439105914648,
- "#runs": 44
- },
- {
- "name": "messages over time/one domain",
- "value": 20.25367765930835,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 24.19561672207463,
- "#mean": 20.226165792807222,
- "#median": 20.25367765930835,
- "#sd": 2.15711724403239,
- "#runs": 44
- },
- {
- "name": "time per message/1 nb adder, 1 nb taker",
- "value": 54.80740000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 51.1884,
- "#mean": 57.584792207792205,
- "#median": 54.80740000000001,
- "#sd": 19.65190792110729,
- "#runs": 77
- },
- {
- "name": "messages over time/1 nb adder, 1 nb taker",
- "value": 36.49142269109645,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 39.071352103210884,
- "#mean": 35.85379944322476,
- "#median": 36.49142269109645,
- "#sd": 3.4990024567798788,
- "#runs": 77
- },
- {
- "name": "time per message/1 nb adder, 1 taker",
- "value": 58.4513,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 53.98,
- "#mean": 63.40688285714285,
- "#median": 58.4513,
- "#sd": 30.81367067172793,
- "#runs": 70
- },
- {
- "name": "messages over time/1 nb adder, 1 taker",
- "value": 34.2165356260479,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 37.05075954057058,
- "#mean": 33.69474893538936,
- "#median": 34.2165356260479,
- "#sd": 4.515031636595258,
- "#runs": 70
- },
- {
- "name": "time per message/1 nb adder, 2 nb takers",
- "value": 122.813,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 107.98780000000001,
- "#mean": 205.75701052631578,
- "#median": 122.813,
- "#sd": 126.58935315199257,
- "#runs": 38
- },
- {
- "name": "messages over time/1 nb adder, 2 nb takers",
- "value": 24.42793005116706,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 27.780915992362097,
- "#mean": 19.58109658428434,
- "#median": 24.42793005116706,
- "#sd": 8.170362510335883,
- "#runs": 38
- },
- {
- "name": "time per message/1 nb adder, 2 takers",
- "value": 116.98360000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 110.9814,
- "#mean": 191.16706315789477,
- "#median": 116.98360000000001,
- "#sd": 117.27088039741787,
- "#runs": 38
- },
- {
- "name": "messages over time/1 nb adder, 2 takers",
- "value": 25.644699330051417,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 27.031556639220625,
- "#mean": 20.61817300663313,
- "#median": 25.644699330051417,
- "#sd": 8.049484011317256,
- "#runs": 38
- },
- {
- "name": "time per message/2 nb adders, 1 nb taker",
- "value": 87.51400000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 81.64580000000001,
- "#mean": 97.15835384615386,
- "#median": 87.51400000000001,
- "#sd": 50.02258395170688,
- "#runs": 52
- },
- {
- "name": "messages over time/2 nb adders, 1 nb taker",
- "value": 34.28026209311044,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 36.74408236553503,
- "#mean": 33.460898862148824,
- "#median": 34.28026209311044,
- "#sd": 5.112546233391864,
- "#runs": 52
- },
- {
- "name": "time per message/2 nb adders, 1 taker",
- "value": 381.5458,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 83.0086,
- "#mean": 378.4536160000002,
- "#median": 381.5458,
- "#sd": 124.22339453751113,
- "#runs": 25
- },
- {
- "name": "messages over time/2 nb adders, 1 taker",
- "value": 7.862751994649135,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 36.14083360037394,
- "#mean": 10.443617023961567,
- "#median": 7.862751994649135,
- "#sd": 8.442632173303961,
- "#runs": 25
- },
- {
- "name": "time per message/2 nb adders, 2 nb takers",
- "value": 510.5424000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 493.63520000000005,
- "#mean": 522.4774818181819,
- "#median": 510.5424000000001,
- "#sd": 25.275419087086398,
- "#runs": 22
- },
- {
- "name": "messages over time/2 nb adders, 2 nb takers",
- "value": 7.834929043090001,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 8.103149856412184,
- "#mean": 7.6728893655632024,
- "#median": 7.834929043090001,
- "#sd": 0.3530462423394112,
- "#runs": 22
- },
- {
- "name": "time per message/2 nb adders, 2 takers",
- "value": 302.0898,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 288.61240000000004,
- "#mean": 352.8373555555556,
- "#median": 302.0898,
- "#sd": 92.72763018803185,
- "#runs": 27
- },
- {
- "name": "messages over time/2 nb adders, 2 takers",
- "value": 13.24109585957553,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 13.859418375648445,
- "#mean": 11.953586524900661,
- "#median": 13.24109585957553,
- "#sd": 2.3654447546231108,
- "#runs": 27
- }
- ]
- },
- {
- "name": "Kcas_data Stack",
- "metrics": [
- {
- "name": "time per message/one domain",
- "value": 35.470800000000004,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 34.7956,
- "#mean": 35.66295102040817,
- "#median": 35.470800000000004,
- "#sd": 0.7167731358060545,
- "#runs": 49
- },
- {
- "name": "messages over time/one domain",
- "value": 28.192203164292884,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 28.739265884192257,
- "#mean": 28.05132865358994,
- "#median": 28.192203164292884,
- "#sd": 0.5486180151412577,
- "#runs": 49
- },
- {
- "name": "time per message/1 nb adder, 1 nb taker",
- "value": 50.949999999999996,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 48.449400000000004,
- "#mean": 52.055614999999996,
- "#median": 50.949999999999996,
- "#sd": 2.8000076281637156,
- "#runs": 80
- },
- {
- "name": "messages over time/1 nb adder, 1 nb taker",
- "value": 39.254214850245916,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 41.28018097231338,
- "#mean": 38.5204104617642,
- "#median": 39.254214850245916,
- "#sd": 1.8684780249976078,
- "#runs": 80
- },
- {
- "name": "time per message/1 nb adder, 1 taker",
- "value": 50.3308,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 45.089,
- "#mean": 69.63493623188407,
- "#median": 50.3308,
- "#sd": 36.54529431414172,
- "#runs": 69
- },
- {
- "name": "messages over time/1 nb adder, 1 taker",
- "value": 39.73709935069579,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 44.35671671582869,
- "#mean": 34.213447342371715,
- "#median": 39.73709935069579,
- "#sd": 10.510996805195814,
- "#runs": 69
- },
- {
- "name": "time per message/1 nb adder, 2 nb takers",
- "value": 368.72240000000005,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 346.84240000000005,
- "#mean": 367.20501538461536,
- "#median": 368.72240000000005,
- "#sd": 9.498118220739727,
- "#runs": 26
- },
- {
- "name": "messages over time/1 nb adder, 2 nb takers",
- "value": 8.136204868827594,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 8.64946154218746,
- "#mean": 8.175261650193304,
- "#median": 8.136204868827594,
- "#sd": 0.21049829279696008,
- "#runs": 26
- },
- {
- "name": "time per message/1 nb adder, 2 takers",
- "value": 357.59330000000006,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 338.51640000000003,
- "#mean": 355.7181846153846,
- "#median": 357.59330000000006,
- "#sd": 7.160390167049471,
- "#runs": 26
- },
- {
- "name": "messages over time/1 nb adder, 2 takers",
- "value": 8.389418978166221,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 8.862199881601008,
- "#mean": 8.437091495694389,
- "#median": 8.389418978166221,
- "#sd": 0.1714415356821531,
- "#runs": 26
- },
- {
- "name": "time per message/2 nb adders, 1 nb taker",
- "value": 329.6709,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 97.911,
- "#mean": 314.4239428571429,
- "#median": 329.6709,
- "#sd": 60.56478039626797,
- "#runs": 28
- },
- {
- "name": "messages over time/2 nb adders, 1 nb taker",
- "value": 9.100002713618204,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 30.640071084964916,
- "#mean": 10.604998040890196,
- "#median": 9.100002713618204,
- "#sd": 5.547976657335535,
- "#runs": 28
- },
- {
- "name": "time per message/2 nb adders, 1 taker",
- "value": 81.4256,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 77.3498,
- "#mean": 87.41147017543858,
- "#median": 81.4256,
- "#sd": 20.479773427731466,
- "#runs": 57
- },
- {
- "name": "messages over time/2 nb adders, 1 taker",
- "value": 36.84344972588474,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 38.78484495111816,
- "#mean": 35.239296053686374,
- "#median": 36.84344972588474,
- "#sd": 4.232834058432007,
- "#runs": 57
- },
- {
- "name": "time per message/2 nb adders, 2 nb takers",
- "value": 121.2884,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 100.4418,
- "#mean": 126.41328979591839,
- "#median": 121.2884,
- "#sd": 59.728316524594455,
- "#runs": 49
- },
- {
- "name": "messages over time/2 nb adders, 2 nb takers",
- "value": 32.97924616039127,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 39.82405731478329,
- "#mean": 33.62046457592756,
- "#median": 32.97924616039127,
- "#sd": 4.7416907165217514,
- "#runs": 49
- },
- {
- "name": "time per message/2 nb adders, 2 takers",
- "value": 410.05420000000004,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 131.0572,
- "#mean": 400.7957714285715,
- "#median": 410.05420000000004,
- "#sd": 53.419717541685564,
- "#runs": 28
- },
- {
- "name": "messages over time/2 nb adders, 2 takers",
- "value": 9.754817379667791,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 30.52102440766322,
- "#mean": 10.488212133231778,
- "#median": 9.754817379667791,
- "#sd": 3.865325337489508,
- "#runs": 28
- }
- ]
- },
- {
- "name": "Ref with Mutex",
- "metrics": [
- {
- "name": "time per op/get",
- "value": 18.533360000000002,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 18.49808,
- "#mean": 18.69328622222223,
- "#median": 18.533360000000002,
- "#sd": 0.37624145060372477,
- "#runs": 45
- },
- {
- "name": "ops over time/get",
- "value": 53.956756896752665,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 54.05966457059327,
- "#mean": 53.5153602472584,
- "#median": 53.956756896752665,
- "#sd": 1.0049759532277371,
- "#runs": 45
- },
- {
- "name": "time per op/incr",
- "value": 18.49972,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 18.49848,
- "#mean": 18.628015111111104,
- "#median": 18.49972,
- "#sd": 0.14160109058936948,
- "#runs": 45
- },
- {
- "name": "ops over time/incr",
- "value": 54.05487218184924,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 54.05849561693717,
- "#mean": 53.68567997867633,
- "#median": 54.05487218184924,
- "#sd": 0.4071878408984789,
- "#runs": 45
- },
- {
- "name": "time per op/push & pop",
- "value": 21.887680000000003,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 21.60032,
- "#mean": 21.897430270270274,
- "#median": 21.887680000000003,
- "#sd": 0.38878122348225547,
- "#runs": 37
- },
- {
- "name": "ops over time/push & pop",
- "value": 45.68780245325224,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 46.29561043540096,
- "#mean": 45.68118167286782,
- "#median": 45.68780245325224,
- "#sd": 0.773293308409766,
- "#runs": 37
- },
- {
- "name": "time per op/cas int",
- "value": 21.502560000000003,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 21.272920000000003,
- "#mean": 21.441218461538462,
- "#median": 21.502560000000003,
- "#sd": 0.1566055101617365,
- "#runs": 39
- },
- {
- "name": "ops over time/cas int",
- "value": 46.50609043760371,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 47.00812112300521,
- "#mean": 46.64162612291253,
- "#median": 46.50609043760371,
- "#sd": 0.34032008562587945,
- "#runs": 39
- },
- {
- "name": "time per op/xchg int",
- "value": 21.34548,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 21.1186,
- "#mean": 21.330070769230765,
- "#median": 21.34548,
- "#sd": 0.2943268523204163,
- "#runs": 39
- },
- {
- "name": "ops over time/xchg int",
- "value": 46.8483257345349,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 47.351623687176236,
- "#mean": 46.89070403816138,
- "#median": 46.8483257345349,
- "#sd": 0.6187892527569554,
- "#runs": 39
- },
- {
- "name": "time per op/swap",
- "value": 21.77348,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 21.48132,
- "#mean": 21.703271794871796,
- "#median": 21.77348,
- "#sd": 0.1849370363660435,
- "#runs": 39
- },
- {
- "name": "ops over time/swap",
- "value": 45.927430984849465,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 46.55207408110861,
- "#mean": 46.07934664685892,
- "#median": 45.927430984849465,
- "#sd": 0.39248887640426977,
- "#runs": 39
- }
- ]
- },
- {
- "name": "Ref with [@poll error]",
- "metrics": [
- {
- "name": "time per op/get",
- "value": 1.557226,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 1.541466,
- "#mean": 1.5719130000000001,
- "#median": 1.557226,
- "#sd": 0.04920392573221713,
- "#runs": 26
- },
- {
- "name": "ops over time/get",
- "value": 642.1675511256605,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 648.7330891501986,
- "#mean": 636.7486081132546,
- "#median": 642.1675511256605,
- "#sd": 18.566492560136474,
- "#runs": 26
- },
- {
- "name": "time per op/incr",
- "value": 2.00478,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 2.0045800000000003,
- "#mean": 2.0245600000000024,
- "#median": 2.00478,
- "#sd": 0.05698898685624061,
- "#runs": 131
- },
- {
- "name": "ops over time/incr",
- "value": 498.8078492403157,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 498.85761605922437,
- "#mean": 494.29864261257944,
- "#median": 498.8078492403157,
- "#sd": 12.938317879974491,
- "#runs": 131
- },
- {
- "name": "time per op/push & pop",
- "value": 8.637135000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 8.59652,
- "#mean": 8.667686363636365,
- "#median": 8.637135000000001,
- "#sd": 0.11876836330917644,
- "#runs": 22
- },
- {
- "name": "ops over time/push & pop",
- "value": 115.77913755975149,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 116.32614127577206,
- "#mean": 115.39169268199394,
- "#median": 115.77913755975149,
- "#sd": 1.5073603303107257,
- "#runs": 22
- },
- {
- "name": "time per op/cas int",
- "value": 5.24189,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 5.24148,
- "#mean": 5.287179999999998,
- "#median": 5.24189,
- "#sd": 0.07194108741757761,
- "#runs": 68
- },
- {
- "name": "ops over time/cas int",
- "value": 190.77088607422883,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 190.78580858841397,
- "#mean": 189.17117701369352,
- "#median": 190.77088607422883,
- "#sd": 2.5308152402400736,
- "#runs": 68
- },
- {
- "name": "time per op/xchg int",
- "value": 5.395980000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 5.395560000000001,
- "#mean": 5.485817878787876,
- "#median": 5.395980000000001,
- "#sd": 0.15140062960234105,
- "#runs": 66
- },
- {
- "name": "ops over time/xchg int",
- "value": 185.3231479731207,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 185.33757385702316,
- "#mean": 182.4178241932179,
- "#median": 185.3231479731207,
- "#sd": 4.701723228597011,
- "#runs": 66
- },
- {
- "name": "time per op/swap",
- "value": 8.279120000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 8.176520000000002,
- "#mean": 8.2697276,
- "#median": 8.279120000000001,
- "#sd": 0.04046979014326603,
- "#runs": 25
- },
- {
- "name": "ops over time/swap",
- "value": 120.78578399636675,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 122.30141918566822,
- "#mean": 120.9258817669823,
- "#median": 120.78578399636675,
- "#sd": 0.5955614816765215,
- "#runs": 25
- }
- ]
- }
- ]
- }
- (cd _build/default/test/kcas_data && ./accumulator_test_stm.exe)
-
random seed: 281123482
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 1000 0.0s Accumulator sequential
[✓] 1000 0 0 1000 / 1000 0.0s Accumulator sequential
-
[ ] 0 0 0 0 / 1000 0.0s Accumulator concurrent
[ ] 3 0 0 3 / 1000 0.1s Accumulator concurrent
[ ] 8 0 0 8 / 1000 0.3s Accumulator concurrent
[ ] 38 0 0 38 / 1000 0.4s Accumulator concurrent
[ ] 57 0 0 57 / 1000 0.5s Accumulator concurrent
[ ] 62 0 0 62 / 1000 0.6s Accumulator concurrent
[ ] 77 0 0 77 / 1000 0.7s Accumulator concurrent
[ ] 81 0 0 81 / 1000 0.8s Accumulator concurrent
[ ] 90 0 0 90 / 1000 0.9s Accumulator concurrent
[ ] 101 0 0 101 / 1000 1.0s Accumulator concurrent
[ ] 110 0 0 110 / 1000 1.1s Accumulator concurrent
[ ] 123 0 0 123 / 1000 1.3s Accumulator concurrent
[ ] 137 0 0 137 / 1000 1.4s Accumulator concurrent
[ ] 148 0 0 148 / 1000 1.5s Accumulator concurrent
[ ] 156 0 0 156 / 1000 1.6s Accumulator concurrent
[ ] 171 0 0 171 / 1000 1.7s Accumulator concurrent
[ ] 185 0 0 185 / 1000 1.8s Accumulator concurrent
[ ] 191 0 0 191 / 1000 1.9s Accumulator concurrent
[ ] 193 0 0 193 / 1000 2.0s Accumulator concurrent
[ ] 202 0 0 202 / 1000 2.2s Accumulator concurrent
[ ] 213 0 0 213 / 1000 2.3s Accumulator concurrent
[ ] 231 0 0 231 / 1000 2.4s Accumulator concurrent
[ ] 240 0 0 240 / 1000 2.5s Accumulator concurrent
[ ] 260 0 0 260 / 1000 2.6s Accumulator concurrent
[ ] 270 0 0 270 / 1000 2.8s Accumulator concurrent
[ ] 279 0 0 279 / 1000 2.9s Accumulator concurrent
[ ] 294 0 0 294 / 1000 3.1s Accumulator concurrent
[ ] 320 0 0 320 / 1000 3.2s Accumulator concurrent
[ ] 340 0 0 340 / 1000 3.3s Accumulator concurrent
[ ] 353 0 0 353 / 1000 3.5s Accumulator concurrent
[ ] 361 0 0 361 / 1000 3.6s Accumulator concurrent
[ ] 391 0 0 391 / 1000 3.7s Accumulator concurrent
[ ] 399 0 0 399 / 1000 3.8s Accumulator concurrent
[ ] 424 0 0 424 / 1000 4.0s Accumulator concurrent
[ ] 429 0 0 429 / 1000 4.1s Accumulator concurrent
[ ] 469 0 0 469 / 1000 4.2s Accumulator concurrent
[ ] 484 0 0 484 / 1000 4.4s Accumulator concurrent
[ ] 514 0 0 514 / 1000 4.5s Accumulator concurrent
[ ] 526 0 0 526 / 1000 4.6s Accumulator concurrent
[ ] 532 0 0 532 / 1000 4.7s Accumulator concurrent
[ ] 540 0 0 540 / 1000 4.8s Accumulator concurrent
[ ] 552 0 0 552 / 1000 5.0s Accumulator concurrent
[ ] 569 0 0 569 / 1000 5.1s Accumulator concurrent
[ ] 579 0 0 579 / 1000 5.2s Accumulator concurrent
[ ] 588 0 0 588 / 1000 5.4s Accumulator concurrent
[ ] 597 0 0 597 / 1000 5.5s Accumulator concurrent
[ ] 607 0 0 607 / 1000 5.6s Accumulator concurrent
[ ] 630 0 0 630 / 1000 5.8s Accumulator concurrent
[ ] 637 0 0 637 / 1000 5.9s Accumulator concurrent
[ ] 651 0 0 651 / 1000 6.0s Accumulator concurrent
[ ] 675 0 0 675 / 1000 6.1s Accumulator concurrent
[ ] 696 0 0 696 / 1000 6.2s Accumulator concurrent
[ ] 702 0 0 702 / 1000 6.3s Accumulator concurrent
[ ] 708 0 0 708 / 1000 6.4s Accumulator concurrent
[ ] 724 0 0 724 / 1000 6.5s Accumulator concurrent
[ ] 743 0 0 743 / 1000 6.7s Accumulator concurrent
[ ] 747 0 0 747 / 1000 6.8s Accumulator concurrent
[ ] 752 0 0 752 / 1000 7.0s Accumulator concurrent
[ ] 765 0 0 765 / 1000 7.1s Accumulator concurrent
[ ] 773 0 0 773 / 1000 7.2s Accumulator concurrent
[ ] 783 0 0 783 / 1000 7.3s Accumulator concurrent
[ ] 787 0 0 787 / 1000 7.4s Accumulator concurrent
[ ] 789 0 0 789 / 1000 7.6s Accumulator concurrent
[ ] 796 0 0 796 / 1000 7.7s Accumulator concurrent
[ ] 806 0 0 806 / 1000 7.9s Accumulator concurrent
[ ] 819 0 0 819 / 1000 8.0s Accumulator concurrent
[ ] 838 0 0 838 / 1000 8.1s Accumulator concurrent
[ ] 850 0 0 850 / 1000 8.3s Accumulator concurrent
[ ] 865 0 0 865 / 1000 8.4s Accumulator concurrent
[ ] 892 0 0 892 / 1000 8.6s Accumulator concurrent
[ ] 899 0 0 899 / 1000 8.7s Accumulator concurrent
[ ] 920 0 0 920 / 1000 8.8s Accumulator concurrent
[ ] 939 0 0 939 / 1000 8.9s Accumulator concurrent
[ ] 967 0 0 967 / 1000 9.1s Accumulator concurrent
[ ] 990 0 0 990 / 1000 9.2s Accumulator concurrent
[✓] 1000 0 0 1000 / 1000 9.2s Accumulator concurrent
- ================================================================================
- success (ran 2 tests)
- (cd _build/default/test/kcas_data && ./stack_test_stm.exe)
-
random seed: 485021449
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 1000 0.0s Stack sequential
[✓] 1000 0 0 1000 / 1000 0.0s Stack sequential
-
[ ] 0 0 0 0 / 1000 0.0s Stack concurrent
[ ] 5 0 0 5 / 1000 0.1s Stack concurrent
[ ] 31 0 0 31 / 1000 0.2s Stack concurrent
[ ] 43 0 0 43 / 1000 0.3s Stack concurrent
[ ] 74 0 0 74 / 1000 0.5s Stack concurrent
[ ] 93 0 0 93 / 1000 0.7s Stack concurrent
[ ] 100 0 0 100 / 1000 0.8s Stack concurrent
[ ] 110 0 0 110 / 1000 0.9s Stack concurrent
[ ] 115 0 0 115 / 1000 1.0s Stack concurrent
[ ] 117 0 0 117 / 1000 1.2s Stack concurrent
[ ] 129 0 0 129 / 1000 1.3s Stack concurrent
[ ] 146 0 0 146 / 1000 1.4s Stack concurrent
[ ] 148 0 0 148 / 1000 1.6s Stack concurrent
[ ] 156 0 0 156 / 1000 1.7s Stack concurrent
[ ] 168 0 0 168 / 1000 1.8s Stack concurrent
[ ] 173 0 0 173 / 1000 2.0s Stack concurrent
[ ] 190 0 0 190 / 1000 2.2s Stack concurrent
[ ] 200 0 0 200 / 1000 2.3s Stack concurrent
[ ] 219 0 0 219 / 1000 2.4s Stack concurrent
[ ] 233 0 0 233 / 1000 2.5s Stack concurrent
[ ] 247 0 0 247 / 1000 2.7s Stack concurrent
[ ] 262 0 0 262 / 1000 2.8s Stack concurrent
[ ] 276 0 0 276 / 1000 2.9s Stack concurrent
[ ] 281 0 0 281 / 1000 3.1s Stack concurrent
[ ] 289 0 0 289 / 1000 3.2s Stack concurrent
[ ] 325 0 0 325 / 1000 3.3s Stack concurrent
[ ] 343 0 0 343 / 1000 3.4s Stack concurrent
[ ] 350 0 0 350 / 1000 3.5s Stack concurrent
[ ] 376 0 0 376 / 1000 3.6s Stack concurrent
[ ] 414 0 0 414 / 1000 3.7s Stack concurrent
[ ] 433 0 0 433 / 1000 3.8s Stack concurrent
[ ] 440 0 0 440 / 1000 4.0s Stack concurrent
[ ] 451 0 0 451 / 1000 4.1s Stack concurrent
[ ] 464 0 0 464 / 1000 4.2s Stack concurrent
[ ] 477 0 0 477 / 1000 4.3s Stack concurrent
[ ] 509 0 0 509 / 1000 4.5s Stack concurrent
[ ] 521 0 0 521 / 1000 4.6s Stack concurrent
[ ] 539 0 0 539 / 1000 4.7s Stack concurrent
[ ] 548 0 0 548 / 1000 4.8s Stack concurrent
[ ] 553 0 0 553 / 1000 5.0s Stack concurrent
[ ] 573 0 0 573 / 1000 5.1s Stack concurrent
[ ] 582 0 0 582 / 1000 5.2s Stack concurrent
[ ] 589 0 0 589 / 1000 5.3s Stack concurrent
[ ] 598 0 0 598 / 1000 5.4s Stack concurrent
[ ] 624 0 0 624 / 1000 5.6s Stack concurrent
[ ] 643 0 0 643 / 1000 5.7s Stack concurrent
[ ] 659 0 0 659 / 1000 5.8s Stack concurrent
[ ] 668 0 0 668 / 1000 5.9s Stack concurrent
[ ] 680 0 0 680 / 1000 6.0s Stack concurrent
[ ] 685 0 0 685 / 1000 6.1s Stack concurrent
[ ] 687 0 0 687 / 1000 6.3s Stack concurrent
[ ] 696 0 0 696 / 1000 6.4s Stack concurrent
[ ] 717 0 0 717 / 1000 6.5s Stack concurrent
[ ] 728 0 0 728 / 1000 6.6s Stack concurrent
[ ] 733 0 0 733 / 1000 6.8s Stack concurrent
[ ] 740 0 0 740 / 1000 6.9s Stack concurrent
[ ] 752 0 0 752 / 1000 7.0s Stack concurrent
[ ] 762 0 0 762 / 1000 7.2s Stack concurrent
[ ] 775 0 0 775 / 1000 7.3s Stack concurrent
[ ] 777 0 0 777 / 1000 7.4s Stack concurrent
[ ] 805 0 0 805 / 1000 7.5s Stack concurrent
[ ] 823 0 0 823 / 1000 7.7s Stack concurrent
[ ] 827 0 0 827 / 1000 7.8s Stack concurrent
[ ] 832 0 0 832 / 1000 7.9s Stack concurrent
[ ] 849 0 0 849 / 1000 8.0s Stack concurrent
[ ] 878 0 0 878 / 1000 8.1s Stack concurrent
[ ] 887 0 0 887 / 1000 8.2s Stack concurrent
[ ] 900 0 0 900 / 1000 8.4s Stack concurrent
[ ] 912 0 0 912 / 1000 8.5s Stack concurrent
[ ] 940 0 0 940 / 1000 8.6s Stack concurrent
[ ] 957 0 0 957 / 1000 8.7s Stack concurrent
[ ] 965 0 0 965 / 1000 8.8s Stack concurrent
[ ] 967 0 0 967 / 1000 8.9s Stack concurrent
[ ] 994 0 0 994 / 1000 9.1s Stack concurrent
[ ] 999 0 0 999 / 1000 9.3s Stack concurrent
[✓] 1000 0 0 1000 / 1000 9.3s Stack concurrent
- ================================================================================
- success (ran 2 tests)
- (cd _build/default/test/kcas_data && ./hashtbl_test_stm.exe)
-
random seed: 331869173
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 1000 0.0s Hashtbl sequential
[✓] 1000 0 0 1000 / 1000 0.0s Hashtbl sequential
-
[ ] 0 0 0 0 / 1000 0.0s Hashtbl concurrent
[ ] 4 0 0 4 / 1000 0.1s Hashtbl concurrent
[ ] 13 0 0 13 / 1000 0.3s Hashtbl concurrent
[ ] 36 0 0 36 / 1000 0.5s Hashtbl concurrent
[ ] 53 0 0 53 / 1000 0.6s Hashtbl concurrent
[ ] 79 0 0 79 / 1000 0.7s Hashtbl concurrent
[ ] 93 0 0 93 / 1000 0.9s Hashtbl concurrent
[ ] 95 0 0 95 / 1000 1.1s Hashtbl concurrent
[ ] 107 0 0 107 / 1000 1.2s Hashtbl concurrent
[ ] 124 0 0 124 / 1000 1.3s Hashtbl concurrent
[ ] 134 0 0 134 / 1000 1.4s Hashtbl concurrent
[ ] 135 0 0 135 / 1000 1.6s Hashtbl concurrent
[ ] 153 0 0 153 / 1000 1.7s Hashtbl concurrent
[ ] 157 0 0 157 / 1000 1.8s Hashtbl concurrent
[ ] 165 0 0 165 / 1000 2.0s Hashtbl concurrent
[ ] 176 0 0 176 / 1000 2.1s Hashtbl concurrent
[ ] 187 0 0 187 / 1000 2.2s Hashtbl concurrent
[ ] 221 0 0 221 / 1000 2.3s Hashtbl concurrent
[ ] 233 0 0 233 / 1000 2.5s Hashtbl concurrent
[ ] 234 0 0 234 / 1000 2.7s Hashtbl concurrent
[ ] 244 0 0 244 / 1000 2.8s Hashtbl concurrent
[ ] 247 0 0 247 / 1000 2.9s Hashtbl concurrent
[ ] 268 0 0 268 / 1000 3.0s Hashtbl concurrent
[ ] 286 0 0 286 / 1000 3.1s Hashtbl concurrent
[ ] 289 0 0 289 / 1000 3.3s Hashtbl concurrent
[ ] 303 0 0 303 / 1000 3.5s Hashtbl concurrent
[ ] 326 0 0 326 / 1000 3.6s Hashtbl concurrent
[ ] 342 0 0 342 / 1000 3.7s Hashtbl concurrent
[ ] 346 0 0 346 / 1000 3.9s Hashtbl concurrent
[ ] 355 0 0 355 / 1000 4.0s Hashtbl concurrent
[ ] 367 0 0 367 / 1000 4.1s Hashtbl concurrent
[ ] 375 0 0 375 / 1000 4.2s Hashtbl concurrent
[ ] 386 0 0 386 / 1000 4.4s Hashtbl concurrent
[ ] 398 0 0 398 / 1000 4.5s Hashtbl concurrent
[ ] 402 0 0 402 / 1000 4.6s Hashtbl concurrent
[ ] 426 0 0 426 / 1000 4.7s Hashtbl concurrent
[ ] 430 0 0 430 / 1000 4.8s Hashtbl concurrent
[ ] 431 0 0 431 / 1000 5.0s Hashtbl concurrent
[ ] 443 0 0 443 / 1000 5.1s Hashtbl concurrent
[ ] 456 0 0 456 / 1000 5.3s Hashtbl concurrent
[ ] 464 0 0 464 / 1000 5.5s Hashtbl concurrent
[ ] 477 0 0 477 / 1000 5.6s Hashtbl concurrent
[ ] 492 0 0 492 / 1000 5.7s Hashtbl concurrent
[ ] 501 0 0 501 / 1000 5.8s Hashtbl concurrent
[ ] 508 0 0 508 / 1000 5.9s Hashtbl concurrent
[ ] 510 0 0 510 / 1000 6.0s Hashtbl concurrent
[ ] 523 0 0 523 / 1000 6.2s Hashtbl concurrent
[ ] 547 0 0 547 / 1000 6.3s Hashtbl concurrent
[ ] 554 0 0 554 / 1000 6.5s Hashtbl concurrent
[ ] 569 0 0 569 / 1000 6.6s Hashtbl concurrent
[ ] 576 0 0 576 / 1000 6.7s Hashtbl concurrent
[ ] 587 0 0 587 / 1000 6.8s Hashtbl concurrent
[ ] 615 0 0 615 / 1000 6.9s Hashtbl concurrent
[ ] 634 0 0 634 / 1000 7.0s Hashtbl concurrent
[ ] 642 0 0 642 / 1000 7.2s Hashtbl concurrent
[ ] 671 0 0 671 / 1000 7.4s Hashtbl concurrent
[ ] 678 0 0 678 / 1000 7.5s Hashtbl concurrent
[ ] 687 0 0 687 / 1000 7.6s Hashtbl concurrent
[ ] 702 0 0 702 / 1000 7.7s Hashtbl concurrent
[ ] 704 0 0 704 / 1000 7.8s Hashtbl concurrent
[ ] 721 0 0 721 / 1000 8.0s Hashtbl concurrent
[ ] 737 0 0 737 / 1000 8.1s Hashtbl concurrent
[ ] 751 0 0 751 / 1000 8.2s Hashtbl concurrent
[ ] 770 0 0 770 / 1000 8.3s Hashtbl concurrent
[ ] 771 0 0 771 / 1000 8.4s Hashtbl concurrent
[ ] 773 0 0 773 / 1000 8.5s Hashtbl concurrent
[ ] 790 0 0 790 / 1000 8.6s Hashtbl concurrent
[ ] 806 0 0 806 / 1000 8.7s Hashtbl concurrent
[ ] 817 0 0 817 / 1000 8.9s Hashtbl concurrent
[ ] 822 0 0 822 / 1000 9.0s Hashtbl concurrent
[ ] 829 0 0 829 / 1000 9.1s Hashtbl concurrent
[ ] 832 0 0 832 / 1000 9.2s Hashtbl concurrent
[ ] 853 0 0 853 / 1000 9.3s Hashtbl concurrent
[ ] 867 0 0 867 / 1000 9.4s Hashtbl concurrent
[ ] 887 0 0 887 / 1000 9.5s Hashtbl concurrent
[ ] 894 0 0 894 / 1000 9.6s Hashtbl concurrent
[ ] 921 0 0 921 / 1000 9.7s Hashtbl concurrent
[ ] 924 0 0 924 / 1000 9.8s Hashtbl concurrent
[ ] 939 0 0 939 / 1000 9.9s Hashtbl concurrent
[ ] 958 0 0 958 / 1000 10.1s Hashtbl concurrent
[ ] 971 0 0 971 / 1000 10.2s Hashtbl concurrent
[ ] 976 0 0 976 / 1000 10.3s Hashtbl concurrent
[ ] 989 0 0 989 / 1000 10.5s Hashtbl concurrent
[ ] 999 0 0 999 / 1000 10.6s Hashtbl concurrent
[✓] 1000 0 0 1000 / 1000 10.6s Hashtbl concurrent
- ================================================================================
- success (ran 2 tests)
- (cd _build/default/test/kcas_data && ./queue_test_stm.exe)
-
random seed: 508929151
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 1000 0.0s Queue sequential
[✓] 1000 0 0 1000 / 1000 0.0s Queue sequential
-
[ ] 0 0 0 0 / 1000 0.0s Queue concurrent
[ ] 26 0 0 26 / 1000 0.2s Queue concurrent
[ ] 35 0 0 35 / 1000 0.3s Queue concurrent
[ ] 47 0 0 47 / 1000 0.4s Queue concurrent
[ ] 80 0 0 80 / 1000 0.6s Queue concurrent
[ ] 81 0 0 81 / 1000 0.7s Queue concurrent
[ ] 91 0 0 91 / 1000 0.8s Queue concurrent
[ ] 93 0 0 93 / 1000 0.9s Queue concurrent
[ ] 94 0 0 94 / 1000 1.0s Queue concurrent
[ ] 108 0 0 108 / 1000 1.2s Queue concurrent
[ ] 129 0 0 129 / 1000 1.3s Queue concurrent
[ ] 144 0 0 144 / 1000 1.4s Queue concurrent
[ ] 163 0 0 163 / 1000 1.5s Queue concurrent
[ ] 170 0 0 170 / 1000 1.7s Queue concurrent
[ ] 177 0 0 177 / 1000 1.8s Queue concurrent
[ ] 185 0 0 185 / 1000 1.9s Queue concurrent
[ ] 203 0 0 203 / 1000 2.0s Queue concurrent
[ ] 213 0 0 213 / 1000 2.1s Queue concurrent
[ ] 222 0 0 222 / 1000 2.2s Queue concurrent
[ ] 232 0 0 232 / 1000 2.4s Queue concurrent
[ ] 240 0 0 240 / 1000 2.5s Queue concurrent
[ ] 266 0 0 266 / 1000 2.6s Queue concurrent
[ ] 283 0 0 283 / 1000 2.7s Queue concurrent
[ ] 304 0 0 304 / 1000 2.9s Queue concurrent
[ ] 314 0 0 314 / 1000 3.0s Queue concurrent
[ ] 320 0 0 320 / 1000 3.1s Queue concurrent
[ ] 328 0 0 328 / 1000 3.2s Queue concurrent
[ ] 342 0 0 342 / 1000 3.4s Queue concurrent
[ ] 352 0 0 352 / 1000 3.5s Queue concurrent
[ ] 356 0 0 356 / 1000 3.7s Queue concurrent
[ ] 366 0 0 366 / 1000 3.8s Queue concurrent
[ ] 369 0 0 369 / 1000 3.9s Queue concurrent
[ ] 375 0 0 375 / 1000 4.0s Queue concurrent
[ ] 386 0 0 386 / 1000 4.1s Queue concurrent
[ ] 399 0 0 399 / 1000 4.2s Queue concurrent
[ ] 405 0 0 405 / 1000 4.4s Queue concurrent
[ ] 418 0 0 418 / 1000 4.5s Queue concurrent
[ ] 430 0 0 430 / 1000 4.7s Queue concurrent
[ ] 435 0 0 435 / 1000 4.8s Queue concurrent
[ ] 437 0 0 437 / 1000 4.9s Queue concurrent
[ ] 448 0 0 448 / 1000 5.1s Queue concurrent
[ ] 467 0 0 467 / 1000 5.2s Queue concurrent
[ ] 491 0 0 491 / 1000 5.3s Queue concurrent
[ ] 503 0 0 503 / 1000 5.5s Queue concurrent
[ ] 522 0 0 522 / 1000 5.6s Queue concurrent
[ ] 563 0 0 563 / 1000 5.7s Queue concurrent
[ ] 567 0 0 567 / 1000 5.8s Queue concurrent
[ ] 574 0 0 574 / 1000 6.0s Queue concurrent
[ ] 577 0 0 577 / 1000 6.1s Queue concurrent
[ ] 583 0 0 583 / 1000 6.2s Queue concurrent
[ ] 588 0 0 588 / 1000 6.4s Queue concurrent
[ ] 606 0 0 606 / 1000 6.5s Queue concurrent
[ ] 609 0 0 609 / 1000 6.6s Queue concurrent
[ ] 616 0 0 616 / 1000 6.7s Queue concurrent
[ ] 624 0 0 624 / 1000 6.8s Queue concurrent
[ ] 642 0 0 642 / 1000 7.0s Queue concurrent
[ ] 650 0 0 650 / 1000 7.1s Queue concurrent
[ ] 659 0 0 659 / 1000 7.3s Queue concurrent
[ ] 670 0 0 670 / 1000 7.4s Queue concurrent
[ ] 680 0 0 680 / 1000 7.5s Queue concurrent
[ ] 688 0 0 688 / 1000 7.6s Queue concurrent
[ ] 699 0 0 699 / 1000 7.7s Queue concurrent
[ ] 719 0 0 719 / 1000 7.8s Queue concurrent
[ ] 732 0 0 732 / 1000 8.0s Queue concurrent
[ ] 742 0 0 742 / 1000 8.1s Queue concurrent
[ ] 765 0 0 765 / 1000 8.2s Queue concurrent
[ ] 775 0 0 775 / 1000 8.3s Queue concurrent
[ ] 795 0 0 795 / 1000 8.5s Queue concurrent
[ ] 808 0 0 808 / 1000 8.6s Queue concurrent
[ ] 830 0 0 830 / 1000 8.7s Queue concurrent
[ ] 836 0 0 836 / 1000 8.9s Queue concurrent
[ ] 839 0 0 839 / 1000 9.0s Queue concurrent
[ ] 842 0 0 842 / 1000 9.1s Queue concurrent
[ ] 849 0 0 849 / 1000 9.3s Queue concurrent
[ ] 874 0 0 874 / 1000 9.4s Queue concurrent
[ ] 889 0 0 889 / 1000 9.6s Queue concurrent
[ ] 897 0 0 897 / 1000 9.7s Queue concurrent
[ ] 903 0 0 903 / 1000 9.8s Queue concurrent
[ ] 931 0 0 931 / 1000 10.0s Queue concurrent
[ ] 933 0 0 933 / 1000 10.1s Queue concurrent
[ ] 947 0 0 947 / 1000 10.2s Queue concurrent
[ ] 951 0 0 951 / 1000 10.4s Queue concurrent
[ ] 971 0 0 971 / 1000 10.6s Queue concurrent
[ ] 976 0 0 976 / 1000 10.7s Queue concurrent
[ ] 980 0 0 980 / 1000 10.8s Queue concurrent
[ ] 996 0 0 996 / 1000 10.9s Queue concurrent
[ ] 1000 0 0 1000 / 1000 11.0s Queue concurrent
[✓] 1000 0 0 1000 / 1000 11.0s Queue concurrent
- ================================================================================
- success (ran 2 tests)
- (cd _build/default/test/kcas_data && ./dllist_test_stm.exe)
-
random seed: 488210080
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 1000 0.0s Dllist sequential
[✓] 1000 0 0 1000 / 1000 0.0s Dllist sequential
-
[ ] 0 0 0 0 / 1000 0.0s Dllist concurrent
[ ] 3 0 0 3 / 1000 0.1s Dllist concurrent
[ ] 10 0 0 10 / 1000 0.2s Dllist concurrent
[ ] 17 0 0 17 / 1000 0.4s Dllist concurrent
[ ] 18 0 0 18 / 1000 0.5s Dllist concurrent
[ ] 24 0 0 24 / 1000 0.6s Dllist concurrent
[ ] 32 0 0 32 / 1000 0.7s Dllist concurrent
[ ] 37 0 0 37 / 1000 0.9s Dllist concurrent
[ ] 50 0 0 50 / 1000 1.0s Dllist concurrent
[ ] 53 0 0 53 / 1000 1.1s Dllist concurrent
[ ] 64 0 0 64 / 1000 1.2s Dllist concurrent
[ ] 69 0 0 69 / 1000 1.3s Dllist concurrent
[ ] 70 0 0 70 / 1000 1.5s Dllist concurrent
[ ] 79 0 0 79 / 1000 1.6s Dllist concurrent
[ ] 101 0 0 101 / 1000 1.7s Dllist concurrent
[ ] 109 0 0 109 / 1000 1.9s Dllist concurrent
[ ] 118 0 0 118 / 1000 2.0s Dllist concurrent
[ ] 119 0 0 119 / 1000 2.1s Dllist concurrent
[ ] 120 0 0 120 / 1000 2.2s Dllist concurrent
[ ] 129 0 0 129 / 1000 2.4s Dllist concurrent
[ ] 141 0 0 141 / 1000 2.5s Dllist concurrent
[ ] 157 0 0 157 / 1000 2.6s Dllist concurrent
[ ] 158 0 0 158 / 1000 2.7s Dllist concurrent
[ ] 169 0 0 169 / 1000 2.8s Dllist concurrent
[ ] 178 0 0 178 / 1000 2.9s Dllist concurrent
[ ] 193 0 0 193 / 1000 3.0s Dllist concurrent
[ ] 196 0 0 196 / 1000 3.1s Dllist concurrent
[ ] 200 0 0 200 / 1000 3.2s Dllist concurrent
[ ] 209 0 0 209 / 1000 3.4s Dllist concurrent
[ ] 220 0 0 220 / 1000 3.5s Dllist concurrent
[ ] 223 0 0 223 / 1000 3.6s Dllist concurrent
[ ] 234 0 0 234 / 1000 3.8s Dllist concurrent
[ ] 241 0 0 241 / 1000 3.9s Dllist concurrent
[ ] 248 0 0 248 / 1000 4.1s Dllist concurrent
[ ] 257 0 0 257 / 1000 4.2s Dllist concurrent
[ ] 274 0 0 274 / 1000 4.4s Dllist concurrent
[ ] 279 0 0 279 / 1000 4.5s Dllist concurrent
[ ] 290 0 0 290 / 1000 4.6s Dllist concurrent
[ ] 310 0 0 310 / 1000 4.7s Dllist concurrent
[ ] 319 0 0 319 / 1000 4.8s Dllist concurrent
[ ] 328 0 0 328 / 1000 4.9s Dllist concurrent
[ ] 341 0 0 341 / 1000 5.1s Dllist concurrent
[ ] 343 0 0 343 / 1000 5.2s Dllist concurrent
[ ] 344 0 0 344 / 1000 5.3s Dllist concurrent
[ ] 362 0 0 362 / 1000 5.5s Dllist concurrent
[ ] 371 0 0 371 / 1000 5.6s Dllist concurrent
[ ] 393 0 0 393 / 1000 5.7s Dllist concurrent
[ ] 404 0 0 404 / 1000 5.9s Dllist concurrent
[ ] 416 0 0 416 / 1000 6.0s Dllist concurrent
[ ] 427 0 0 427 / 1000 6.1s Dllist concurrent
[ ] 442 0 0 442 / 1000 6.2s Dllist concurrent
[ ] 450 0 0 450 / 1000 6.3s Dllist concurrent
[ ] 455 0 0 455 / 1000 6.4s Dllist concurrent
[ ] 471 0 0 471 / 1000 6.6s Dllist concurrent
[ ] 475 0 0 475 / 1000 6.7s Dllist concurrent
[ ] 488 0 0 488 / 1000 6.9s Dllist concurrent
[ ] 491 0 0 491 / 1000 7.0s Dllist concurrent
[ ] 512 0 0 512 / 1000 7.2s Dllist concurrent
[ ] 520 0 0 520 / 1000 7.3s Dllist concurrent
[ ] 534 0 0 534 / 1000 7.5s Dllist concurrent
[ ] 554 0 0 554 / 1000 7.6s Dllist concurrent
[ ] 565 0 0 565 / 1000 7.7s Dllist concurrent
[ ] 583 0 0 583 / 1000 7.8s Dllist concurrent
[ ] 593 0 0 593 / 1000 7.9s Dllist concurrent
[ ] 597 0 0 597 / 1000 8.0s Dllist concurrent
[ ] 613 0 0 613 / 1000 8.2s Dllist concurrent
[ ] 620 0 0 620 / 1000 8.3s Dllist concurrent
[ ] 642 0 0 642 / 1000 8.5s Dllist concurrent
[ ] 656 0 0 656 / 1000 8.6s Dllist concurrent
[ ] 667 0 0 667 / 1000 8.7s Dllist concurrent
[ ] 670 0 0 670 / 1000 8.8s Dllist concurrent
[ ] 684 0 0 684 / 1000 8.9s Dllist concurrent
[ ] 698 0 0 698 / 1000 9.1s Dllist concurrent
[ ] 702 0 0 702 / 1000 9.2s Dllist concurrent
[ ] 712 0 0 712 / 1000 9.3s Dllist concurrent
[ ] 715 0 0 715 / 1000 9.5s Dllist concurrent
[ ] 722 0 0 722 / 1000 9.6s Dllist concurrent
[ ] 740 0 0 740 / 1000 9.7s Dllist concurrent
[ ] 762 0 0 762 / 1000 9.8s Dllist concurrent
[ ] 772 0 0 772 / 1000 9.9s Dllist concurrent
[ ] 787 0 0 787 / 1000 10.1s Dllist concurrent
[ ] 792 0 0 792 / 1000 10.2s Dllist concurrent
[ ] 800 0 0 800 / 1000 10.4s Dllist concurrent
[ ] 812 0 0 812 / 1000 10.5s Dllist concurrent
[ ] 817 0 0 817 / 1000 10.6s Dllist concurrent
[ ] 832 0 0 832 / 1000 10.7s Dllist concurrent
[ ] 858 0 0 858 / 1000 10.9s Dllist concurrent
[ ] 875 0 0 875 / 1000 11.0s Dllist concurrent
[ ] 884 0 0 884 / 1000 11.1s Dllist concurrent
[ ] 903 0 0 903 / 1000 11.2s Dllist concurrent
[ ] 908 0 0 908 / 1000 11.3s Dllist concurrent
[ ] 919 0 0 919 / 1000 11.5s Dllist concurrent
[ ] 937 0 0 937 / 1000 11.6s Dllist concurrent
[ ] 943 0 0 943 / 1000 11.7s Dllist concurrent
[ ] 948 0 0 948 / 1000 11.8s Dllist concurrent
[ ] 967 0 0 967 / 1000 11.9s Dllist concurrent
[ ] 970 0 0 970 / 1000 12.0s Dllist concurrent
[ ] 974 0 0 974 / 1000 12.1s Dllist concurrent
[ ] 992 0 0 992 / 1000 12.2s Dllist concurrent
[✓] 1000 0 0 1000 / 1000 12.3s Dllist concurrent
- ================================================================================
- success (ran 2 tests)
- (cd _build/default/test/kcas_data && ./linearizable_chaining_example.exe)
-
random seed: 88150955
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 1000 0.0s Hashtbl_with_order sequential
[✓] 1000 0 0 1000 / 1000 0.0s Hashtbl_with_order sequential
-
[ ] 0 0 0 0 / 1000 0.0s Hashtbl_with_order concurrent
[ ] 6 0 0 6 / 1000 0.2s Hashtbl_with_order concurrent
[ ] 21 0 0 21 / 1000 0.3s Hashtbl_with_order concurrent
[ ] 35 0 0 35 / 1000 0.5s Hashtbl_with_order concurrent
[ ] 45 0 0 45 / 1000 0.6s Hashtbl_with_order concurrent
[ ] 54 0 0 54 / 1000 0.9s Hashtbl_with_order concurrent
[ ] 64 0 0 64 / 1000 1.1s Hashtbl_with_order concurrent
[ ] 89 0 0 89 / 1000 1.2s Hashtbl_with_order concurrent
[ ] 97 0 0 97 / 1000 1.3s Hashtbl_with_order concurrent
[ ] 102 0 0 102 / 1000 1.5s Hashtbl_with_order concurrent
[ ] 106 0 0 106 / 1000 1.6s Hashtbl_with_order concurrent
[ ] 112 0 0 112 / 1000 1.8s Hashtbl_with_order concurrent
[ ] 119 0 0 119 / 1000 2.0s Hashtbl_with_order concurrent
[ ] 132 0 0 132 / 1000 2.2s Hashtbl_with_order concurrent
[ ] 146 0 0 146 / 1000 2.3s Hashtbl_with_order concurrent
[ ] 157 0 0 157 / 1000 2.4s Hashtbl_with_order concurrent
[ ] 161 0 0 161 / 1000 2.5s Hashtbl_with_order concurrent
[ ] 185 0 0 185 / 1000 2.7s Hashtbl_with_order concurrent
[ ] 200 0 0 200 / 1000 2.8s Hashtbl_with_order concurrent
[ ] 201 0 0 201 / 1000 3.0s Hashtbl_with_order concurrent
[ ] 203 0 0 203 / 1000 3.2s Hashtbl_with_order concurrent
[ ] 216 0 0 216 / 1000 3.3s Hashtbl_with_order concurrent
[ ] 222 0 0 222 / 1000 3.4s Hashtbl_with_order concurrent
[ ] 226 0 0 226 / 1000 3.6s Hashtbl_with_order concurrent
[ ] 227 0 0 227 / 1000 3.7s Hashtbl_with_order concurrent
[ ] 229 0 0 229 / 1000 3.9s Hashtbl_with_order concurrent
[ ] 230 0 0 230 / 1000 4.0s Hashtbl_with_order concurrent
[ ] 239 0 0 239 / 1000 4.3s Hashtbl_with_order concurrent
[ ] 244 0 0 244 / 1000 4.5s Hashtbl_with_order concurrent
[ ] 247 0 0 247 / 1000 4.6s Hashtbl_with_order concurrent
[ ] 262 0 0 262 / 1000 4.7s Hashtbl_with_order concurrent
[ ] 287 0 0 287 / 1000 4.8s Hashtbl_with_order concurrent
[ ] 295 0 0 295 / 1000 5.0s Hashtbl_with_order concurrent
[ ] 298 0 0 298 / 1000 5.2s Hashtbl_with_order concurrent
[ ] 315 0 0 315 / 1000 5.3s Hashtbl_with_order concurrent
[ ] 322 0 0 322 / 1000 5.5s Hashtbl_with_order concurrent
[ ] 329 0 0 329 / 1000 5.6s Hashtbl_with_order concurrent
[ ] 343 0 0 343 / 1000 5.7s Hashtbl_with_order concurrent
[ ] 352 0 0 352 / 1000 5.8s Hashtbl_with_order concurrent
[ ] 366 0 0 366 / 1000 6.0s Hashtbl_with_order concurrent
[ ] 384 0 0 384 / 1000 6.2s Hashtbl_with_order concurrent
[ ] 385 0 0 385 / 1000 6.3s Hashtbl_with_order concurrent
[ ] 395 0 0 395 / 1000 6.4s Hashtbl_with_order concurrent
[ ] 399 0 0 399 / 1000 6.6s Hashtbl_with_order concurrent
[ ] 402 0 0 402 / 1000 6.8s Hashtbl_with_order concurrent
[ ] 417 0 0 417 / 1000 6.9s Hashtbl_with_order concurrent
[ ] 427 0 0 427 / 1000 7.0s Hashtbl_with_order concurrent
[ ] 428 0 0 428 / 1000 7.1s Hashtbl_with_order concurrent
[ ] 429 0 0 429 / 1000 7.3s Hashtbl_with_order concurrent
[ ] 441 0 0 441 / 1000 7.4s Hashtbl_with_order concurrent
[ ] 456 0 0 456 / 1000 7.6s Hashtbl_with_order concurrent
[ ] 460 0 0 460 / 1000 7.7s Hashtbl_with_order concurrent
[ ] 468 0 0 468 / 1000 8.0s Hashtbl_with_order concurrent
[ ] 469 0 0 469 / 1000 8.1s Hashtbl_with_order concurrent
[ ] 481 0 0 481 / 1000 8.3s Hashtbl_with_order concurrent
[ ] 486 0 0 486 / 1000 8.5s Hashtbl_with_order concurrent
[ ] 501 0 0 501 / 1000 8.6s Hashtbl_with_order concurrent
[ ] 521 0 0 521 / 1000 8.7s Hashtbl_with_order concurrent
[ ] 538 0 0 538 / 1000 8.8s Hashtbl_with_order concurrent
[ ] 551 0 0 551 / 1000 8.9s Hashtbl_with_order concurrent
[ ] 560 0 0 560 / 1000 9.0s Hashtbl_with_order concurrent
[ ] 570 0 0 570 / 1000 9.1s Hashtbl_with_order concurrent
[ ] 591 0 0 591 / 1000 9.2s Hashtbl_with_order concurrent
[ ] 604 0 0 604 / 1000 9.3s Hashtbl_with_order concurrent
[ ] 614 0 0 614 / 1000 9.4s Hashtbl_with_order concurrent
[ ] 625 0 0 625 / 1000 9.6s Hashtbl_with_order concurrent
[ ] 632 0 0 632 / 1000 9.8s Hashtbl_with_order concurrent
[ ] 650 0 0 650 / 1000 9.9s Hashtbl_with_order concurrent
[ ] 660 0 0 660 / 1000 10.0s Hashtbl_with_order concurrent
[ ] 665 0 0 665 / 1000 10.2s Hashtbl_with_order concurrent
[ ] 666 0 0 666 / 1000 10.3s Hashtbl_with_order concurrent
[ ] 669 0 0 669 / 1000 10.5s Hashtbl_with_order concurrent
[ ] 676 0 0 676 / 1000 10.6s Hashtbl_with_order concurrent
[ ] 684 0 0 684 / 1000 10.7s Hashtbl_with_order concurrent
[ ] 690 0 0 690 / 1000 10.9s Hashtbl_with_order concurrent
[ ] 700 0 0 700 / 1000 11.0s Hashtbl_with_order concurrent
[ ] 712 0 0 712 / 1000 11.2s Hashtbl_with_order concurrent
[ ] 729 0 0 729 / 1000 11.4s Hashtbl_with_order concurrent
[ ] 740 0 0 740 / 1000 11.5s Hashtbl_with_order concurrent
[ ] 747 0 0 747 / 1000 11.6s Hashtbl_with_order concurrent
[ ] 750 0 0 750 / 1000 11.7s Hashtbl_with_order concurrent
[ ] 753 0 0 753 / 1000 11.9s Hashtbl_with_order concurrent
[ ] 765 0 0 765 / 1000 12.0s Hashtbl_with_order concurrent
[ ] 775 0 0 775 / 1000 12.1s Hashtbl_with_order concurrent
[ ] 791 0 0 791 / 1000 12.2s Hashtbl_with_order concurrent
[ ] 797 0 0 797 / 1000 12.3s Hashtbl_with_order concurrent
[ ] 814 0 0 814 / 1000 12.5s Hashtbl_with_order concurrent
[ ] 823 0 0 823 / 1000 12.7s Hashtbl_with_order concurrent
[ ] 843 0 0 843 / 1000 12.8s Hashtbl_with_order concurrent
[ ] 854 0 0 854 / 1000 12.9s Hashtbl_with_order concurrent
[ ] 858 0 0 858 / 1000 13.1s Hashtbl_with_order concurrent
[ ] 874 0 0 874 / 1000 13.2s Hashtbl_with_order concurrent
[ ] 881 0 0 881 / 1000 13.3s Hashtbl_with_order concurrent
[ ] 882 0 0 882 / 1000 13.5s Hashtbl_with_order concurrent
[ ] 896 0 0 896 / 1000 13.6s Hashtbl_with_order concurrent
[ ] 907 0 0 907 / 1000 13.7s Hashtbl_with_order concurrent
[ ] 912 0 0 912 / 1000 13.9s Hashtbl_with_order concurrent
[ ] 915 0 0 915 / 1000 14.0s Hashtbl_with_order concurrent
[ ] 922 0 0 922 / 1000 14.1s Hashtbl_with_order concurrent
[ ] 927 0 0 927 / 1000 14.3s Hashtbl_with_order concurrent
[ ] 935 0 0 935 / 1000 14.4s Hashtbl_with_order concurrent
[ ] 954 0 0 954 / 1000 14.5s Hashtbl_with_order concurrent
[ ] 961 0 0 961 / 1000 14.7s Hashtbl_with_order concurrent
[ ] 965 0 0 965 / 1000 15.0s Hashtbl_with_order concurrent
[ ] 969 0 0 969 / 1000 15.1s Hashtbl_with_order concurrent
[ ] 982 0 0 982 / 1000 15.4s Hashtbl_with_order concurrent
[ ] 991 0 0 991 / 1000 15.5s Hashtbl_with_order concurrent
[ ] 995 0 0 995 / 1000 15.7s Hashtbl_with_order concurrent
[ ] 998 0 0 998 / 1000 15.8s Hashtbl_with_order concurrent
[✓] 1000 0 0 1000 / 1000 15.8s Hashtbl_with_order concurrent
- ================================================================================
- success (ran 2 tests)
-> compiled kcas_data.0.7.0
-> removed kcas_data.0.7.0
-> installed kcas_data.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:04.19 ---> saved as "5d99008f61a8f6a900cf7cacba4faf47fa640ac34e3125c34e7af87b9db23c36"
Job succeeded
2026-04-11 03:04.26: Job succeeded