- github
- ocaml
- opam-repository
- 89a6ae
- compilers,4.14,dune.3.23.0~alpha2,revdeps,kcas_data.0.7.0
(not at the head of any monitored branch or PR)
2026-04-30 02:04.40: New job: test kcas_data.0.7.0 with dune.3.23.0~alpha2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29824/head (89a6ae888498500bf7c0fc05361da936fc6acacf)
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/29824/head" && git reset --hard 89a6ae88
git fetch origin master
git merge --no-edit d1c56642b8ca7e1166c90bfe0c74f38007bbad58
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353
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.23.0~alpha2 3.23.0~alpha2
RUN opam reinstall dune.3.23.0~alpha2; \
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.23.0~alpha2' && 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-30 02:04.40: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353-dune.3.23.0~alpha2-kcas_data.0.7.0-89a6ae888498500bf7c0fc05361da936fc6acacf"
2026-04-30 02:04.40: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353)
(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.23.0~alpha2 3.23.0~alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.23.0~alpha2;\
\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.23.0~alpha2' && 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-30 02:04.40: Waiting for resource in pool OCluster
2026-04-30 08:02.18: Waiting for worker…
2026-04-30 08:05.03: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files: 89% (16996/18887)
Updating files: 90% (16999/18887)
Updating files: 91% (17188/18887)
Updating files: 92% (17377/18887)
Updating files: 93% (17565/18887)
Updating files: 94% (17754/18887)
Updating files: 95% (17943/18887)
Updating files: 96% (18132/18887)
Updating files: 97% (18321/18887)
Updating files: 98% (18510/18887)
Updating files: 99% (18699/18887)
Updating files: 100% (18887/18887)
Updating files: 100% (18887/18887), done.
HEAD is now at d1c56642b8 Merge pull request #29820 from jmid/core-0.17.1-bound
Merge made by the 'ort' strategy.
.../chrome-trace/chrome-trace.3.23.0~alpha2/opam | 39 +++++++++++
.../dune-action-plugin.3.23.0~alpha2/opam | 52 ++++++++++++++
.../dune-action-trace.3.23.0~alpha2/opam | 39 +++++++++++
.../dune-build-info.3.23.0~alpha2/opam | 45 ++++++++++++
.../dune-configurator.3.23.0~alpha2/opam | 49 +++++++++++++
packages/dune-glob/dune-glob.3.23.0~alpha2/opam | 42 ++++++++++++
.../dune-private-libs.3.23.0~alpha2/opam | 50 ++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam | 41 +++++++++++
packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam | 44 ++++++++++++
packages/dune-site/dune-site.3.23.0~alpha2/opam | 37 ++++++++++
packages/dune/dune.3.23.0~alpha2/opam | 80 ++++++++++++++++++++++
packages/dyn/dyn.3.23.0~alpha2/opam | 40 +++++++++++
packages/fs-io/fs-io.3.23.0~alpha2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam | 43 ++++++++++++
packages/ordering/ordering.3.23.0~alpha2/opam | 38 ++++++++++
packages/stdune/stdune.3.23.0~alpha2/opam | 46 +++++++++++++
.../top-closure/top-closure.3.23.0~alpha2/opam | 38 ++++++++++
packages/xdg/xdg.3.23.0~alpha2/opam | 39 +++++++++++
18 files changed, 801 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.23.0~alpha2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.23.0~alpha2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.23.0~alpha2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.23.0~alpha2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.23.0~alpha2/opam
create mode 100644 packages/dune-glob/dune-glob.3.23.0~alpha2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.23.0~alpha2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam
create mode 100644 packages/dune-site/dune-site.3.23.0~alpha2/opam
create mode 100644 packages/dune/dune.3.23.0~alpha2/opam
create mode 100644 packages/dyn/dyn.3.23.0~alpha2/opam
create mode 100644 packages/fs-io/fs-io.3.23.0~alpha2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam
create mode 100644 packages/ordering/ordering.3.23.0~alpha2/opam
create mode 100644 packages/stdune/stdune.3.23.0~alpha2/opam
create mode 100644 packages/top-closure/top-closure.3.23.0~alpha2/opam
create mode 100644 packages/xdg/xdg.3.23.0~alpha2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353)
2026-04-30 08:05.06 ---> using "59750879172620501422dd230c4db220684ca7fe3e97409754eb72dcd3390183" 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-30 08:05.06 ---> using "b9ebb375f27da820f646269f579489455309b96c19083cd92f7f6ddd05a4b5f2" 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.
Continue? [Y/n] y
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.
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-30 08:05.06 ---> using "a861010f9e8d58738e62217a8c0fc067b85ae67b915e1ef93e08d814bb3c914c" 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.1
# 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 71
# 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-30 08:05.06 ---> using "a880c606232c92d84d818c349c45696fe9be139917bfa5f7b1065b497e8df441" 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-30 08:05.06 ---> using "47c085e53aa5880966ff9fc1e1e12a4661255166181f7931a397db06034201cf" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-30 08:05.08 ---> using "4f46738dfb91aa0cd6670022d574de26b7ba05050d8f85957ea4872d96399e01" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-30 08:05.08 ---> using "f445e8c26fbca2dd0e343fb9cad949aab8e50ebe8f19361a10c799b6322ab39c" 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 [129 kB]
- Fetched 219 kB in 0s (1237 kB/s)
- Reading package lists...
2026-04-30 08:05.08 ---> using "b966a5b49a15ba3eb63ca44315c18e89b0e8b1ab5327a74622eb8f27705503f7" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.23.0~alpha2 3.23.0~alpha2"))
dune is now pinned to version 3.23.0~alpha2
2026-04-30 08:05.08 ---> using "25765793fc7cef20054e052a9de3d7d38466f3811e35fee48d28bad9710db3b2" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.23.0~alpha2;\
\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.23.0~alpha2' && 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.23.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.23.0~alpha2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.23.0~alpha2 (cached)
-> installed dune.3.23.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 08:05.08 ---> using "8638839e5ae5cf3f1965d4f7cf42b88935780d5bcff7e41a79deffdd572bdcbf" 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)
-> installed backoff.0.1.1
-> retrieved psq.0.2.1 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> 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-30 08:05.35 ---> saved as "413e6009934f4c38573c0ccb5d824ac99530d4ee5bdedfaabda756b6c25b55f0"
/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.1 [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.1.0 [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.1 (https://opam.ocaml.org/cache)
-> retrieved cppo.1.8.0 (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2 (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> 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.1.0 (https://opam.ocaml.org/cache)
-> retrieved qcheck-core.0.91 (https://opam.ocaml.org/cache)
-> installed cppo.1.8.0
-> retrieved qcheck-multicoretests-util.0.10, qcheck-stm.0.10 (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> installed ocaml-version.4.1.0
-> 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)
-> retrieved yojson.3.0.0 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed result.1.5
-> installed stdlib-shims.0.3.0
-> installed qcheck-core.0.91
-> installed re.1.14.0
-> installed yojson.3.0.0
-> installed qcheck-multicoretests-util.0.10
-> installed qcheck-stm.0.10
-> installed multicore-bench.0.1.7
-> removed kcas_data.0.7.0
-> installed cmdliner.2.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed logs.0.10.0
-> installed alcotest.1.9.1
-> installed mdx.2.5.2
-> installed kcas_data.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 08:06.31 ---> saved as "5a5947761978f88b36fb2ddcbf8af02c7da15fc46146a56cc30181237182401a"
/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" "71" "@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 && ./stack_test.exe)
- Testing `Stack'.
- This run has ID `WWX05E09'.
-
- [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 && ./dllist_test.exe)
- Testing `Dllist'.
- This run has ID `C0EXOOV2'.
-
- [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 && ./xt_test.exe)
- Testing `Transactions'.
- This run has ID `YHM12MXW'.
-
- [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 && ./queue_test.exe)
- Testing `Queue'.
- This run has ID `WF1KDNJF'.
-
- [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 && ./mvar_test.exe)
- Testing `Mvar'.
- This run has ID `6U1KPL8N'.
-
- [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 && ./hashtbl_test.exe)
- Testing `Hashtbl'.
- This run has ID `6QRV3R3L'.
-
- [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.008s. 4 tests run.
- (cd _build/default/bench && ./main.exe)
- {
- "results": [
- {
- "name": "Atomic",
- "metrics": [
- {
- "name": "time per op/get",
- "value": 2.5086630000000003,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 2.412612,
- "#mean": 2.502304125,
- "#median": 2.5086630000000003,
- "#sd": 0.031817178940540536,
- "#runs": 16
- },
- {
- "name": "ops over time/get",
- "value": 398.6194356497841,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 414.4885294444361,
- "#mean": 399.6971049208029,
- "#median": 398.6194356497841,
- "#sd": 5.146809862745503,
- "#runs": 16
- },
- {
- "name": "time per op/incr",
- "value": 4.0414,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 3.8484800000000003,
- "#mean": 4.0499643373494,
- "#median": 4.0414,
- "#sd": 0.13864219087139798,
- "#runs": 83
- },
- {
- "name": "ops over time/incr",
- "value": 247.43900628495072,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 259.8428470461065,
- "#mean": 247.19214715413705,
- "#median": 247.43900628495072,
- "#sd": 8.091672994641392,
- "#runs": 83
- },
- {
- "name": "time per op/push & pop",
- "value": 11.568095000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 11.3835,
- "#mean": 11.579303750000005,
- "#median": 11.568095000000001,
- "#sd": 0.14987492122078838,
- "#runs": 16
- },
- {
- "name": "ops over time/push & pop",
- "value": 86.44495010352436,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 87.8464444151623,
- "#mean": 86.37526094941505,
- "#median": 86.44495010352436,
- "#sd": 1.103616766180467,
- "#runs": 16
- },
- {
- "name": "time per op/cas int",
- "value": 6.7773200000000005,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 6.34914,
- "#mean": 6.846604727272728,
- "#median": 6.7773200000000005,
- "#sd": 0.2814891575490128,
- "#runs": 55
- },
- {
- "name": "ops over time/cas int",
- "value": 147.55094934280808,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 157.50164589219958,
- "#mean": 146.27552309753833,
- "#median": 147.55094934280808,
- "#sd": 5.3200244986604925,
- "#runs": 55
- },
- {
- "name": "time per op/xchg int",
- "value": 6.5975600000000005,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 6.2929,
- "#mean": 6.632582857142856,
- "#median": 6.5975600000000005,
- "#sd": 0.2419890149935551,
- "#runs": 56
- },
- {
- "name": "ops over time/xchg int",
- "value": 151.5711965191185,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 158.9092469290788,
- "#mean": 150.97019756855693,
- "#median": 151.5711965191185,
- "#sd": 5.466791568756572,
- "#runs": 56
- },
- {
- "name": "time per op/swap",
- "value": 10.38265,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 10.122240000000001,
- "#mean": 10.499084736842105,
- "#median": 10.38265,
- "#sd": 0.5383031345897414,
- "#runs": 19
- },
- {
- "name": "ops over time/swap",
- "value": 96.31452471189918,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 98.7923621648963,
- "#mean": 95.45749069958629,
- "#median": 96.31452471189918,
- "#sd": 4.121472933602333,
- "#runs": 19
- }
- ]
- },
- {
- "name": "Kcas Loc",
- "metrics": [
- {
- "name": "time per op/get",
- "value": 3.904772,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 3.847,
- "#mean": 3.9053704000000002,
- "#median": 3.904772,
- "#sd": 0.05618675314911874,
- "#runs": 40
- },
- {
- "name": "ops over time/get",
- "value": 256.09696365965027,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 259.9428125812321,
- "#mean": 256.11021273807575,
- "#median": 256.09696365965027,
- "#sd": 3.6532857574617448,
- "#runs": 40
- },
- {
- "name": "time per op/incr",
- "value": 17.90086,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 17.031200000000002,
- "#mean": 18.008051428571434,
- "#median": 17.90086,
- "#sd": 0.7623472597200843,
- "#runs": 42
- },
- {
- "name": "ops over time/incr",
- "value": 55.86326155709858,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 58.71576870684392,
- "#mean": 55.62470268714353,
- "#median": 55.86326155709858,
- "#sd": 2.224772321961319,
- "#runs": 42
- },
- {
- "name": "time per op/push & pop",
- "value": 16.951,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 16.47896,
- "#mean": 17.017871999999997,
- "#median": 16.951,
- "#sd": 0.46345386538515854,
- "#runs": 45
- },
- {
- "name": "ops over time/push & pop",
- "value": 58.9935697009026,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 60.68344118803614,
- "#mean": 58.80430339285506,
- "#median": 58.9935697009026,
- "#sd": 1.5630744698706902,
- "#runs": 45
- },
- {
- "name": "time per op/cas int",
- "value": 11.469920000000002,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 11.028280000000002,
- "#mean": 11.451079411764704,
- "#median": 11.469920000000002,
- "#sd": 0.3362723340489263,
- "#runs": 34
- },
- {
- "name": "ops over time/cas int",
- "value": 87.18500531373526,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 90.67597123032783,
- "#mean": 87.40207754721698,
- "#median": 87.18500531373526,
- "#sd": 2.5241861559719942,
- "#runs": 34
- },
- {
- "name": "time per op/xchg int",
- "value": 11.9417,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 11.59534,
- "#mean": 12.440069375000004,
- "#median": 11.9417,
- "#sd": 2.3620302048978146,
- "#runs": 32
- },
- {
- "name": "ops over time/xchg int",
- "value": 83.74018039296519,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 86.24154186078201,
- "#mean": 81.92099812627958,
- "#median": 83.74018039296519,
- "#sd": 8.204885449132076,
- "#runs": 32
- },
- {
- "name": "time per op/swap",
- "value": 19.523400000000002,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 18.922320000000003,
- "#mean": 20.57258486486487,
- "#median": 19.523400000000002,
- "#sd": 2.6655175118697767,
- "#runs": 37
- },
- {
- "name": "ops over time/swap",
- "value": 51.22058657815749,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 52.847642360978995,
- "#mean": 49.22896571470257,
- "#median": 51.22058657815749,
- "#sd": 4.816866565277311,
- "#runs": 37
- }
- ]
- },
- {
- "name": "Kcas Xt",
- "metrics": [
- {
- "name": "time per transaction/0 loc tx",
- "value": 12.814851851851852,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 12.144074074074075,
- "#mean": 15.83888378033206,
- "#median": 12.814851851851852,
- "#sd": 4.195150218392269,
- "#runs": 58
- },
- {
- "name": "transactions over time/0 loc tx",
- "value": 78.03454149452648,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 82.3446887675745,
- "#mean": 67.41210993649139,
- "#median": 78.03454149452648,
- "#sd": 16.18132025298327,
- "#runs": 58
- },
- {
- "name": "time per transaction/1 loc tx",
- "value": 35.46541666666667,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 35.27008333333333,
- "#mean": 35.91736250000001,
- "#median": 35.46541666666667,
- "#sd": 0.7041429178810815,
- "#runs": 40
- },
- {
- "name": "transactions over time/1 loc tx",
- "value": 28.196482679512904,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 28.35264069407264,
- "#mean": 27.85222215373426,
- "#median": 28.196482679512904,
- "#sd": 0.5374002869104597,
- "#runs": 40
- },
- {
- "name": "time per transaction/2 loc tx",
- "value": 83.8524761904762,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 81.99019047619048,
- "#mean": 83.84749350649351,
- "#median": 83.8524761904762,
- "#sd": 1.0886838073538379,
- "#runs": 22
- },
- {
- "name": "transactions over time/2 loc tx",
- "value": 11.925706783884106,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 12.196581007948687,
- "#mean": 11.928424472355324,
- "#median": 11.925706783884106,
- "#sd": 0.15478143104639386,
- "#runs": 22
- },
- {
- "name": "time per transaction/4 loc tx",
- "value": 145.37640000000002,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 144.14693333333335,
- "#mean": 145.30959215686278,
- "#median": 145.37640000000002,
- "#sd": 0.9321088230339348,
- "#runs": 17
- },
- {
- "name": "transactions over time/4 loc tx",
- "value": 6.878695579199925,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 6.937365761972505,
- "#mean": 6.8821401330137055,
- "#median": 6.878695579199925,
- "#sd": 0.04396152530018753,
- "#runs": 17
- },
- {
- "name": "time per transaction/8 loc tx",
- "value": 293.14566666666667,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 286.478,
- "#mean": 292.68340000000006,
- "#median": 293.14566666666667,
- "#sd": 7.1422438581225185,
- "#runs": 40
- },
- {
- "name": "transactions over time/8 loc tx",
- "value": 3.411273349278402,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 3.490669440585315,
- "#mean": 3.418539680597756,
- "#median": 3.411273349278402,
- "#sd": 0.07709765547036974,
- "#runs": 40
- }
- ]
- },
- {
- "name": "Kcas Xt read-only",
- "metrics": [
- {
- "name": "time per transaction/0 loc tx",
- "value": 20.71377777777778,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 19.892055555555554,
- "#mean": 20.981244744744743,
- "#median": 20.71377777777778,
- "#sd": 0.8715963363756719,
- "#runs": 37
- },
- {
- "name": "transactions over time/0 loc tx",
- "value": 48.27704587392181,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 50.27132551521127,
- "#mean": 47.739486042395434,
- "#median": 48.27704587392181,
- "#sd": 1.8777786828094545,
- "#runs": 37
- },
- {
- "name": "time per transaction/1 loc tx",
- "value": 48.4179375,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 43.3193125,
- "#mean": 48.47869642857143,
- "#median": 48.4179375,
- "#sd": 2.834597138239965,
- "#runs": 21
- },
- {
- "name": "transactions over time/1 loc tx",
- "value": 20.653502640421227,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 23.08439220959474,
- "#mean": 20.696468722056686,
- "#median": 20.653502640421227,
- "#sd": 1.1808288387361083,
- "#runs": 21
- },
- {
- "name": "time per transaction/2 loc tx",
- "value": 85.98460714285716,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 47.479714285714294,
- "#mean": 73.36120535714285,
- "#median": 85.98460714285716,
- "#sd": 19.980030760677632,
- "#runs": 16
- },
- {
- "name": "transactions over time/2 loc tx",
- "value": 11.630006853191961,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 21.061626318608244,
- "#mean": 14.879017976483812,
- "#median": 11.630006853191961,
- "#sd": 4.600500587299564,
- "#runs": 16
- },
- {
- "name": "time per transaction/4 loc tx",
- "value": 83.63735,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 82.3049,
- "#mean": 103.5359888888889,
- "#median": 83.63735,
- "#sd": 30.67199409506422,
- "#runs": 18
- },
- {
- "name": "transactions over time/4 loc tx",
- "value": 11.956396665063185,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 12.149944899999879,
- "#mean": 10.371961293001526,
- "#median": 11.956396665063185,
- "#sd": 2.414354920442657,
- "#runs": 18
- },
- {
- "name": "time per transaction/8 loc tx",
- "value": 271.19575000000003,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 254.01850000000002,
- "#mean": 272.22214285714284,
- "#median": 271.19575000000003,
- "#sd": 10.094060348486009,
- "#runs": 28
- },
- {
- "name": "transactions over time/8 loc tx",
- "value": 3.6873740511036237,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 3.936721144326102,
- "#mean": 3.6784522081410636,
- "#median": 3.6873740511036237,
- "#sd": 0.13448654235496565,
- "#runs": 28
- }
- ]
- },
- {
- "name": "Kcas parallel CMP",
- "metrics": [
- {
- "name": "time per transaction/1 worker",
- "value": 117.24920000000003,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 85.34100000000001,
- "#mean": 141.5840857142857,
- "#median": 117.24920000000003,
- "#sd": 50.40214615888121,
- "#runs": 28
- },
- {
- "name": "transactions over time/1 worker",
- "value": 8.603630412667554,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 11.71769723813876,
- "#mean": 8.00250662091614,
- "#median": 8.603630412667554,
- "#sd": 2.683659127539097,
- "#runs": 28
- },
- {
- "name": "time per transaction/2 workers",
- "value": 173.4261,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 170.16230000000002,
- "#mean": 195.71797500000002,
- "#median": 173.4261,
- "#sd": 55.61774103779185,
- "#runs": 20
- },
- {
- "name": "transactions over time/2 workers",
- "value": 11.532289774085712,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 11.75348476131317,
- "#mean": 10.70915004623032,
- "#median": 11.532289774085712,
- "#sd": 1.7805960552599398,
- "#runs": 20
- },
- {
- "name": "time per transaction/4 workers",
- "value": 390.13230000000004,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one transaction",
- "#best": 362.17505000000006,
- "#mean": 563.2106142857142,
- "#median": 390.13230000000004,
- "#sd": 217.37426131610746,
- "#runs": 7
- },
- {
- "name": "transactions over time/4 workers",
- "value": 10.252932146351377,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of transactions processed",
- "#best": 11.044383095964228,
- "#mean": 8.195255977350165,
- "#median": 10.252932146351377,
- "#sd": 2.838908392437334,
- "#runs": 7
- }
- ]
- },
- {
- "name": "Kcas_data Accumulator",
- "metrics": [
- {
- "name": "time per operation/1 worker, 0% reads",
- "value": 16.923166666666667,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 16.836444444444446,
- "#mean": 17.11971023965142,
- "#median": 16.923166666666667,
- "#sd": 0.2984538849017414,
- "#runs": 51
- },
- {
- "name": "operations over time/1 worker, 0% reads",
- "value": 59.09059573168929,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 59.39496330711155,
- "#mean": 58.42965353710838,
- "#median": 59.09059573168929,
- "#sd": 1.0011133799852454,
- "#runs": 51
- },
- {
- "name": "time per operation/2 workers, 0% reads",
- "value": 34.920138888888886,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 33.98583333333333,
- "#mean": 38.75980777777779,
- "#median": 34.920138888888886,
- "#sd": 9.15241593213899,
- "#runs": 25
- },
- {
- "name": "operations over time/2 workers, 0% reads",
- "value": 57.27354081734116,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 58.84804943236152,
- "#mean": 53.67668545962939,
- "#median": 57.27354081734116,
- "#sd": 8.811266726719992,
- "#runs": 25
- },
- {
- "name": "time per operation/4 workers, 0% reads",
- "value": 116.42884722222223,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 71.80322222222223,
- "#mean": 106.76589930555555,
- "#median": 116.42884722222223,
- "#sd": 18.719263595326066,
- "#runs": 8
- },
- {
- "name": "operations over time/4 workers, 0% reads",
- "value": 34.35898684445133,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 55.707806365854815,
- "#mean": 38.965742609885176,
- "#median": 34.35898684445133,
- "#sd": 8.573333027263519,
- "#runs": 8
- }
- ]
- },
- {
- "name": "Kcas_data Dllist",
- "metrics": [
- {
- "name": "time per message/one domain",
- "value": 733.4813333333334,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 700.0780000000001,
- "#mean": 737.005641025641,
- "#median": 733.4813333333334,
- "#sd": 32.970665176209835,
- "#runs": 13
- },
- {
- "name": "messages over time/one domain",
- "value": 1.3633612125552843,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 1.4284122626335922,
- "#mean": 1.3593442433641623,
- "#median": 1.3633612125552843,
- "#sd": 0.05604433751692866,
- "#runs": 13
- },
- {
- "name": "time per message/1 nb adder, 1 nb taker",
- "value": 856.09175,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 822.2629999999999,
- "#mean": 875.1203750000002,
- "#median": 856.09175,
- "#sd": 68.57759902418482,
- "#runs": 12
- },
- {
- "name": "messages over time/1 nb adder, 1 nb taker",
- "value": 2.3362204567958487,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 2.4323118029146396,
- "#mean": 2.2978214772294305,
- "#median": 2.3362204567958487,
- "#sd": 0.1588084037321221,
- "#runs": 12
- },
- {
- "name": "time per message/1 nb adder, 2 nb takers",
- "value": 1555.3840000000002,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 1492.6309999999999,
- "#mean": 1552.4071999999999,
- "#median": 1555.3840000000002,
- "#sd": 42.77968982309256,
- "#runs": 10
- },
- {
- "name": "messages over time/1 nb adder, 2 nb takers",
- "value": 1.9287860477952994,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 2.0098738402190497,
- "#mean": 1.9339488792184574,
- "#median": 1.9287860477952994,
- "#sd": 0.05322696605461028,
- "#runs": 10
- },
- {
- "name": "time per message/2 nb adders, 1 nb taker",
- "value": 798.8745,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 759.8905,
- "#mean": 883.113653846154,
- "#median": 798.8745,
- "#sd": 182.27726047018263,
- "#runs": 13
- },
- {
- "name": "messages over time/2 nb adders, 1 nb taker",
- "value": 3.7552832140717975,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 3.9479372356938267,
- "#mean": 3.503853002245077,
- "#median": 3.7552832140717975,
- "#sd": 0.5281831301548114,
- "#runs": 13
- },
- {
- "name": "time per message/2 nb adders, 2 nb takers",
- "value": 1246.058,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 1082.7275000000002,
- "#mean": 1333.5567272727274,
- "#median": 1246.058,
- "#sd": 262.25064850178626,
- "#runs": 11
- },
- {
- "name": "messages over time/2 nb adders, 2 nb takers",
- "value": 3.210123445297089,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 3.694373699753631,
- "#mean": 3.0980869122479127,
- "#median": 3.210123445297089,
- "#sd": 0.5072567705165179,
- "#runs": 11
- }
- ]
- },
- {
- "name": "Kcas_data Hashtbl",
- "metrics": [
- {
- "name": "time per operation/1 worker, 90% reads",
- "value": 140.78934210526316,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 127.86749999999999,
- "#mean": 145.15619360902255,
- "#median": 140.78934210526316,
- "#sd": 13.48994851924207,
- "#runs": 14
- },
- {
- "name": "operations over time/1 worker, 90% reads",
- "value": 7.102811694913589,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 7.820595538350245,
- "#mean": 6.942735367990607,
- "#median": 7.102811694913589,
- "#sd": 0.5813962595721489,
- "#runs": 14
- },
- {
- "name": "time per operation/2 workers, 90% reads",
- "value": 175.57348684210524,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 166.17190789473682,
- "#mean": 246.71935150375936,
- "#median": 175.57348684210524,
- "#sd": 96.08040407422946,
- "#runs": 7
- },
- {
- "name": "operations over time/2 workers, 90% reads",
- "value": 11.391241559146211,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 12.035728694087805,
- "#mean": 9.239327426057777,
- "#median": 11.391241559146211,
- "#sd": 2.949637297545089,
- "#runs": 7
- },
- {
- "name": "time per operation/4 workers, 90% reads",
- "value": 700.5236184210526,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 426.21161184210524,
- "#mean": 756.7614567669174,
- "#median": 700.5236184210526,
- "#sd": 246.62770029001078,
- "#runs": 7
- },
- {
- "name": "operations over time/4 workers, 90% reads",
- "value": 5.710014473196225,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 9.385009438649089,
- "#mean": 5.969818954139001,
- "#median": 5.710014473196225,
- "#sd": 2.163888682469868,
- "#runs": 7
- },
- {
- "name": "time per operation/1 worker, 50% reads",
- "value": 143.9125,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 140.749,
- "#mean": 161.05075555555555,
- "#median": 143.9125,
- "#sd": 41.413002414247494,
- "#runs": 15
- },
- {
- "name": "operations over time/1 worker, 50% reads",
- "value": 6.948666724572222,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 7.104846215603663,
- "#mean": 6.48799513724842,
- "#median": 6.948666724572222,
- "#sd": 1.0869553624731083,
- "#runs": 15
- },
- {
- "name": "time per operation/2 workers, 50% reads",
- "value": 621.4664166666666,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 365.73749999999995,
- "#mean": 585.3051904761904,
- "#median": 621.4664166666666,
- "#sd": 110.20049265286414,
- "#runs": 7
- },
- {
- "name": "operations over time/2 workers, 50% reads",
- "value": 3.2181948153004245,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 5.468402884582522,
- "#mean": 3.5754815528366977,
- "#median": 3.2181948153004245,
- "#sd": 0.8564755679292259,
- "#runs": 7
- },
- {
- "name": "time per operation/4 workers, 50% reads",
- "value": 852.2457916666667,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 692.2353333333334,
- "#mean": 938.2297916666665,
- "#median": 852.2457916666667,
- "#sd": 244.8034801868263,
- "#runs": 7
- },
- {
- "name": "operations over time/4 workers, 50% reads",
- "value": 4.693481668213967,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 5.77838172567518,
- "#mean": 4.53817541586571,
- "#median": 4.693481668213967,
- "#sd": 1.0677752774370888,
- "#runs": 7
- },
- {
- "name": "time per operation/1 worker, 10% reads",
- "value": 180.65,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 175.86272727272728,
- "#mean": 180.8428636363637,
- "#median": 180.65,
- "#sd": 3.8489377797029634,
- "#runs": 20
- },
- {
- "name": "operations over time/1 worker, 10% reads",
- "value": 5.535572889411859,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 5.686253224364044,
- "#mean": 5.532146384261051,
- "#median": 5.535572889411859,
- "#sd": 0.11672515512295328,
- "#runs": 20
- },
- {
- "name": "time per operation/2 workers, 10% reads",
- "value": 410.6217045454545,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 397.9607954545455,
- "#mean": 413.71977272727275,
- "#median": 410.6217045454545,
- "#sd": 14.233439106955469,
- "#runs": 9
- },
- {
- "name": "operations over time/2 workers, 10% reads",
- "value": 4.87066313801882,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 5.02562067129157,
- "#mean": 4.839736198273551,
- "#median": 4.87066313801882,
- "#sd": 0.16132000026824095,
- "#runs": 9
- },
- {
- "name": "time per operation/4 workers, 10% reads",
- "value": 886.6413636363636,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one operation",
- "#best": 863.8419318181819,
- "#mean": 915.4322321428573,
- "#median": 886.6413636363636,
- "#sd": 76.15322317623115,
- "#runs": 7
- },
- {
- "name": "operations over time/4 workers, 10% reads",
- "value": 4.511406938646404,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of operations processed",
- "#best": 4.630476772042023,
- "#mean": 4.395855501619232,
- "#median": 4.511406938646404,
- "#sd": 0.31686923962742075,
- "#runs": 7
- }
- ]
- },
- {
- "name": "Kcas_data Mvar",
- "metrics": [
- {
- "name": "time per message/1 nb adder, 1 nb taker",
- "value": 23544.777500000004,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 18904.385000000002,
- "#mean": 23295.642500000005,
- "#median": 23544.777500000004,
- "#sd": 2937.7902240757426,
- "#runs": 8
- },
- {
- "name": "messages over time/1 nb adder, 1 nb taker",
- "value": 0.0850099814738413,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.10579556013062577,
- "#mean": 0.08728981229467143,
- "#median": 0.0850099814738413,
- "#sd": 0.011446817480854908,
- "#runs": 8
- },
- {
- "name": "time per message/1 nb adder, 1 taker",
- "value": 25633.575,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 23955.275000000005,
- "#mean": 25530.575,
- "#median": 25633.575,
- "#sd": 968.940092354232,
- "#runs": 7
- },
- {
- "name": "messages over time/1 nb adder, 1 taker",
- "value": 0.07802267143775302,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.08348891841149808,
- "#mean": 0.07845003471893246,
- "#median": 0.07802267143775302,
- "#sd": 0.002969867026103123,
- "#runs": 7
- },
- {
- "name": "time per message/1 nb adder, 2 nb takers",
- "value": 46474.57000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 36088.665,
- "#mean": 44229.09857142858,
- "#median": 46474.57000000001,
- "#sd": 4643.231877334792,
- "#runs": 7
- },
- {
- "name": "messages over time/1 nb adder, 2 nb takers",
- "value": 0.06455143102991592,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.08312859453238294,
- "#mean": 0.06866226068885273,
- "#median": 0.06455143102991592,
- "#sd": 0.007952546599603923,
- "#runs": 7
- },
- {
- "name": "time per message/1 nb adder, 2 takers",
- "value": 38051.07,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 34952.5,
- "#mean": 39952.33785714286,
- "#median": 38051.07,
- "#sd": 5010.87116379895,
- "#runs": 7
- },
- {
- "name": "messages over time/1 nb adder, 2 takers",
- "value": 0.07884140971594228,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.08583077033116374,
- "#mean": 0.07619691152142771,
- "#median": 0.07884140971594228,
- "#sd": 0.008873532611960536,
- "#runs": 7
- },
- {
- "name": "time per message/1 adder, 1 nb taker",
- "value": 27577.395,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 25387.070000000003,
- "#mean": 27723.928571428572,
- "#median": 27577.395,
- "#sd": 1262.384674788479,
- "#runs": 7
- },
- {
- "name": "messages over time/1 adder, 1 nb taker",
- "value": 0.07252316616562224,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.07878026097537053,
- "#mean": 0.07229334684186212,
- "#median": 0.07252316616562224,
- "#sd": 0.0033748033165798184,
- "#runs": 7
- },
- {
- "name": "time per message/1 adder, 1 taker",
- "value": 22839.265,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 20840.550000000003,
- "#mean": 23159.60928571429,
- "#median": 22839.265,
- "#sd": 1670.2778991221548,
- "#runs": 7
- },
- {
- "name": "messages over time/1 adder, 1 taker",
- "value": 0.08756849224351133,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.09596675711533523,
- "#mean": 0.0867784474877706,
- "#median": 0.08756849224351133,
- "#sd": 0.00586607020257422,
- "#runs": 7
- },
- {
- "name": "time per message/1 adder, 2 nb takers",
- "value": 56026.03500000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 44831.35,
- "#mean": 54399.762857142865,
- "#median": 56026.03500000001,
- "#sd": 4022.351962440507,
- "#runs": 7
- },
- {
- "name": "messages over time/1 adder, 2 nb takers",
- "value": 0.05354653421395963,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.06691745843031718,
- "#mean": 0.05549849874588152,
- "#median": 0.05354653421395963,
- "#sd": 0.004754246516087586,
- "#runs": 7
- },
- {
- "name": "time per message/1 adder, 2 takers",
- "value": 46284.075,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 35311.935,
- "#mean": 42628.79,
- "#median": 46284.075,
- "#sd": 5341.967006962084,
- "#runs": 7
- },
- {
- "name": "messages over time/1 adder, 2 takers",
- "value": 0.06481711042080888,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.0849571115261738,
- "#mean": 0.07154208919128853,
- "#median": 0.06481711042080888,
- "#sd": 0.009321955112615479,
- "#runs": 7
- },
- {
- "name": "time per message/2 nb adders, 1 nb taker",
- "value": 35650.515,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 30149.715000000007,
- "#mean": 34639.87142857144,
- "#median": 35650.515,
- "#sd": 2283.393490838821,
- "#runs": 7
- },
- {
- "name": "messages over time/2 nb adders, 1 nb taker",
- "value": 0.08415025701592249,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.09950342814185804,
- "#mean": 0.08701050689633019,
- "#median": 0.08415025701592249,
- "#sd": 0.006153390723596296,
- "#runs": 7
- },
- {
- "name": "time per message/2 nb adders, 1 taker",
- "value": 43673.225000000006,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 34942.75,
- "#mean": 46932.12714285714,
- "#median": 43673.225000000006,
- "#sd": 10773.930336413532,
- "#runs": 7
- },
- {
- "name": "messages over time/2 nb adders, 1 taker",
- "value": 0.06869197317120501,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.08585471950547681,
- "#mean": 0.06729547122471313,
- "#median": 0.06869197317120501,
- "#sd": 0.014819223331613668,
- "#runs": 7
- },
- {
- "name": "time per message/2 nb adders, 2 nb takers",
- "value": 52975.030000000006,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 48484.015,
- "#mean": 56475.74214285715,
- "#median": 52975.030000000006,
- "#sd": 7348.820900085584,
- "#runs": 7
- },
- {
- "name": "messages over time/2 nb adders, 2 nb takers",
- "value": 0.07550727201098328,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.08250141825094312,
- "#mean": 0.07199263223442404,
- "#median": 0.07550727201098328,
- "#sd": 0.008984401506779441,
- "#runs": 7
- },
- {
- "name": "time per message/2 nb adders, 2 takers",
- "value": 51617.795000000006,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 48086.46,
- "#mean": 51695.032857142854,
- "#median": 51617.795000000006,
- "#sd": 2026.3093116812477,
- "#runs": 7
- },
- {
- "name": "messages over time/2 nb adders, 2 takers",
- "value": 0.07749265539142074,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.08318349905565933,
- "#mean": 0.07749688254567906,
- "#median": 0.07749265539142074,
- "#sd": 0.003065409711128852,
- "#runs": 7
- },
- {
- "name": "time per message/2 adders, 1 nb taker",
- "value": 36741.03,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 35071.045000000006,
- "#mean": 37824.70642857144,
- "#median": 36741.03,
- "#sd": 2456.9916453194123,
- "#runs": 7
- },
- {
- "name": "messages over time/2 adders, 1 nb taker",
- "value": 0.08165258295698297,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.08554065041403813,
- "#mean": 0.07963444490072262,
- "#median": 0.08165258295698297,
- "#sd": 0.004950278773906271,
- "#runs": 7
- },
- {
- "name": "time per message/2 adders, 1 taker",
- "value": 33214.15,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 31688.535000000003,
- "#mean": 33678.764285714286,
- "#median": 33214.15,
- "#sd": 1981.0756589169082,
- "#runs": 7
- },
- {
- "name": "messages over time/2 adders, 1 taker",
- "value": 0.09032294970667622,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.09467146398531834,
- "#mean": 0.08936689386664728,
- "#median": 0.09032294970667622,
- "#sd": 0.004936103735892821,
- "#runs": 7
- },
- {
- "name": "time per message/2 adders, 2 nb takers",
- "value": 52471.060000000005,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 51295.35,
- "#mean": 54840.67428571429,
- "#median": 52471.060000000005,
- "#sd": 4448.991554906757,
- "#runs": 7
- },
- {
- "name": "messages over time/2 adders, 2 nb takers",
- "value": 0.07623249844771575,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.07797977789409762,
- "#mean": 0.07337742534370498,
- "#median": 0.07623249844771575,
- "#sd": 0.0054188246072443946,
- "#runs": 7
- },
- {
- "name": "time per message/2 adders, 2 takers",
- "value": 51478.405000000006,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 48688.7,
- "#mean": 52077.235714285714,
- "#median": 51478.405000000006,
- "#sd": 3109.8145255022023,
- "#runs": 7
- },
- {
- "name": "messages over time/2 adders, 2 takers",
- "value": 0.0777024851488697,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 0.0821545861770801,
- "#mean": 0.07707791359809306,
- "#median": 0.0777024851488697,
- "#sd": 0.004507279393171336,
- "#runs": 7
- }
- ]
- },
- {
- "name": "Kcas_data Queue",
- "metrics": [
- {
- "name": "time per message/one domain",
- "value": 124.70960000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 90.14620000000001,
- "#mean": 127.42297500000001,
- "#median": 124.70960000000001,
- "#sd": 22.06799398879235,
- "#runs": 16
- },
- {
- "name": "messages over time/one domain",
- "value": 8.019172929880119,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 11.093091001062719,
- "#mean": 8.087550017963693,
- "#median": 8.019172929880119,
- "#sd": 1.4052345878117547,
- "#runs": 16
- },
- {
- "name": "time per message/1 nb adder, 1 nb taker",
- "value": 98.72460000000002,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 84.90559999999999,
- "#mean": 96.56334418604651,
- "#median": 98.72460000000002,
- "#sd": 8.579368215946428,
- "#runs": 43
- },
- {
- "name": "messages over time/1 nb adder, 1 nb taker",
- "value": 20.258375318816178,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 23.555572306184754,
- "#mean": 20.873531980589146,
- "#median": 20.258375318816178,
- "#sd": 1.8283845031558976,
- "#runs": 43
- },
- {
- "name": "time per message/1 nb adder, 1 taker",
- "value": 88.6382,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 84.30720000000001,
- "#mean": 89.1395306122449,
- "#median": 88.6382,
- "#sd": 3.8886450641817847,
- "#runs": 49
- },
- {
- "name": "messages over time/1 nb adder, 1 taker",
- "value": 22.56363509186784,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 23.72276626432855,
- "#mean": 22.477453926442536,
- "#median": 22.56363509186784,
- "#sd": 0.9352169734976669,
- "#runs": 49
- },
- {
- "name": "time per message/1 nb adder, 2 nb takers",
- "value": 146.20880000000002,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 136.35920000000002,
- "#mean": 151.07602857142862,
- "#median": 146.20880000000002,
- "#sd": 25.8229848550462,
- "#runs": 42
- },
- {
- "name": "messages over time/1 nb adder, 2 nb takers",
- "value": 20.51860102916222,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 22.000715756619275,
- "#mean": 20.160304385436348,
- "#median": 20.51860102916222,
- "#sd": 1.8090238519154167,
- "#runs": 42
- },
- {
- "name": "time per message/1 nb adder, 2 takers",
- "value": 123.14120000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 117.1056,
- "#mean": 129.99374883720932,
- "#median": 123.14120000000001,
- "#sd": 17.62601579627131,
- "#runs": 43
- },
- {
- "name": "messages over time/1 nb adder, 2 takers",
- "value": 24.362276800940705,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 25.617903840636146,
- "#mean": 23.417815654242045,
- "#median": 24.362276800940705,
- "#sd": 2.525094243632561,
- "#runs": 43
- },
- {
- "name": "time per message/2 nb adders, 1 nb taker",
- "value": 122.17569999999999,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 96.9706,
- "#mean": 119.93112105263158,
- "#median": 122.17569999999999,
- "#sd": 16.79435362053753,
- "#runs": 38
- },
- {
- "name": "messages over time/2 nb adders, 1 nb taker",
- "value": 24.554958775614015,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 30.9372118972142,
- "#mean": 25.466578013492526,
- "#median": 24.554958775614015,
- "#sd": 3.3135796800237127,
- "#runs": 38
- },
- {
- "name": "time per message/2 nb adders, 1 taker",
- "value": 177.5526,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 134.168,
- "#mean": 189.9300074074074,
- "#median": 177.5526,
- "#sd": 37.39093281466854,
- "#runs": 27
- },
- {
- "name": "messages over time/2 nb adders, 1 taker",
- "value": 16.896401404428882,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 22.360026235764117,
- "#mean": 16.408179989643788,
- "#median": 16.896401404428882,
- "#sd": 3.1714553019449467,
- "#runs": 27
- },
- {
- "name": "time per message/2 nb adders, 2 nb takers",
- "value": 238.29390000000006,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 156.82180000000002,
- "#mean": 244.97701666666674,
- "#median": 238.29390000000006,
- "#sd": 64.48860240132662,
- "#runs": 24
- },
- {
- "name": "messages over time/2 nb adders, 2 nb takers",
- "value": 16.78607654560109,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 25.506657875371918,
- "#mean": 17.41721344038532,
- "#median": 16.78607654560109,
- "#sd": 4.311013179689351,
- "#runs": 24
- },
- {
- "name": "time per message/2 nb adders, 2 takers",
- "value": 190.84509999999997,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 157.3208,
- "#mean": 192.52352666666664,
- "#median": 190.84509999999997,
- "#sd": 30.6577738620613,
- "#runs": 30
- },
- {
- "name": "messages over time/2 nb adders, 2 takers",
- "value": 20.960764650323814,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 25.425754254999976,
- "#mean": 21.261276173719462,
- "#median": 20.960764650323814,
- "#sd": 3.080551753777826,
- "#runs": 30
- }
- ]
- },
- {
- "name": "Kcas_data Stack",
- "metrics": [
- {
- "name": "time per message/one domain",
- "value": 49.8347,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 48.28660000000001,
- "#mean": 58.62233846153847,
- "#median": 49.8347,
- "#sd": 14.295268529537935,
- "#runs": 26
- },
- {
- "name": "messages over time/one domain",
- "value": 20.06634713272018,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 20.709679289906518,
- "#mean": 17.922339076382865,
- "#median": 20.06634713272018,
- "#sd": 3.5521785920265923,
- "#runs": 26
- },
- {
- "name": "time per message/1 nb adder, 1 nb taker",
- "value": 112.2562,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 100.33500000000001,
- "#mean": 110.0376871794872,
- "#median": 112.2562,
- "#sd": 7.322492472921327,
- "#runs": 39
- },
- {
- "name": "messages over time/1 nb adder, 1 nb taker",
- "value": 17.81638786989048,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 19.933223700602976,
- "#mean": 18.25601069318777,
- "#median": 17.81638786989048,
- "#sd": 1.210065420758411,
- "#runs": 39
- },
- {
- "name": "time per message/1 nb adder, 1 taker",
- "value": 99.80310000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 75.71220000000001,
- "#mean": 95.6026913043478,
- "#median": 99.80310000000001,
- "#sd": 13.01553414779943,
- "#runs": 46
- },
- {
- "name": "messages over time/1 nb adder, 1 taker",
- "value": 20.039545488591138,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 26.415822020757552,
- "#mean": 21.320786284891756,
- "#median": 20.039545488591138,
- "#sd": 2.9824392121550956,
- "#runs": 46
- },
- {
- "name": "time per message/1 nb adder, 2 nb takers",
- "value": 139.1902,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 125.46900000000001,
- "#mean": 147.48435909090907,
- "#median": 139.1902,
- "#sd": 19.610573514425578,
- "#runs": 44
- },
- {
- "name": "messages over time/1 nb adder, 2 nb takers",
- "value": 21.553356168153474,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 23.910288597183364,
- "#mean": 20.677662348712094,
- "#median": 21.553356168153474,
- "#sd": 2.540563232365458,
- "#runs": 44
- },
- {
- "name": "time per message/1 nb adder, 2 takers",
- "value": 128.4515,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 119.80980000000001,
- "#mean": 130.02767916666664,
- "#median": 128.4515,
- "#sd": 6.7858020768537495,
- "#runs": 48
- },
- {
- "name": "messages over time/1 nb adder, 2 takers",
- "value": 23.355156679059625,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 25.03968790532995,
- "#mean": 23.13427038289478,
- "#median": 23.355156679059625,
- "#sd": 1.1943279197851457,
- "#runs": 48
- },
- {
- "name": "time per message/2 nb adders, 1 nb taker",
- "value": 118.1418,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 107.9702,
- "#mean": 121.13299999999998,
- "#median": 118.1418,
- "#sd": 11.92293794440309,
- "#runs": 46
- },
- {
- "name": "messages over time/2 nb adders, 1 nb taker",
- "value": 25.393439085178407,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 27.78544450227933,
- "#mean": 24.96607321231252,
- "#median": 25.393439085178407,
- "#sd": 2.048030000546478,
- "#runs": 46
- },
- {
- "name": "time per message/2 nb adders, 1 taker",
- "value": 122.7737,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 105.5186,
- "#mean": 128.95836190476194,
- "#median": 122.7737,
- "#sd": 23.73292483663584,
- "#runs": 42
- },
- {
- "name": "messages over time/2 nb adders, 1 taker",
- "value": 24.43529446272035,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 28.431006476583274,
- "#mean": 23.84499029453281,
- "#median": 24.43529446272035,
- "#sd": 3.2285373980165826,
- "#runs": 42
- },
- {
- "name": "time per message/2 nb adders, 2 nb takers",
- "value": 175.5742,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 143.1544,
- "#mean": 177.0631794871794,
- "#median": 175.5742,
- "#sd": 30.309611187273283,
- "#runs": 39
- },
- {
- "name": "messages over time/2 nb adders, 2 nb takers",
- "value": 22.782390579025847,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 27.94185858066535,
- "#mean": 23.077606890495925,
- "#median": 22.782390579025847,
- "#sd": 3.0051474539971315,
- "#runs": 39
- },
- {
- "name": "time per message/2 nb adders, 2 takers",
- "value": 182.13090000000003,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one message",
- "#best": 140.4208,
- "#mean": 205.7708411764706,
- "#median": 182.13090000000003,
- "#sd": 63.36370809538476,
- "#runs": 34
- },
- {
- "name": "messages over time/2 nb adders, 2 takers",
- "value": 21.962733100238555,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of messages processed",
- "#best": 28.48580837026993,
- "#mean": 21.07864531573638,
- "#median": 21.962733100238555,
- "#sd": 5.448121317705053,
- "#runs": 34
- }
- ]
- },
- {
- "name": "Ref with Mutex",
- "metrics": [
- {
- "name": "time per op/get",
- "value": 42.33406,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 41.68012,
- "#mean": 42.5279625,
- "#median": 42.33406,
- "#sd": 0.6754981945895558,
- "#runs": 16
- },
- {
- "name": "ops over time/get",
- "value": 23.62170735491602,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 23.992253381228267,
- "#mean": 23.51979290625561,
- "#median": 23.62170735491602,
- "#sd": 0.36847561491313036,
- "#runs": 16
- },
- {
- "name": "time per op/incr",
- "value": 42.87776,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 40.86540000000001,
- "#mean": 42.84283250000001,
- "#median": 42.87776,
- "#sd": 1.2318001281229636,
- "#runs": 16
- },
- {
- "name": "ops over time/incr",
- "value": 23.322505363315763,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 24.470579022840838,
- "#mean": 23.35997322538271,
- "#median": 23.322505363315763,
- "#sd": 0.6559792543190901,
- "#runs": 16
- },
- {
- "name": "time per op/push & pop",
- "value": 52.38764,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 49.91664000000001,
- "#mean": 51.797006666666675,
- "#median": 52.38764,
- "#sd": 1.4441108635958506,
- "#runs": 12
- },
- {
- "name": "ops over time/push & pop",
- "value": 19.090090976714652,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 20.033399683953085,
- "#mean": 19.321252077012655,
- "#median": 19.090090976714652,
- "#sd": 0.542267462834754,
- "#runs": 12
- },
- {
- "name": "time per op/cas int",
- "value": 50.143640000000005,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 47.71496,
- "#mean": 50.133225714285715,
- "#median": 50.143640000000005,
- "#sd": 1.369844869932955,
- "#runs": 14
- },
- {
- "name": "ops over time/cas int",
- "value": 19.94274727347617,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 20.9577876624019,
- "#mean": 19.96182426527145,
- "#median": 19.94274727347617,
- "#sd": 0.548345110836515,
- "#runs": 14
- },
- {
- "name": "time per op/xchg int",
- "value": 45.464800000000004,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 43.459480000000006,
- "#mean": 45.91063199999999,
- "#median": 45.464800000000004,
- "#sd": 1.1376459945882398,
- "#runs": 15
- },
- {
- "name": "ops over time/xchg int",
- "value": 21.995037919445373,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 23.00993937341174,
- "#mean": 21.79491346595909,
- "#median": 21.995037919445373,
- "#sd": 0.5436714818895626,
- "#runs": 15
- },
- {
- "name": "time per op/swap",
- "value": 48.93076000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 34.472120000000004,
- "#mean": 45.78535733333334,
- "#median": 48.93076000000001,
- "#sd": 6.71657395843989,
- "#runs": 15
- },
- {
- "name": "ops over time/swap",
- "value": 20.437042056980108,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 29.008949841205006,
- "#mean": 22.405130505629074,
- "#median": 20.437042056980108,
- "#sd": 3.8498324648246456,
- "#runs": 15
- }
- ]
- },
- {
- "name": "Ref with [@poll error]",
- "metrics": [
- {
- "name": "time per op/get",
- "value": 2.736838,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 2.7273280000000004,
- "#mean": 2.745988,
- "#median": 2.736838,
- "#sd": 0.03341581500826618,
- "#runs": 12
- },
- {
- "name": "ops over time/get",
- "value": 365.38516439135026,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 366.6592357061563,
- "#mean": 364.21977352625146,
- "#median": 365.38516439135026,
- "#sd": 4.283337002512507,
- "#runs": 12
- },
- {
- "name": "time per op/incr",
- "value": 3.90112,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 3.8846400000000005,
- "#mean": 3.9212817777777786,
- "#median": 3.90112,
- "#sd": 0.04778241588650176,
- "#runs": 45
- },
- {
- "name": "ops over time/incr",
- "value": 256.3366417849233,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 257.4241113719675,
- "#mean": 255.05576359930643,
- "#median": 256.3366417849233,
- "#sd": 3.045498014399121,
- "#runs": 45
- },
- {
- "name": "time per op/push & pop",
- "value": 19.33777,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 18.981240000000003,
- "#mean": 19.32684875,
- "#median": 19.33777,
- "#sd": 0.22853605576787567,
- "#runs": 8
- },
- {
- "name": "ops over time/push & pop",
- "value": 51.712608875058166,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 52.68359706742025,
- "#mean": 51.74873634458356,
- "#median": 51.712608875058166,
- "#sd": 0.6126296384081563,
- "#runs": 8
- },
- {
- "name": "time per op/cas int",
- "value": 10.37803,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 10.21836,
- "#mean": 10.338374615384618,
- "#median": 10.37803,
- "#sd": 0.08446927225696507,
- "#runs": 26
- },
- {
- "name": "ops over time/cas int",
- "value": 96.35740514689508,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 97.86306217436066,
- "#mean": 96.73343366384782,
- "#median": 96.35740514689508,
- "#sd": 0.7870157841488056,
- "#runs": 26
- },
- {
- "name": "time per op/xchg int",
- "value": 10.125760000000001,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 9.99408,
- "#mean": 10.160863076923079,
- "#median": 10.125760000000001,
- "#sd": 0.3415801688844771,
- "#runs": 26
- },
- {
- "name": "ops over time/xchg int",
- "value": 98.75807076182548,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 100.05923506715976,
- "#mean": 98.51360198446497,
- "#median": 98.75807076182548,
- "#sd": 2.879978848314517,
- "#runs": 26
- },
- {
- "name": "time per op/swap",
- "value": 18.31735,
- "units": "ns",
- "trend": "lower-is-better",
- "description": "Time to process one op",
- "#best": 18.135800000000003,
- "#mean": 18.357556000000002,
- "#median": 18.31735,
- "#sd": 0.16245250931887714,
- "#runs": 10
- },
- {
- "name": "ops over time/swap",
- "value": 54.59384363215173,
- "units": "M/s",
- "trend": "higher-is-better",
- "description": "Total number of ops processed",
- "#best": 55.139558221859524,
- "#mean": 54.47774139232239,
- "#median": 54.59384363215173,
- "#sd": 0.4813088931620194,
- "#runs": 10
- }
- ]
- }
- ]
- }
- (cd _build/default/test/kcas_data && ./stack_test_stm.exe)
-
random seed: 297792359
- 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
[ ] 8 0 0 8 / 1000 0.1s Stack concurrent
[ ] 36 0 0 36 / 1000 0.3s Stack concurrent
[ ] 48 0 0 48 / 1000 0.5s Stack concurrent
[ ] 62 0 0 62 / 1000 0.6s Stack concurrent
[ ] 69 0 0 69 / 1000 0.7s Stack concurrent
[ ] 78 0 0 78 / 1000 0.8s Stack concurrent
[ ] 87 0 0 87 / 1000 1.0s Stack concurrent
[ ] 100 0 0 100 / 1000 1.1s Stack concurrent
[ ] 105 0 0 105 / 1000 1.3s Stack concurrent
[ ] 110 0 0 110 / 1000 1.4s Stack concurrent
[ ] 120 0 0 120 / 1000 1.5s Stack concurrent
[ ] 128 0 0 128 / 1000 1.6s Stack concurrent
[ ] 148 0 0 148 / 1000 1.8s Stack concurrent
[ ] 160 0 0 160 / 1000 2.0s Stack concurrent
[ ] 178 0 0 178 / 1000 2.1s Stack concurrent
[ ] 187 0 0 187 / 1000 2.3s Stack concurrent
[ ] 199 0 0 199 / 1000 2.5s Stack concurrent
[ ] 205 0 0 205 / 1000 2.6s Stack concurrent
[ ] 215 0 0 215 / 1000 2.8s Stack concurrent
[ ] 225 0 0 225 / 1000 2.9s Stack concurrent
[ ] 241 0 0 241 / 1000 3.0s Stack concurrent
[ ] 251 0 0 251 / 1000 3.2s Stack concurrent
[ ] 273 0 0 273 / 1000 3.4s Stack concurrent
[ ] 300 0 0 300 / 1000 3.5s Stack concurrent
[ ] 314 0 0 314 / 1000 3.6s Stack concurrent
[ ] 320 0 0 320 / 1000 3.8s Stack concurrent
[ ] 340 0 0 340 / 1000 3.9s Stack concurrent
[ ] 370 0 0 370 / 1000 4.1s Stack concurrent
[ ] 377 0 0 377 / 1000 4.2s Stack concurrent
[ ] 397 0 0 397 / 1000 4.4s Stack concurrent
[ ] 406 0 0 406 / 1000 4.6s Stack concurrent
[ ] 409 0 0 409 / 1000 4.8s Stack concurrent
[ ] 425 0 0 425 / 1000 5.0s Stack concurrent
[ ] 433 0 0 433 / 1000 5.2s Stack concurrent
[ ] 443 0 0 443 / 1000 5.3s Stack concurrent
[ ] 446 0 0 446 / 1000 5.5s Stack concurrent
[ ] 459 0 0 459 / 1000 5.7s Stack concurrent
[ ] 465 0 0 465 / 1000 5.8s Stack concurrent
[ ] 489 0 0 489 / 1000 6.0s Stack concurrent
[ ] 492 0 0 492 / 1000 6.1s Stack concurrent
[ ] 506 0 0 506 / 1000 6.2s Stack concurrent
[ ] 514 0 0 514 / 1000 6.4s Stack concurrent
[ ] 533 0 0 533 / 1000 6.6s Stack concurrent
[ ] 542 0 0 542 / 1000 6.7s Stack concurrent
[ ] 551 0 0 551 / 1000 6.9s Stack concurrent
[ ] 559 0 0 559 / 1000 7.0s Stack concurrent
[ ] 563 0 0 563 / 1000 7.2s Stack concurrent
[ ] 573 0 0 573 / 1000 7.4s Stack concurrent
[ ] 574 0 0 574 / 1000 7.5s Stack concurrent
[ ] 586 0 0 586 / 1000 7.6s Stack concurrent
[ ] 597 0 0 597 / 1000 7.7s Stack concurrent
[ ] 605 0 0 605 / 1000 7.9s Stack concurrent
[ ] 618 0 0 618 / 1000 8.1s Stack concurrent
[ ] 625 0 0 625 / 1000 8.3s Stack concurrent
[ ] 637 0 0 637 / 1000 8.4s Stack concurrent
[ ] 646 0 0 646 / 1000 8.6s Stack concurrent
[ ] 656 0 0 656 / 1000 8.8s Stack concurrent
[ ] 663 0 0 663 / 1000 8.9s Stack concurrent
[ ] 675 0 0 675 / 1000 9.1s Stack concurrent
[ ] 688 0 0 688 / 1000 9.2s Stack concurrent
[ ] 704 0 0 704 / 1000 9.4s Stack concurrent
[ ] 718 0 0 718 / 1000 9.5s Stack concurrent
[ ] 720 0 0 720 / 1000 9.7s Stack concurrent
[ ] 723 0 0 723 / 1000 9.8s Stack concurrent
[ ] 741 0 0 741 / 1000 9.9s Stack concurrent
[ ] 744 0 0 744 / 1000 10.1s Stack concurrent
[ ] 758 0 0 758 / 1000 10.2s Stack concurrent
[ ] 770 0 0 770 / 1000 10.4s Stack concurrent
[ ] 788 0 0 788 / 1000 10.5s Stack concurrent
[ ] 804 0 0 804 / 1000 10.6s Stack concurrent
[ ] 826 0 0 826 / 1000 10.7s Stack concurrent
[ ] 844 0 0 844 / 1000 11.0s Stack concurrent
[ ] 850 0 0 850 / 1000 11.1s Stack concurrent
[ ] 854 0 0 854 / 1000 11.2s Stack concurrent
[ ] 867 0 0 867 / 1000 11.3s Stack concurrent
[ ] 879 0 0 879 / 1000 11.5s Stack concurrent
[ ] 884 0 0 884 / 1000 11.7s Stack concurrent
[ ] 889 0 0 889 / 1000 11.8s Stack concurrent
[ ] 903 0 0 903 / 1000 12.0s Stack concurrent
[ ] 909 0 0 909 / 1000 12.1s Stack concurrent
[ ] 934 0 0 934 / 1000 12.2s Stack concurrent
[ ] 939 0 0 939 / 1000 12.4s Stack concurrent
[ ] 957 0 0 957 / 1000 12.5s Stack concurrent
[ ] 962 0 0 962 / 1000 12.6s Stack concurrent
[ ] 968 0 0 968 / 1000 12.8s Stack concurrent
[ ] 977 0 0 977 / 1000 13.1s Stack concurrent
[ ] 979 0 0 979 / 1000 13.2s Stack concurrent
[ ] 980 0 0 980 / 1000 13.3s Stack concurrent
[✓] 1000 0 0 1000 / 1000 13.4s Stack concurrent
- ================================================================================
- success (ran 2 tests)
- (cd _build/default/test/kcas_data && ./accumulator_test_stm.exe)
-
random seed: 52184473
- 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
[ ] 30 0 0 30 / 1000 0.1s Accumulator concurrent
[ ] 49 0 0 49 / 1000 0.3s Accumulator concurrent
[ ] 51 0 0 51 / 1000 0.4s Accumulator concurrent
[ ] 75 0 0 75 / 1000 0.6s Accumulator concurrent
[ ] 78 0 0 78 / 1000 0.7s Accumulator concurrent
[ ] 91 0 0 91 / 1000 0.8s Accumulator concurrent
[ ] 92 0 0 92 / 1000 0.9s Accumulator concurrent
[ ] 121 0 0 121 / 1000 1.1s Accumulator concurrent
[ ] 127 0 0 127 / 1000 1.2s Accumulator concurrent
[ ] 129 0 0 129 / 1000 1.3s Accumulator concurrent
[ ] 132 0 0 132 / 1000 1.4s Accumulator concurrent
[ ] 143 0 0 143 / 1000 1.5s Accumulator concurrent
[ ] 153 0 0 153 / 1000 1.6s Accumulator concurrent
[ ] 172 0 0 172 / 1000 1.7s Accumulator concurrent
[ ] 176 0 0 176 / 1000 1.8s Accumulator concurrent
[ ] 183 0 0 183 / 1000 2.0s Accumulator concurrent
[ ] 189 0 0 189 / 1000 2.1s Accumulator concurrent
[ ] 198 0 0 198 / 1000 2.2s Accumulator concurrent
[ ] 222 0 0 222 / 1000 2.4s Accumulator concurrent
[ ] 234 0 0 234 / 1000 2.6s Accumulator concurrent
[ ] 240 0 0 240 / 1000 2.7s Accumulator concurrent
[ ] 252 0 0 252 / 1000 2.8s Accumulator concurrent
[ ] 264 0 0 264 / 1000 3.0s Accumulator concurrent
[ ] 265 0 0 265 / 1000 3.1s Accumulator concurrent
[ ] 267 0 0 267 / 1000 3.2s Accumulator concurrent
[ ] 278 0 0 278 / 1000 3.4s Accumulator concurrent
[ ] 290 0 0 290 / 1000 3.5s Accumulator concurrent
[ ] 296 0 0 296 / 1000 3.6s Accumulator concurrent
[ ] 309 0 0 309 / 1000 3.8s Accumulator concurrent
[ ] 332 0 0 332 / 1000 3.9s Accumulator concurrent
[ ] 334 0 0 334 / 1000 4.1s Accumulator concurrent
[ ] 338 0 0 338 / 1000 4.2s Accumulator concurrent
[ ] 347 0 0 347 / 1000 4.3s Accumulator concurrent
[ ] 358 0 0 358 / 1000 4.5s Accumulator concurrent
[ ] 360 0 0 360 / 1000 4.6s Accumulator concurrent
[ ] 378 0 0 378 / 1000 4.7s Accumulator concurrent
[ ] 394 0 0 394 / 1000 4.9s Accumulator concurrent
[ ] 403 0 0 403 / 1000 5.0s Accumulator concurrent
[ ] 409 0 0 409 / 1000 5.2s Accumulator concurrent
[ ] 416 0 0 416 / 1000 5.4s Accumulator concurrent
[ ] 417 0 0 417 / 1000 5.5s Accumulator concurrent
[ ] 437 0 0 437 / 1000 5.6s Accumulator concurrent
[ ] 447 0 0 447 / 1000 5.8s Accumulator concurrent
[ ] 460 0 0 460 / 1000 6.0s Accumulator concurrent
[ ] 477 0 0 477 / 1000 6.1s Accumulator concurrent
[ ] 490 0 0 490 / 1000 6.2s Accumulator concurrent
[ ] 509 0 0 509 / 1000 6.4s Accumulator concurrent
[ ] 529 0 0 529 / 1000 6.5s Accumulator concurrent
[ ] 536 0 0 536 / 1000 6.6s Accumulator concurrent
[ ] 554 0 0 554 / 1000 6.7s Accumulator concurrent
[ ] 555 0 0 555 / 1000 6.9s Accumulator concurrent
[ ] 557 0 0 557 / 1000 7.0s Accumulator concurrent
[ ] 574 0 0 574 / 1000 7.1s Accumulator concurrent
[ ] 580 0 0 580 / 1000 7.3s Accumulator concurrent
[ ] 584 0 0 584 / 1000 7.4s Accumulator concurrent
[ ] 588 0 0 588 / 1000 7.5s Accumulator concurrent
[ ] 603 0 0 603 / 1000 7.6s Accumulator concurrent
[ ] 609 0 0 609 / 1000 7.8s Accumulator concurrent
[ ] 625 0 0 625 / 1000 7.9s Accumulator concurrent
[ ] 627 0 0 627 / 1000 8.0s Accumulator concurrent
[ ] 631 0 0 631 / 1000 8.2s Accumulator concurrent
[ ] 643 0 0 643 / 1000 8.3s Accumulator concurrent
[ ] 661 0 0 661 / 1000 8.5s Accumulator concurrent
[ ] 669 0 0 669 / 1000 8.6s Accumulator concurrent
[ ] 671 0 0 671 / 1000 8.7s Accumulator concurrent
[ ] 685 0 0 685 / 1000 8.9s Accumulator concurrent
[ ] 688 0 0 688 / 1000 9.0s Accumulator concurrent
[ ] 693 0 0 693 / 1000 9.1s Accumulator concurrent
[ ] 697 0 0 697 / 1000 9.3s Accumulator concurrent
[ ] 715 0 0 715 / 1000 9.4s Accumulator concurrent
[ ] 741 0 0 741 / 1000 9.5s Accumulator concurrent
[ ] 752 0 0 752 / 1000 9.6s Accumulator concurrent
[ ] 754 0 0 754 / 1000 9.7s Accumulator concurrent
[ ] 769 0 0 769 / 1000 9.9s Accumulator concurrent
[ ] 777 0 0 777 / 1000 10.0s Accumulator concurrent
[ ] 795 0 0 795 / 1000 10.1s Accumulator concurrent
[ ] 805 0 0 805 / 1000 10.4s Accumulator concurrent
[ ] 824 0 0 824 / 1000 10.6s Accumulator concurrent
[ ] 837 0 0 837 / 1000 10.7s Accumulator concurrent
[ ] 854 0 0 854 / 1000 10.8s Accumulator concurrent
[ ] 858 0 0 858 / 1000 10.9s Accumulator concurrent
[ ] 859 0 0 859 / 1000 11.1s Accumulator concurrent
[ ] 863 0 0 863 / 1000 11.2s Accumulator concurrent
[ ] 879 0 0 879 / 1000 11.3s Accumulator concurrent
[ ] 884 0 0 884 / 1000 11.5s Accumulator concurrent
[ ] 893 0 0 893 / 1000 11.6s Accumulator concurrent
[ ] 895 0 0 895 / 1000 11.8s Accumulator concurrent
[ ] 898 0 0 898 / 1000 12.0s Accumulator concurrent
[ ] 918 0 0 918 / 1000 12.1s Accumulator concurrent
[ ] 920 0 0 920 / 1000 12.3s Accumulator concurrent
[ ] 945 0 0 945 / 1000 12.4s Accumulator concurrent
[ ] 952 0 0 952 / 1000 12.5s Accumulator concurrent
[ ] 968 0 0 968 / 1000 12.7s Accumulator concurrent
[ ] 984 0 0 984 / 1000 13.0s Accumulator concurrent
[ ] 987 0 0 987 / 1000 13.2s Accumulator concurrent
[ ] 996 0 0 996 / 1000 13.3s Accumulator concurrent
[ ] 999 0 0 999 / 1000 13.5s Accumulator concurrent
[✓] 1000 0 0 1000 / 1000 13.5s Accumulator concurrent
- ================================================================================
- success (ran 2 tests)
- (cd _build/default/test/kcas_data && ./hashtbl_test_stm.exe)
-
random seed: 265016872
- 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
[ ] 11 0 0 11 / 1000 0.2s Hashtbl concurrent
[ ] 23 0 0 23 / 1000 0.4s Hashtbl concurrent
[ ] 28 0 0 28 / 1000 0.5s Hashtbl concurrent
[ ] 34 0 0 34 / 1000 0.7s Hashtbl concurrent
[ ] 54 0 0 54 / 1000 0.8s Hashtbl concurrent
[ ] 78 0 0 78 / 1000 0.9s Hashtbl concurrent
[ ] 80 0 0 80 / 1000 1.0s Hashtbl concurrent
[ ] 89 0 0 89 / 1000 1.2s Hashtbl concurrent
[ ] 101 0 0 101 / 1000 1.3s Hashtbl concurrent
[ ] 114 0 0 114 / 1000 1.4s Hashtbl concurrent
[ ] 132 0 0 132 / 1000 1.5s Hashtbl concurrent
[ ] 143 0 0 143 / 1000 1.7s Hashtbl concurrent
[ ] 153 0 0 153 / 1000 1.9s Hashtbl concurrent
[ ] 158 0 0 158 / 1000 2.0s Hashtbl concurrent
[ ] 160 0 0 160 / 1000 2.2s Hashtbl concurrent
[ ] 190 0 0 190 / 1000 2.3s Hashtbl concurrent
[ ] 198 0 0 198 / 1000 2.5s Hashtbl concurrent
[ ] 199 0 0 199 / 1000 2.6s Hashtbl concurrent
[ ] 216 0 0 216 / 1000 2.8s Hashtbl concurrent
[ ] 231 0 0 231 / 1000 2.9s Hashtbl concurrent
[ ] 247 0 0 247 / 1000 3.0s Hashtbl concurrent
[ ] 266 0 0 266 / 1000 3.2s Hashtbl concurrent
[ ] 277 0 0 277 / 1000 3.3s Hashtbl concurrent
[ ] 286 0 0 286 / 1000 3.5s Hashtbl concurrent
[ ] 288 0 0 288 / 1000 3.6s Hashtbl concurrent
[ ] 292 0 0 292 / 1000 3.8s Hashtbl concurrent
[ ] 303 0 0 303 / 1000 4.0s Hashtbl concurrent
[ ] 311 0 0 311 / 1000 4.2s Hashtbl concurrent
[ ] 325 0 0 325 / 1000 4.3s Hashtbl concurrent
[ ] 327 0 0 327 / 1000 4.5s Hashtbl concurrent
[ ] 333 0 0 333 / 1000 4.6s Hashtbl concurrent
[ ] 335 0 0 335 / 1000 4.8s Hashtbl concurrent
[ ] 350 0 0 350 / 1000 5.0s Hashtbl concurrent
[ ] 356 0 0 356 / 1000 5.1s Hashtbl concurrent
[ ] 364 0 0 364 / 1000 5.2s Hashtbl concurrent
[ ] 384 0 0 384 / 1000 5.4s Hashtbl concurrent
[ ] 398 0 0 398 / 1000 5.5s Hashtbl concurrent
[ ] 416 0 0 416 / 1000 5.6s Hashtbl concurrent
[ ] 417 0 0 417 / 1000 5.8s Hashtbl concurrent
[ ] 427 0 0 427 / 1000 5.9s Hashtbl concurrent
[ ] 439 0 0 439 / 1000 6.0s Hashtbl concurrent
[ ] 454 0 0 454 / 1000 6.1s Hashtbl concurrent
[ ] 469 0 0 469 / 1000 6.2s Hashtbl concurrent
[ ] 487 0 0 487 / 1000 6.3s Hashtbl concurrent
[ ] 510 0 0 510 / 1000 6.5s Hashtbl concurrent
[ ] 518 0 0 518 / 1000 6.7s Hashtbl concurrent
[ ] 532 0 0 532 / 1000 6.8s Hashtbl concurrent
[ ] 534 0 0 534 / 1000 6.9s Hashtbl concurrent
[ ] 544 0 0 544 / 1000 7.0s Hashtbl concurrent
[ ] 548 0 0 548 / 1000 7.1s Hashtbl concurrent
[ ] 549 0 0 549 / 1000 7.3s Hashtbl concurrent
[ ] 557 0 0 557 / 1000 7.4s Hashtbl concurrent
[ ] 572 0 0 572 / 1000 7.6s Hashtbl concurrent
[ ] 576 0 0 576 / 1000 7.7s Hashtbl concurrent
[ ] 591 0 0 591 / 1000 7.8s Hashtbl concurrent
[ ] 595 0 0 595 / 1000 8.1s Hashtbl concurrent
[ ] 603 0 0 603 / 1000 8.2s Hashtbl concurrent
[ ] 609 0 0 609 / 1000 8.3s Hashtbl concurrent
[ ] 627 0 0 627 / 1000 8.5s Hashtbl concurrent
[ ] 629 0 0 629 / 1000 8.7s Hashtbl concurrent
[ ] 644 0 0 644 / 1000 8.9s Hashtbl concurrent
[ ] 662 0 0 662 / 1000 9.1s Hashtbl concurrent
[ ] 663 0 0 663 / 1000 9.4s Hashtbl concurrent
[ ] 673 0 0 673 / 1000 9.6s Hashtbl concurrent
[ ] 687 0 0 687 / 1000 9.8s Hashtbl concurrent
[ ] 697 0 0 697 / 1000 9.9s Hashtbl concurrent
[ ] 709 0 0 709 / 1000 10.0s Hashtbl concurrent
[ ] 712 0 0 712 / 1000 10.2s Hashtbl concurrent
[ ] 721 0 0 721 / 1000 10.3s Hashtbl concurrent
[ ] 725 0 0 725 / 1000 10.5s Hashtbl concurrent
[ ] 736 0 0 736 / 1000 10.6s Hashtbl concurrent
[ ] 747 0 0 747 / 1000 10.7s Hashtbl concurrent
[ ] 757 0 0 757 / 1000 10.8s Hashtbl concurrent
[ ] 762 0 0 762 / 1000 11.0s Hashtbl concurrent
[ ] 768 0 0 768 / 1000 11.1s Hashtbl concurrent
[ ] 771 0 0 771 / 1000 11.3s Hashtbl concurrent
[ ] 774 0 0 774 / 1000 11.4s Hashtbl concurrent
[ ] 779 0 0 779 / 1000 11.6s Hashtbl concurrent
[ ] 789 0 0 789 / 1000 11.7s Hashtbl concurrent
[ ] 798 0 0 798 / 1000 12.0s Hashtbl concurrent
[ ] 804 0 0 804 / 1000 12.1s Hashtbl concurrent
[ ] 808 0 0 808 / 1000 12.2s Hashtbl concurrent
[ ] 823 0 0 823 / 1000 12.5s Hashtbl concurrent
[ ] 844 0 0 844 / 1000 12.8s Hashtbl concurrent
[ ] 850 0 0 850 / 1000 13.0s Hashtbl concurrent
[ ] 860 0 0 860 / 1000 13.1s Hashtbl concurrent
[ ] 862 0 0 862 / 1000 13.3s Hashtbl concurrent
[ ] 883 0 0 883 / 1000 13.4s Hashtbl concurrent
[ ] 910 0 0 910 / 1000 13.6s Hashtbl concurrent
[ ] 917 0 0 917 / 1000 13.7s Hashtbl concurrent
[ ] 928 0 0 928 / 1000 13.9s Hashtbl concurrent
[ ] 929 0 0 929 / 1000 14.0s Hashtbl concurrent
[ ] 942 0 0 942 / 1000 14.1s Hashtbl concurrent
[ ] 956 0 0 956 / 1000 14.2s Hashtbl concurrent
[ ] 970 0 0 970 / 1000 14.3s Hashtbl concurrent
[ ] 982 0 0 982 / 1000 14.4s Hashtbl concurrent
[ ] 994 0 0 994 / 1000 14.6s Hashtbl concurrent
[✓] 1000 0 0 1000 / 1000 14.6s Hashtbl concurrent
- ================================================================================
- success (ran 2 tests)
- (cd _build/default/test/kcas_data && ./queue_test_stm.exe)
-
random seed: 191834704
- 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
[ ] 3 0 0 3 / 1000 0.1s Queue concurrent
[ ] 23 0 0 23 / 1000 0.3s Queue concurrent
[ ] 30 0 0 30 / 1000 0.5s Queue concurrent
[ ] 34 0 0 34 / 1000 0.6s Queue concurrent
[ ] 39 0 0 39 / 1000 0.7s Queue concurrent
[ ] 46 0 0 46 / 1000 0.8s Queue concurrent
[ ] 62 0 0 62 / 1000 0.9s Queue concurrent
[ ] 77 0 0 77 / 1000 1.1s Queue concurrent
[ ] 96 0 0 96 / 1000 1.3s Queue concurrent
[ ] 112 0 0 112 / 1000 1.4s Queue concurrent
[ ] 117 0 0 117 / 1000 1.5s Queue concurrent
[ ] 126 0 0 126 / 1000 1.6s Queue concurrent
[ ] 128 0 0 128 / 1000 1.7s Queue concurrent
[ ] 143 0 0 143 / 1000 1.8s Queue concurrent
[ ] 154 0 0 154 / 1000 2.0s Queue concurrent
[ ] 160 0 0 160 / 1000 2.1s Queue concurrent
[ ] 175 0 0 175 / 1000 2.2s Queue concurrent
[ ] 182 0 0 182 / 1000 2.3s Queue concurrent
[ ] 191 0 0 191 / 1000 2.5s Queue concurrent
[ ] 207 0 0 207 / 1000 2.6s Queue concurrent
[ ] 208 0 0 208 / 1000 2.7s Queue concurrent
[ ] 211 0 0 211 / 1000 2.9s Queue concurrent
[ ] 227 0 0 227 / 1000 3.0s Queue concurrent
[ ] 234 0 0 234 / 1000 3.1s Queue concurrent
[ ] 241 0 0 241 / 1000 3.2s Queue concurrent
[ ] 253 0 0 253 / 1000 3.3s Queue concurrent
[ ] 268 0 0 268 / 1000 3.4s Queue concurrent
[ ] 273 0 0 273 / 1000 3.6s Queue concurrent
[ ] 287 0 0 287 / 1000 3.7s Queue concurrent
[ ] 300 0 0 300 / 1000 3.8s Queue concurrent
[ ] 301 0 0 301 / 1000 3.9s Queue concurrent
[ ] 309 0 0 309 / 1000 4.0s Queue concurrent
[ ] 312 0 0 312 / 1000 4.1s Queue concurrent
[ ] 322 0 0 322 / 1000 4.2s Queue concurrent
[ ] 328 0 0 328 / 1000 4.3s Queue concurrent
[ ] 330 0 0 330 / 1000 4.5s Queue concurrent
[ ] 331 0 0 331 / 1000 4.6s Queue concurrent
[ ] 340 0 0 340 / 1000 4.8s Queue concurrent
[ ] 343 0 0 343 / 1000 4.9s Queue concurrent
[ ] 351 0 0 351 / 1000 5.0s Queue concurrent
[ ] 363 0 0 363 / 1000 5.2s Queue concurrent
[ ] 374 0 0 374 / 1000 5.4s Queue concurrent
[ ] 380 0 0 380 / 1000 5.6s Queue concurrent
[ ] 400 0 0 400 / 1000 5.7s Queue concurrent
[ ] 412 0 0 412 / 1000 5.8s Queue concurrent
[ ] 433 0 0 433 / 1000 6.0s Queue concurrent
[ ] 440 0 0 440 / 1000 6.3s Queue concurrent
[ ] 453 0 0 453 / 1000 6.4s Queue concurrent
[ ] 463 0 0 463 / 1000 6.6s Queue concurrent
[ ] 465 0 0 465 / 1000 6.7s Queue concurrent
[ ] 484 0 0 484 / 1000 6.8s Queue concurrent
[ ] 485 0 0 485 / 1000 6.9s Queue concurrent
[ ] 486 0 0 486 / 1000 7.1s Queue concurrent
[ ] 501 0 0 501 / 1000 7.2s Queue concurrent
[ ] 502 0 0 502 / 1000 7.3s Queue concurrent
[ ] 503 0 0 503 / 1000 7.4s Queue concurrent
[ ] 504 0 0 504 / 1000 7.5s Queue concurrent
[ ] 515 0 0 515 / 1000 7.7s Queue concurrent
[ ] 518 0 0 518 / 1000 7.8s Queue concurrent
[ ] 540 0 0 540 / 1000 8.0s Queue concurrent
[ ] 541 0 0 541 / 1000 8.1s Queue concurrent
[ ] 556 0 0 556 / 1000 8.2s Queue concurrent
[ ] 561 0 0 561 / 1000 8.4s Queue concurrent
[ ] 573 0 0 573 / 1000 8.7s Queue concurrent
[ ] 582 0 0 582 / 1000 8.8s Queue concurrent
[ ] 584 0 0 584 / 1000 8.9s Queue concurrent
[ ] 592 0 0 592 / 1000 9.1s Queue concurrent
[ ] 600 0 0 600 / 1000 9.3s Queue concurrent
[ ] 610 0 0 610 / 1000 9.5s Queue concurrent
[ ] 620 0 0 620 / 1000 9.6s Queue concurrent
[ ] 623 0 0 623 / 1000 9.7s Queue concurrent
[ ] 624 0 0 624 / 1000 9.8s Queue concurrent
[ ] 637 0 0 637 / 1000 10.0s Queue concurrent
[ ] 652 0 0 652 / 1000 10.1s Queue concurrent
[ ] 660 0 0 660 / 1000 10.3s Queue concurrent
[ ] 672 0 0 672 / 1000 10.4s Queue concurrent
[ ] 674 0 0 674 / 1000 10.6s Queue concurrent
[ ] 680 0 0 680 / 1000 10.7s Queue concurrent
[ ] 685 0 0 685 / 1000 11.0s Queue concurrent
[ ] 691 0 0 691 / 1000 11.2s Queue concurrent
[ ] 709 0 0 709 / 1000 11.4s Queue concurrent
[ ] 712 0 0 712 / 1000 11.5s Queue concurrent
[ ] 721 0 0 721 / 1000 11.6s Queue concurrent
[ ] 727 0 0 727 / 1000 11.9s Queue concurrent
[ ] 732 0 0 732 / 1000 12.0s Queue concurrent
[ ] 737 0 0 737 / 1000 12.2s Queue concurrent
[ ] 745 0 0 745 / 1000 12.4s Queue concurrent
[ ] 751 0 0 751 / 1000 12.6s Queue concurrent
[ ] 765 0 0 765 / 1000 12.8s Queue concurrent
[ ] 768 0 0 768 / 1000 12.9s Queue concurrent
[ ] 780 0 0 780 / 1000 13.1s Queue concurrent
[ ] 788 0 0 788 / 1000 13.2s Queue concurrent
[ ] 789 0 0 789 / 1000 13.4s Queue concurrent
[ ] 796 0 0 796 / 1000 13.5s Queue concurrent
[ ] 801 0 0 801 / 1000 13.7s Queue concurrent
[ ] 810 0 0 810 / 1000 13.9s Queue concurrent
[ ] 819 0 0 819 / 1000 14.0s Queue concurrent
[ ] 825 0 0 825 / 1000 14.1s Queue concurrent
[ ] 836 0 0 836 / 1000 14.2s Queue concurrent
[ ] 846 0 0 846 / 1000 14.4s Queue concurrent
[ ] 862 0 0 862 / 1000 14.5s Queue concurrent
[ ] 884 0 0 884 / 1000 14.6s Queue concurrent
[ ] 886 0 0 886 / 1000 14.7s Queue concurrent
[ ] 905 0 0 905 / 1000 14.9s Queue concurrent
[ ] 911 0 0 911 / 1000 15.0s Queue concurrent
[ ] 928 0 0 928 / 1000 15.2s Queue concurrent
[ ] 937 0 0 937 / 1000 15.3s Queue concurrent
[ ] 938 0 0 938 / 1000 15.4s Queue concurrent
[ ] 956 0 0 956 / 1000 15.6s Queue concurrent
[ ] 970 0 0 970 / 1000 15.8s Queue concurrent
[ ] 980 0 0 980 / 1000 15.9s Queue concurrent
[ ] 998 0 0 998 / 1000 16.1s Queue concurrent
[✓] 1000 0 0 1000 / 1000 16.1s Queue concurrent
- ================================================================================
- success (ran 2 tests)
- (cd _build/default/test/kcas_data && ./dllist_test_stm.exe)
-
random seed: 116096711
- 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
[ ] 12 0 0 12 / 1000 0.1s Dllist concurrent
[ ] 17 0 0 17 / 1000 0.2s Dllist concurrent
[ ] 27 0 0 27 / 1000 0.3s Dllist concurrent
[ ] 36 0 0 36 / 1000 0.4s Dllist concurrent
[ ] 48 0 0 48 / 1000 0.6s Dllist concurrent
[ ] 53 0 0 53 / 1000 0.7s Dllist concurrent
[ ] 55 0 0 55 / 1000 0.9s Dllist concurrent
[ ] 70 0 0 70 / 1000 1.0s Dllist concurrent
[ ] 77 0 0 77 / 1000 1.3s Dllist concurrent
[ ] 91 0 0 91 / 1000 1.5s Dllist concurrent
[ ] 98 0 0 98 / 1000 1.7s Dllist concurrent
[ ] 117 0 0 117 / 1000 1.8s Dllist concurrent
[ ] 121 0 0 121 / 1000 2.0s Dllist concurrent
[ ] 125 0 0 125 / 1000 2.1s Dllist concurrent
[ ] 136 0 0 136 / 1000 2.3s Dllist concurrent
[ ] 147 0 0 147 / 1000 2.5s Dllist concurrent
[ ] 156 0 0 156 / 1000 2.7s Dllist concurrent
[ ] 163 0 0 163 / 1000 2.9s Dllist concurrent
[ ] 170 0 0 170 / 1000 3.0s Dllist concurrent
[ ] 185 0 0 185 / 1000 3.2s Dllist concurrent
[ ] 192 0 0 192 / 1000 3.3s Dllist concurrent
[ ] 195 0 0 195 / 1000 3.5s Dllist concurrent
[ ] 201 0 0 201 / 1000 3.7s Dllist concurrent
[ ] 211 0 0 211 / 1000 3.9s Dllist concurrent
[ ] 216 0 0 216 / 1000 4.0s Dllist concurrent
[ ] 224 0 0 224 / 1000 4.2s Dllist concurrent
[ ] 241 0 0 241 / 1000 4.4s Dllist concurrent
[ ] 255 0 0 255 / 1000 4.5s Dllist concurrent
[ ] 258 0 0 258 / 1000 4.6s Dllist concurrent
[ ] 277 0 0 277 / 1000 4.7s Dllist concurrent
[ ] 305 0 0 305 / 1000 4.8s Dllist concurrent
[ ] 317 0 0 317 / 1000 5.0s Dllist concurrent
[ ] 320 0 0 320 / 1000 5.2s Dllist concurrent
[ ] 327 0 0 327 / 1000 5.3s Dllist concurrent
[ ] 330 0 0 330 / 1000 5.5s Dllist concurrent
[ ] 346 0 0 346 / 1000 5.6s Dllist concurrent
[ ] 369 0 0 369 / 1000 5.7s Dllist concurrent
[ ] 379 0 0 379 / 1000 5.9s Dllist concurrent
[ ] 391 0 0 391 / 1000 6.0s Dllist concurrent
[ ] 413 0 0 413 / 1000 6.1s Dllist concurrent
[ ] 421 0 0 421 / 1000 6.2s Dllist concurrent
[ ] 422 0 0 422 / 1000 6.3s Dllist concurrent
[ ] 424 0 0 424 / 1000 6.5s Dllist concurrent
[ ] 426 0 0 426 / 1000 6.7s Dllist concurrent
[ ] 440 0 0 440 / 1000 6.8s Dllist concurrent
[ ] 446 0 0 446 / 1000 6.9s Dllist concurrent
[ ] 449 0 0 449 / 1000 7.1s Dllist concurrent
[ ] 468 0 0 468 / 1000 7.2s Dllist concurrent
[ ] 485 0 0 485 / 1000 7.3s Dllist concurrent
[ ] 489 0 0 489 / 1000 7.5s Dllist concurrent
[ ] 499 0 0 499 / 1000 7.6s Dllist concurrent
[ ] 513 0 0 513 / 1000 7.7s Dllist concurrent
[ ] 522 0 0 522 / 1000 7.8s Dllist concurrent
[ ] 527 0 0 527 / 1000 7.9s Dllist concurrent
[ ] 536 0 0 536 / 1000 8.2s Dllist concurrent
[ ] 548 0 0 548 / 1000 8.3s Dllist concurrent
[ ] 560 0 0 560 / 1000 8.5s Dllist concurrent
[ ] 571 0 0 571 / 1000 8.6s Dllist concurrent
[ ] 588 0 0 588 / 1000 8.8s Dllist concurrent
[ ] 605 0 0 605 / 1000 8.9s Dllist concurrent
[ ] 616 0 0 616 / 1000 9.1s Dllist concurrent
[ ] 625 0 0 625 / 1000 9.4s Dllist concurrent
[ ] 639 0 0 639 / 1000 9.7s Dllist concurrent
[ ] 650 0 0 650 / 1000 9.8s Dllist concurrent
[ ] 651 0 0 651 / 1000 9.9s Dllist concurrent
[ ] 660 0 0 660 / 1000 10.2s Dllist concurrent
[ ] 669 0 0 669 / 1000 10.4s Dllist concurrent
[ ] 676 0 0 676 / 1000 10.5s Dllist concurrent
[ ] 679 0 0 679 / 1000 10.8s Dllist concurrent
[ ] 686 0 0 686 / 1000 10.9s Dllist concurrent
[ ] 690 0 0 690 / 1000 11.1s Dllist concurrent
[ ] 703 0 0 703 / 1000 11.2s Dllist concurrent
[ ] 705 0 0 705 / 1000 11.3s Dllist concurrent
[ ] 731 0 0 731 / 1000 11.4s Dllist concurrent
[ ] 753 0 0 753 / 1000 11.5s Dllist concurrent
[ ] 756 0 0 756 / 1000 11.8s Dllist concurrent
[ ] 757 0 0 757 / 1000 12.0s Dllist concurrent
[ ] 765 0 0 765 / 1000 12.1s Dllist concurrent
[ ] 779 0 0 779 / 1000 12.2s Dllist concurrent
[ ] 788 0 0 788 / 1000 12.4s Dllist concurrent
[ ] 794 0 0 794 / 1000 12.6s Dllist concurrent
[ ] 801 0 0 801 / 1000 12.8s Dllist concurrent
[ ] 802 0 0 802 / 1000 12.9s Dllist concurrent
[ ] 806 0 0 806 / 1000 13.0s Dllist concurrent
[ ] 815 0 0 815 / 1000 13.1s Dllist concurrent
[ ] 821 0 0 821 / 1000 13.2s Dllist concurrent
[ ] 822 0 0 822 / 1000 13.4s Dllist concurrent
[ ] 826 0 0 826 / 1000 13.7s Dllist concurrent
[ ] 830 0 0 830 / 1000 13.8s Dllist concurrent
[ ] 841 0 0 841 / 1000 14.0s Dllist concurrent
[ ] 842 0 0 842 / 1000 14.2s Dllist concurrent
[ ] 854 0 0 854 / 1000 14.4s Dllist concurrent
[ ] 859 0 0 859 / 1000 14.6s Dllist concurrent
[ ] 865 0 0 865 / 1000 14.8s Dllist concurrent
[ ] 875 0 0 875 / 1000 14.9s Dllist concurrent
[ ] 893 0 0 893 / 1000 15.0s Dllist concurrent
[ ] 899 0 0 899 / 1000 15.2s Dllist concurrent
[ ] 905 0 0 905 / 1000 15.3s Dllist concurrent
[ ] 921 0 0 921 / 1000 15.4s Dllist concurrent
[ ] 935 0 0 935 / 1000 15.7s Dllist concurrent
[ ] 947 0 0 947 / 1000 15.8s Dllist concurrent
[ ] 955 0 0 955 / 1000 15.9s Dllist concurrent
[ ] 966 0 0 966 / 1000 16.0s Dllist concurrent
[ ] 972 0 0 972 / 1000 16.1s Dllist concurrent
[ ] 989 0 0 989 / 1000 16.4s Dllist concurrent
[ ] 995 0 0 995 / 1000 16.5s Dllist concurrent
[✓] 1000 0 0 1000 / 1000 16.6s Dllist concurrent
- ================================================================================
- success (ran 2 tests)
- (cd _build/default/test/kcas_data && ./linearizable_chaining_example.exe)
-
random seed: 245434317
- 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.1s Hashtbl_with_order concurrent
[ ] 13 0 0 13 / 1000 0.4s Hashtbl_with_order concurrent
[ ] 19 0 0 19 / 1000 0.6s Hashtbl_with_order concurrent
[ ] 31 0 0 31 / 1000 0.7s Hashtbl_with_order concurrent
[ ] 37 0 0 37 / 1000 1.0s Hashtbl_with_order concurrent
[ ] 43 0 0 43 / 1000 1.1s Hashtbl_with_order concurrent
[ ] 50 0 0 50 / 1000 1.4s Hashtbl_with_order concurrent
[ ] 61 0 0 61 / 1000 1.5s Hashtbl_with_order concurrent
[ ] 73 0 0 73 / 1000 1.8s Hashtbl_with_order concurrent
[ ] 77 0 0 77 / 1000 1.9s Hashtbl_with_order concurrent
[ ] 81 0 0 81 / 1000 2.0s Hashtbl_with_order concurrent
[ ] 93 0 0 93 / 1000 2.1s Hashtbl_with_order concurrent
[ ] 94 0 0 94 / 1000 2.2s Hashtbl_with_order concurrent
[ ] 107 0 0 107 / 1000 2.6s Hashtbl_with_order concurrent
[ ] 120 0 0 120 / 1000 2.7s Hashtbl_with_order concurrent
[ ] 123 0 0 123 / 1000 2.8s Hashtbl_with_order concurrent
[ ] 127 0 0 127 / 1000 3.2s Hashtbl_with_order concurrent
[ ] 133 0 0 133 / 1000 3.3s Hashtbl_with_order concurrent
[ ] 137 0 0 137 / 1000 3.5s Hashtbl_with_order concurrent
[ ] 148 0 0 148 / 1000 3.6s Hashtbl_with_order concurrent
[ ] 154 0 0 154 / 1000 3.7s Hashtbl_with_order concurrent
[ ] 165 0 0 165 / 1000 3.9s Hashtbl_with_order concurrent
[ ] 174 0 0 174 / 1000 4.2s Hashtbl_with_order concurrent
[ ] 175 0 0 175 / 1000 4.3s Hashtbl_with_order concurrent
[ ] 179 0 0 179 / 1000 4.7s Hashtbl_with_order concurrent
[ ] 201 0 0 201 / 1000 4.8s Hashtbl_with_order concurrent
[ ] 217 0 0 217 / 1000 5.1s Hashtbl_with_order concurrent
[ ] 222 0 0 222 / 1000 5.2s Hashtbl_with_order concurrent
[ ] 231 0 0 231 / 1000 5.3s Hashtbl_with_order concurrent
[ ] 246 0 0 246 / 1000 5.5s Hashtbl_with_order concurrent
[ ] 252 0 0 252 / 1000 5.7s Hashtbl_with_order concurrent
[ ] 262 0 0 262 / 1000 5.8s Hashtbl_with_order concurrent
[ ] 271 0 0 271 / 1000 6.0s Hashtbl_with_order concurrent
[ ] 288 0 0 288 / 1000 6.1s Hashtbl_with_order concurrent
[ ] 290 0 0 290 / 1000 6.3s Hashtbl_with_order concurrent
[ ] 298 0 0 298 / 1000 6.4s Hashtbl_with_order concurrent
[ ] 300 0 0 300 / 1000 6.6s Hashtbl_with_order concurrent
[ ] 308 0 0 308 / 1000 6.8s Hashtbl_with_order concurrent
[ ] 311 0 0 311 / 1000 6.9s Hashtbl_with_order concurrent
[ ] 325 0 0 325 / 1000 7.0s Hashtbl_with_order concurrent
[ ] 326 0 0 326 / 1000 7.2s Hashtbl_with_order concurrent
[ ] 343 0 0 343 / 1000 7.3s Hashtbl_with_order concurrent
[ ] 358 0 0 358 / 1000 7.6s Hashtbl_with_order concurrent
[ ] 360 0 0 360 / 1000 7.7s Hashtbl_with_order concurrent
[ ] 368 0 0 368 / 1000 7.9s Hashtbl_with_order concurrent
[ ] 374 0 0 374 / 1000 8.0s Hashtbl_with_order concurrent
[ ] 377 0 0 377 / 1000 8.4s Hashtbl_with_order concurrent
[ ] 395 0 0 395 / 1000 8.5s Hashtbl_with_order concurrent
[ ] 398 0 0 398 / 1000 8.7s Hashtbl_with_order concurrent
[ ] 401 0 0 401 / 1000 8.8s Hashtbl_with_order concurrent
[ ] 411 0 0 411 / 1000 9.2s Hashtbl_with_order concurrent
[ ] 415 0 0 415 / 1000 9.3s Hashtbl_with_order concurrent
[ ] 422 0 0 422 / 1000 9.7s Hashtbl_with_order concurrent
[ ] 434 0 0 434 / 1000 10.0s Hashtbl_with_order concurrent
[ ] 444 0 0 444 / 1000 10.1s Hashtbl_with_order concurrent
[ ] 450 0 0 450 / 1000 10.4s Hashtbl_with_order concurrent
[ ] 454 0 0 454 / 1000 10.7s Hashtbl_with_order concurrent
[ ] 464 0 0 464 / 1000 11.1s Hashtbl_with_order concurrent
[ ] 468 0 0 468 / 1000 11.3s Hashtbl_with_order concurrent
[ ] 474 0 0 474 / 1000 11.5s Hashtbl_with_order concurrent
[ ] 476 0 0 476 / 1000 11.6s Hashtbl_with_order concurrent
[ ] 484 0 0 484 / 1000 11.9s Hashtbl_with_order concurrent
[ ] 492 0 0 492 / 1000 12.0s Hashtbl_with_order concurrent
[ ] 500 0 0 500 / 1000 12.2s Hashtbl_with_order concurrent
[ ] 508 0 0 508 / 1000 12.5s Hashtbl_with_order concurrent
[ ] 515 0 0 515 / 1000 12.7s Hashtbl_with_order concurrent
[ ] 524 0 0 524 / 1000 12.8s Hashtbl_with_order concurrent
[ ] 526 0 0 526 / 1000 12.9s Hashtbl_with_order concurrent
[ ] 530 0 0 530 / 1000 13.0s Hashtbl_with_order concurrent
[ ] 532 0 0 532 / 1000 13.2s Hashtbl_with_order concurrent
[ ] 545 0 0 545 / 1000 13.3s Hashtbl_with_order concurrent
[ ] 555 0 0 555 / 1000 13.4s Hashtbl_with_order concurrent
[ ] 559 0 0 559 / 1000 13.6s Hashtbl_with_order concurrent
[ ] 567 0 0 567 / 1000 13.8s Hashtbl_with_order concurrent
[ ] 569 0 0 569 / 1000 13.9s Hashtbl_with_order concurrent
[ ] 576 0 0 576 / 1000 14.1s Hashtbl_with_order concurrent
[ ] 586 0 0 586 / 1000 14.2s Hashtbl_with_order concurrent
[ ] 589 0 0 589 / 1000 14.4s Hashtbl_with_order concurrent
[ ] 590 0 0 590 / 1000 14.5s Hashtbl_with_order concurrent
[ ] 592 0 0 592 / 1000 14.7s Hashtbl_with_order concurrent
[ ] 612 0 0 612 / 1000 15.1s Hashtbl_with_order concurrent
[ ] 627 0 0 627 / 1000 15.3s Hashtbl_with_order concurrent
[ ] 640 0 0 640 / 1000 15.5s Hashtbl_with_order concurrent
[ ] 641 0 0 641 / 1000 15.7s Hashtbl_with_order concurrent
[ ] 647 0 0 647 / 1000 15.9s Hashtbl_with_order concurrent
[ ] 653 0 0 653 / 1000 16.0s Hashtbl_with_order concurrent
[ ] 669 0 0 669 / 1000 16.1s Hashtbl_with_order concurrent
[ ] 674 0 0 674 / 1000 16.2s Hashtbl_with_order concurrent
[ ] 675 0 0 675 / 1000 16.5s Hashtbl_with_order concurrent
[ ] 683 0 0 683 / 1000 16.7s Hashtbl_with_order concurrent
[ ] 688 0 0 688 / 1000 16.8s Hashtbl_with_order concurrent
[ ] 698 0 0 698 / 1000 17.0s Hashtbl_with_order concurrent
[ ] 701 0 0 701 / 1000 17.2s Hashtbl_with_order concurrent
[ ] 704 0 0 704 / 1000 17.4s Hashtbl_with_order concurrent
[ ] 707 0 0 707 / 1000 17.9s Hashtbl_with_order concurrent
[ ] 713 0 0 713 / 1000 18.2s Hashtbl_with_order concurrent
[ ] 728 0 0 728 / 1000 18.5s Hashtbl_with_order concurrent
[ ] 735 0 0 735 / 1000 18.8s Hashtbl_with_order concurrent
[ ] 736 0 0 736 / 1000 19.1s Hashtbl_with_order concurrent
[ ] 741 0 0 741 / 1000 19.7s Hashtbl_with_order concurrent
[ ] 749 0 0 749 / 1000 19.8s Hashtbl_with_order concurrent
[ ] 762 0 0 762 / 1000 19.9s Hashtbl_with_order concurrent
[ ] 764 0 0 764 / 1000 20.3s Hashtbl_with_order concurrent
[ ] 771 0 0 771 / 1000 20.4s Hashtbl_with_order concurrent
[ ] 780 0 0 780 / 1000 20.5s Hashtbl_with_order concurrent
[ ] 788 0 0 788 / 1000 20.6s Hashtbl_with_order concurrent
[ ] 789 0 0 789 / 1000 20.8s Hashtbl_with_order concurrent
[ ] 790 0 0 790 / 1000 21.1s Hashtbl_with_order concurrent
[ ] 798 0 0 798 / 1000 21.2s Hashtbl_with_order concurrent
[ ] 804 0 0 804 / 1000 21.3s Hashtbl_with_order concurrent
[ ] 812 0 0 812 / 1000 21.4s Hashtbl_with_order concurrent
[ ] 813 0 0 813 / 1000 21.7s Hashtbl_with_order concurrent
[ ] 821 0 0 821 / 1000 21.8s Hashtbl_with_order concurrent
[ ] 826 0 0 826 / 1000 21.9s Hashtbl_with_order concurrent
[ ] 844 0 0 844 / 1000 22.1s Hashtbl_with_order concurrent
[ ] 856 0 0 856 / 1000 22.2s Hashtbl_with_order concurrent
[ ] 858 0 0 858 / 1000 22.7s Hashtbl_with_order concurrent
[ ] 861 0 0 861 / 1000 22.8s Hashtbl_with_order concurrent
[ ] 865 0 0 865 / 1000 22.9s Hashtbl_with_order concurrent
[ ] 872 0 0 872 / 1000 23.1s Hashtbl_with_order concurrent
[ ] 873 0 0 873 / 1000 23.3s Hashtbl_with_order concurrent
[ ] 876 0 0 876 / 1000 23.6s Hashtbl_with_order concurrent
[ ] 879 0 0 879 / 1000 23.8s Hashtbl_with_order concurrent
[ ] 881 0 0 881 / 1000 24.0s Hashtbl_with_order concurrent
[ ] 884 0 0 884 / 1000 24.4s Hashtbl_with_order concurrent
[ ] 888 0 0 888 / 1000 24.6s Hashtbl_with_order concurrent
[ ] 894 0 0 894 / 1000 24.7s Hashtbl_with_order concurrent
[ ] 899 0 0 899 / 1000 24.8s Hashtbl_with_order concurrent
[ ] 904 0 0 904 / 1000 25.0s Hashtbl_with_order concurrent
[ ] 906 0 0 906 / 1000 25.2s Hashtbl_with_order concurrent
[ ] 910 0 0 910 / 1000 25.4s Hashtbl_with_order concurrent
[ ] 914 0 0 914 / 1000 25.8s Hashtbl_with_order concurrent
[ ] 916 0 0 916 / 1000 26.2s Hashtbl_with_order concurrent
[ ] 925 0 0 925 / 1000 26.6s Hashtbl_with_order concurrent
[ ] 934 0 0 934 / 1000 27.0s Hashtbl_with_order concurrent
[ ] 938 0 0 938 / 1000 27.1s Hashtbl_with_order concurrent
[ ] 953 0 0 953 / 1000 27.2s Hashtbl_with_order concurrent
[ ] 957 0 0 957 / 1000 27.5s Hashtbl_with_order concurrent
[ ] 961 0 0 961 / 1000 27.9s Hashtbl_with_order concurrent
[ ] 963 0 0 963 / 1000 28.1s Hashtbl_with_order concurrent
[ ] 964 0 0 964 / 1000 28.2s Hashtbl_with_order concurrent
[ ] 972 0 0 972 / 1000 28.3s Hashtbl_with_order concurrent
[ ] 977 0 0 977 / 1000 28.5s Hashtbl_with_order concurrent
[ ] 981 0 0 981 / 1000 28.7s Hashtbl_with_order concurrent
[ ] 986 0 0 986 / 1000 28.9s Hashtbl_with_order concurrent
[ ] 993 0 0 993 / 1000 29.0s Hashtbl_with_order concurrent
[ ] 995 0 0 995 / 1000 29.2s Hashtbl_with_order concurrent
[ ] 999 0 0 999 / 1000 29.4s Hashtbl_with_order concurrent
[✓] 1000 0 0 1000 / 1000 29.4s 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-30 08:07.09 ---> saved as "2c4ad1648c9a7371e9d4f07e2b62291916adeb0aaff10692f1eec873deb9bfae"
Job succeeded
2026-04-30 08:07.19: Job succeeded