2024-10-18 17:21.12: New job: test ocaml-multicore/kcas https://github.com/ocaml-multicore/kcas.git#refs/heads/port-to-picos (c408bc8d61e57ec2d758c7a8fd7081accf7b82fd) (freebsd-x86_64:freebsd-4.14_opam-2.2)
Base: freebsd-ocaml-4.14
Opam project build
To reproduce locally:
git clone --recursive "https://github.com/ocaml-multicore/kcas.git" -b "port-to-picos" && cd "kcas" && git reset --hard c408bc8d
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM freebsd-ocaml-4.14
# freebsd-4.14_opam-2.2
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/local/bin/opam-2.2 /usr/local/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
WORKDIR /src
RUN sudo chown opam /src
RUN cd ~/opam-repository && (git cat-file -e b8e118d3efb119e22f2e979ec1c6aa3e5aacdeff || git fetch origin master) && git reset -q --hard b8e118d3efb119e22f2e979ec1c6aa3e5aacdeff && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 kcas_data.opam kcas.opam ./
RUN opam pin add -yn kcas_data.dev './' && \
opam pin add -yn kcas.dev './'
ENV DEPS="alcotest.1.8.0 astring.0.8.5 backoff.0.1.1 base-bigarray.base base-threads.base base-unix.base camlp-streams.5.0.1 cmdliner.1.3.0 cppo.1.7.0 csexp.1.5.2 domain-local-await.1.0.1 domain_shims.0.1.0 dune.3.16.0 fmt.0.9.0 host-arch-x86_64.1 host-system-other.1 logs.0.7.0 mdx.2.4.1 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.6.9 ocamlbuild.0.15.0 ocamlfind.1.9.6 picos.0.5.0 picos_aux.0.5.0 picos_io.0.5.0 picos_mux.0.5.0 picos_std.0.5.0 psq.0.2.1 qcheck-core.0.22 qcheck-multicoretests-util.0.4 qcheck-stm.0.4 re.1.12.0 result.1.5 seq.base stdlib-shims.0.3.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.0.7 uutf.1.0.3 yojson.2.2.2"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.2 --depext-only -y kcas_data.dev kcas.dev $DEPS
RUN opam install $DEPS
COPY --chown=1000:1000 . /src
RUN opam exec -- dune build @install @check @runtest && rm -rf _build
END-OF-DOCKERFILE
docker build .
END-REPRO-BLOCK
2024-10-18 17:21.12: Using cache hint "ocaml-multicore/kcas-freebsd-ocaml-4.14-freebsd-4.14_opam-2.2-a7faab71759d876a6acd46220b586151"
2024-10-18 17:21.12: Using OBuilder spec:
((from freebsd-ocaml-4.14)
(comment freebsd-4.14_opam-2.2)
(user (uid 1000) (gid 1000))
(env CLICOLOR_FORCE 1)
(env OPAMCOLOR always)
(workdir /src)
(run (shell "sudo ln -f /usr/local/bin/opam-2.2 /usr/local/bin/opam"))
(run (shell "opam init --reinit -ni"))
(run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
(workdir /src)
(run (shell "sudo chown opam /src"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e b8e118d3efb119e22f2e979ec1c6aa3e5aacdeff || git fetch origin master) && git reset -q --hard b8e118d3efb119e22f2e979ec1c6aa3e5aacdeff && git log --no-decorate -n1 --oneline && opam update -u"))
(copy (src kcas_data.opam kcas.opam) (dst ./))
(run (network host)
(shell "opam pin add -yn kcas_data.dev './' && \
\nopam pin add -yn kcas.dev './'"))
(env DEPS "alcotest.1.8.0 astring.0.8.5 backoff.0.1.1 base-bigarray.base base-threads.base base-unix.base camlp-streams.5.0.1 cmdliner.1.3.0 cppo.1.7.0 csexp.1.5.2 domain-local-await.1.0.1 domain_shims.0.1.0 dune.3.16.0 fmt.0.9.0 host-arch-x86_64.1 host-system-other.1 logs.0.7.0 mdx.2.4.1 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.6.9 ocamlbuild.0.15.0 ocamlfind.1.9.6 picos.0.5.0 picos_aux.0.5.0 picos_io.0.5.0 picos_mux.0.5.0 picos_std.0.5.0 psq.0.2.1 qcheck-core.0.22 qcheck-multicoretests-util.0.4 qcheck-stm.0.4 re.1.12.0 result.1.5 seq.base stdlib-shims.0.3.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.0.7 uutf.1.0.3 yojson.2.2.2")
(env CI true)
(env OCAMLCI true)
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update --depexts && opam install --cli=2.2 --depext-only -y kcas_data.dev kcas.dev $DEPS"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
(copy (src .) (dst /src))
(run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
)
2024-10-18 17:21.12: Waiting for resource in pool OCluster
2024-10-18 17:21.12: Waiting for worker…
2024-10-18 17:33.38: Got resource from pool OCluster
Building on summer
All commits already cached
HEAD is now at c408bc8 Change to use Picos instead of DLA and DLT
(from freebsd-ocaml-4.14)
2024-10-18 17:23.45 ---> using "57eeeabfec88366322a66f228a693df277d348dc99f1cc2a63749102c5e1e405" from cache
/: (comment freebsd-4.14_opam-2.2)
/: (user (uid 1000) (gid 1000))
/: (env CLICOLOR_FORCE 1)
/: (env OPAMCOLOR always)
/: (workdir /src)
/src: (run (shell "sudo ln -f /usr/local/bin/opam-2.2 /usr/local/bin/opam"))
2024-10-18 17:23.45 ---> using "331cb54c56ba47239b6522558e6295f68ba679de6d38a5ddae6e1282bd4c3227" from cache
/src: (run (shell "opam init --reinit -ni"))
No configuration file found, using built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [y/n] y
[NOTE] The 'jobs' option was reset, its value was 1 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=1 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2024-10-18 17:23.45 ---> using "0ea397e38f2ed580c996b50aedfdb35f589fe8d5328e4d5701e3485ad0ee7d31" from cache
/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
FreeBSD 14.0-RELEASE-p11
The OCaml toplevel, version 4.14.2
2.2.1
2024-10-18 17:23.46 ---> using "e6ed3443f91a45dc3e2b2fd8eca0fa438601ccaf0a656f5e040e0ef7ec1bf353" from cache
/src: (workdir /src)
/src: (run (shell "sudo chown opam /src"))
2024-10-18 17:23.46 ---> using "a8768039a9919ab7082a771b4ea48607524661cf72600917c57416f2763555c6" from cache
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e b8e118d3efb119e22f2e979ec1c6aa3e5aacdeff || git fetch origin master) && git reset -q --hard b8e118d3efb119e22f2e979ec1c6aa3e5aacdeff && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch master -> FETCH_HEAD
5e7a27da27..b8e118d3ef master -> origin/master
b8e118d3ef Merge pull request #26758 from polytypic/release-multicore-bench-0.1.7
<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from git+file:///home/opam/opam-repository
Everything as up-to-date as possible (run with --verbose to show unavailable upgrades).
The following packages are not being upgraded because the new versions conflict with other installed packages:
- ocaml.5.4.0
- ocaml-config.3
However, you may "opam upgrade" these packages explicitly, which will ask permission to downgrade or uninstall the conflicting packages.
Nothing to do.
2024-10-18 17:23.46 ---> using "246be5b12aec322cda2e994af3709f35f4e5063d12727511abf14ab8e809ae44" from cache
/src: (copy (src kcas_data.opam kcas.opam) (dst ./))
2024-10-18 17:23.48 ---> saved as "c4c6c4e5d8587eaac11d38a85c0cecf4ccf6fec4bf856b773924de701cfbeaaa"
/src: (run (network host)
(shell "opam pin add -yn kcas_data.dev './' && \
\nopam pin add -yn kcas.dev './'"))
[kcas_data.dev] synchronised (file:///src)
kcas_data is now pinned to file:///src (version dev)
[kcas.dev] synchronised (file:///src)
kcas is now pinned to file:///src (version dev)
2024-10-18 17:24.03 ---> saved as "300829cf3459d2a56fb746849ddfac4a35312f4bc6babae9db6addda1d609bc6"
/src: (env DEPS "alcotest.1.8.0 astring.0.8.5 backoff.0.1.1 base-bigarray.base base-threads.base base-unix.base camlp-streams.5.0.1 cmdliner.1.3.0 cppo.1.7.0 csexp.1.5.2 domain-local-await.1.0.1 domain_shims.0.1.0 dune.3.16.0 fmt.0.9.0 host-arch-x86_64.1 host-system-other.1 logs.0.7.0 mdx.2.4.1 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.6.9 ocamlbuild.0.15.0 ocamlfind.1.9.6 picos.0.5.0 picos_aux.0.5.0 picos_io.0.5.0 picos_mux.0.5.0 picos_std.0.5.0 psq.0.2.1 qcheck-core.0.22 qcheck-multicoretests-util.0.4 qcheck-stm.0.4 re.1.12.0 result.1.5 seq.base stdlib-shims.0.3.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.0.7 uutf.1.0.3 yojson.2.2.2")
/src: (env CI true)
/src: (env OCAMLCI true)
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update --depexts && opam install --cli=2.2 --depext-only -y kcas_data.dev kcas.dev $DEPS"))
[WARNING] Unknown update command for bsd, skipping system update
<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[kcas_data.dev] synchronised (no changes)
[kcas.dev] synchronised (no changes)
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).
[NOTE] Package ocaml is already installed (current version is 4.14.2).
[NOTE] Package host-system-other is already installed (current version is 1).
[NOTE] Package host-arch-x86_64 is already installed (current version is 1).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
2024-10-18 17:25.13 ---> saved as "c352f00c604bd99e71a0084d84f185840fef5df0b9a5d8043d612b8719255256"
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).
[NOTE] Package ocaml is already installed (current version is 4.14.2).
[NOTE] Package host-system-other is already installed (current version is 1).
[NOTE] Package host-arch-x86_64 is already installed (current version is 1).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 38 packages
∗ alcotest 1.8.0
∗ astring 0.8.5
∗ backoff 0.1.1
∗ camlp-streams 5.0.1
∗ cmdliner 1.3.0
∗ cppo 1.7.0
∗ csexp 1.5.2
∗ domain-local-await 1.0.1
∗ domain_shims 0.1.0
∗ dune 3.16.0
∗ fmt 0.9.0
∗ logs 0.7.0
∗ mdx 2.4.1
∗ mtime 2.1.0
∗ multicore-bench 0.1.7
∗ multicore-magic 2.3.0
∗ ocaml-syntax-shims 1.0.0
∗ ocaml-version 3.6.9
∗ ocamlbuild 0.15.0
∗ ocamlfind 1.9.6
∗ picos 0.5.0
∗ picos_aux 0.5.0
∗ picos_io 0.5.0
∗ picos_mux 0.5.0
∗ picos_std 0.5.0
∗ psq 0.2.1
∗ qcheck-core 0.22
∗ qcheck-multicoretests-util 0.4
∗ qcheck-stm 0.4
∗ re 1.12.0
∗ result 1.5
∗ seq base
∗ stdlib-shims 0.3.0
∗ thread-local-storage 0.2
∗ thread-table 1.0.0
∗ topkg 1.0.7
∗ uutf 1.0.3
∗ yojson 2.2.2
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved astring.0.8.5 (cached)
⬇ retrieved backoff.0.1.1 (cached)
⬇ retrieved camlp-streams.5.0.1 (cached)
⬇ retrieved cppo.1.7.0 (cached)
⬇ retrieved cmdliner.1.3.0 (cached)
⬇ retrieved domain-local-await.1.0.1 (cached)
⬇ retrieved csexp.1.5.2 (cached)
⬇ retrieved domain_shims.0.1.0 (cached)
⬇ retrieved alcotest.1.8.0 (cached)
⬇ retrieved logs.0.7.0 (cached)
⬇ retrieved fmt.0.9.0 (cached)
⬇ retrieved mtime.2.1.0 (cached)
⬇ retrieved multicore-bench.0.1.7 (cached)
⬇ retrieved mdx.2.4.1 (cached)
⬇ retrieved multicore-magic.2.3.0 (cached)
⬇ retrieved ocaml-syntax-shims.1.0.0 (cached)
⬇ retrieved ocaml-version.3.6.9 (cached)
⬇ retrieved ocamlfind.1.9.6 (cached)
⬇ retrieved picos.0.5.0, picos_aux.0.5.0, picos_io.0.5.0, picos_mux.0.5.0, picos_std.0.5.0 (cached)
⬇ retrieved psq.0.2.1 (cached)
⬇ retrieved ocamlbuild.0.15.0 (cached)
⬇ retrieved qcheck-core.0.22 (cached)
⬇ retrieved qcheck-multicoretests-util.0.4, qcheck-stm.0.4 (cached)
⬇ retrieved result.1.5 (cached)
⬇ retrieved seq.base (cached)
∗ installed seq.base
⬇ retrieved stdlib-shims.0.3.0 (cached)
⬇ retrieved re.1.12.0 (cached)
⬇ retrieved thread-local-storage.0.2 (cached)
⬇ retrieved thread-table.1.0.0 (cached)
⬇ retrieved uutf.1.0.3 (cached)
⬇ retrieved topkg.1.0.7 (cached)
⬇ retrieved dune.3.16.0 (cached)
⬇ retrieved yojson.2.2.2 (cached)
∗ installed cmdliner.1.3.0
∗ installed ocamlfind.1.9.6
∗ installed ocamlbuild.0.15.0
∗ installed topkg.1.0.7
∗ installed uutf.1.0.3
∗ installed mtime.2.1.0
∗ installed fmt.0.9.0
∗ installed astring.0.8.5
∗ installed logs.0.7.0
∗ installed dune.3.16.0
∗ installed stdlib-shims.0.3.0
∗ installed csexp.1.5.2
∗ installed result.1.5
∗ installed ocaml-version.3.6.9
∗ installed camlp-streams.5.0.1
∗ installed thread-table.1.0.0
∗ installed domain_shims.0.1.0
∗ installed backoff.0.1.1
∗ installed psq.0.2.1
∗ installed multicore-magic.2.3.0
∗ installed thread-local-storage.0.2
∗ installed domain-local-await.1.0.1
∗ installed picos_aux.0.5.0
∗ installed cppo.1.7.0
∗ installed picos.0.5.0
∗ installed re.1.12.0
∗ installed yojson.2.2.2
∗ installed qcheck-core.0.22
∗ installed qcheck-multicoretests-util.0.4
∗ installed picos_std.0.5.0
∗ installed ocaml-syntax-shims.1.0.0
∗ installed multicore-bench.0.1.7
∗ installed qcheck-stm.0.4
∗ installed picos_io.0.5.0
∗ installed picos_mux.0.5.0
∗ installed mdx.2.4.1
∗ installed alcotest.1.8.0
Done.
2024-10-18 17:27.22 ---> saved as "192622e8cf4dd37854a0a64f5f7652c0094ec71b452300ad87c1e04dd98f9706"
/src: (copy (src .) (dst /src))
2024-10-18 17:27.23 ---> saved as "4b187c237383e5d78c22c65871817ec304654dedf16f18ddcc15a953a0f49fa1"
/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
(cd _build/default/test/kcas_data && ./lru_cache_example.exe)
LRU Cache OK!
(cd _build/default/test/kcas_data && ./queue_test.exe)
Testing `Queue'.
This run has ID `DWI9RLQ4'.
[OK] basics 0
Full test results in `/src/_build/default/test/kcas_data/_build/_tests/Queue'.
Test Successful in 0.000s. 1 test run.
(cd _build/default/test/kcas_data && ./xt_test.exe)
Testing `Transactions'.
This run has ID `WNFJC5AQ'.
[OK] basics 0
Full test results in `/src/_build/default/test/kcas_data/_build/_tests/Transactions'.
Test Successful in 0.000s. 1 test run.
(cd _build/default/test/kcas_data && ./mvar_test.exe)
Testing `Mvar'.
This run has ID `AY4VKEK9'.
[OK] basics 0
Full test results in `/src/_build/default/test/kcas_data/_build/_tests/Mvar'.
Test Successful in 0.003s. 1 test run.
(cd _build/default/test/kcas_data && ./stack_test.exe)
Testing `Stack'.
This run has ID `V97ZWFWI'.
[OK] basics 0
Full test results in `/src/_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 `84530JX4'.
[OK] basics 0
[OK] add 0
[OK] move 0
Full test results in `/src/_build/default/test/kcas_data/_build/_tests/Dllist'.
Test Successful in 0.001s. 3 tests run.
(cd _build/default/test/kcas && ./loc_modes.exe)
Loc modes OK!
(cd _build/default/test/kcas_data && ./hashtbl_test.exe)
Testing `Hashtbl'.
This run has ID `WDRQUKV7'.
[OK] replace and remove 0
[OK] large tx 0
[OK] large ops 0
[OK] basics 0
Full test results in `/src/_build/default/test/kcas_data/_build/_tests/Hashtbl'.
Test Successful in 0.008s. 4 tests run.
(cd _build/default/test/kcas && ./threads.exe)
Testing `Threads'.
This run has ID `CWD1I8JG'.
[OK] await between threads 0
Full test results in `/src/_build/default/test/kcas/_build/_tests/Threads'.
Test Successful in 0.002s. 1 test run.
(cd _build/default/test/kcas && ./ms_queue_test.exe)
Testing `MS queue'.
This run has ID `H92UKTR6'.
[OK] write skew 0
[OK] tail leak 0
Full test results in `/src/_build/default/test/kcas/_build/_tests/MS queue'.
Test Successful in 11.551s. 2 tests run.
(cd _build/default/test/kcas && ./test.exe)
Testing `Kcas'.
This run has ID `EDNP6O4E'.
[OK] non linearizable xt 0
[OK] set 0
[OK] no skew xt 0
[OK] get seq xt 0
[OK] stress xt 0
[OK] is_in_log 0
[OK] updates 0
[OK] post commit 0
[OK] blocking 0
[OK] no unnecessary wakeups 0
[OK] pediodic validation 0
[OK] explicit validation 0
[OK] rollback 0
[OK] call 0
[OK] mode 0
[OK] xt 0
[OK] timeout (non-deterministic) 0
Full test results in `/src/_build/default/test/kcas/_build/_tests/Kcas'.
Test Successful in 64.428s. 17 tests run.
(cd _build/default/bench && ./main.exe -brief)
Kcas Loc:
ops over time/cas int:
31.72 M/s
ops over time/get:
149.98 M/s
ops over time/incr:
27.71 M/s
ops over time/push & pop:
26.39 M/s
ops over time/swap:
22.55 M/s
ops over time/xchg int:
31.72 M/s
time per op/cas int:
31.53 ns
time per op/get:
6.67 ns
time per op/incr:
36.09 ns
time per op/push & pop:
37.89 ns
time per op/swap:
44.34 ns
time per op/xchg int:
31.53 ns
Kcas Xt:
time per transaction/0 loc tx:
25.50 ns
time per transaction/1 loc tx:
91.94 ns
time per transaction/2 loc tx:
196.59 ns
time per transaction/4 loc tx:
371.42 ns
time per transaction/8 loc tx:
778.69 ns
transactions over time/0 loc tx:
39.21 M/s
transactions over time/1 loc tx:
10.88 M/s
transactions over time/2 loc tx:
5.09 M/s
transactions over time/4 loc tx:
2.69 M/s
transactions over time/8 loc tx:
1.28 M/s
Kcas Xt read-only:
time per transaction/0 loc tx:
24.66 ns
time per transaction/1 loc tx:
64.85 ns
time per transaction/2 loc tx:
125.57 ns
time per transaction/4 loc tx:
212.05 ns
time per transaction/8 loc tx:
389.36 ns
transactions over time/0 loc tx:
40.55 M/s
transactions over time/1 loc tx:
15.42 M/s
transactions over time/2 loc tx:
7.96 M/s
transactions over time/4 loc tx:
4.72 M/s
transactions over time/8 loc tx:
2.57 M/s
Kcas parallel CMP:
time per transaction/1 worker:
232.78 ns
time per transaction/2 workers:
1262.58 ns
time per transaction/4 workers:
1469.96 ns
transactions over time/1 worker:
4.30 M/s
transactions over time/2 workers:
1.58 M/s
transactions over time/4 workers:
2.72 M/s
Kcas_data Accumulator:
operations over time/1 worker, 0% reads:
35.21 M/s
operations over time/2 workers, 0% reads:
23.14 M/s
operations over time/4 workers, 0% reads:
11.93 M/s
time per operation/1 worker, 0% reads:
28.40 ns
time per operation/2 workers, 0% reads:
86.44 ns
time per operation/4 workers, 0% reads:
335.27 ns
Kcas_data Dllist:
messages over time/1 nb adder, 1 nb taker:
1.24 M/s
messages over time/1 nb adder, 2 nb takers:
0.56 M/s
messages over time/2 nb adders, 1 nb taker:
0.51 M/s
messages over time/2 nb adders, 2 nb takers:
0.63 M/s
messages over time/one domain:
1.03 M/s
time per message/1 nb adder, 1 nb taker:
1608.44 ns
time per message/1 nb adder, 2 nb takers:
5394.60 ns
time per message/2 nb adders, 1 nb taker:
5891.86 ns
time per message/2 nb adders, 2 nb takers:
6302.43 ns
time per message/one domain:
974.43 ns
Kcas_data Hashtbl:
operations over time/1 worker, 10% reads:
2.76 M/s
operations over time/1 worker, 50% reads:
2.95 M/s
operations over time/1 worker, 90% reads:
5.87 M/s
operations over time/2 workers, 10% reads:
1.63 M/s
operations over time/2 workers, 50% reads:
0.90 M/s
operations over time/2 workers, 90% reads:
3.06 M/s
operations over time/4 workers, 10% reads:
0.38 M/s
operations over time/4 workers, 50% reads:
1.10 M/s
operations over time/4 workers, 90% reads:
1.48 M/s
time per operation/1 worker, 10% reads:
362.30 ns
time per operation/1 worker, 50% reads:
339.27 ns
time per operation/1 worker, 90% reads:
170.21 ns
time per operation/2 workers, 10% reads:
1224.45 ns
time per operation/2 workers, 50% reads:
2226.24 ns
time per operation/2 workers, 90% reads:
652.81 ns
time per operation/4 workers, 10% reads:
10501.04 ns
time per operation/4 workers, 50% reads:
3627.88 ns
time per operation/4 workers, 90% reads:
2698.93 ns
Kcas_data Mvar:
messages over time/1 adder, 1 nb taker:
0.00 M/s
messages over time/1 adder, 1 taker:
0.00 M/s
messages over time/1 adder, 2 nb takers:
0.00 M/s
messages over time/1 adder, 2 takers:
0.00 M/s
messages over time/1 nb adder, 1 nb taker:
0.00 M/s
messages over time/1 nb adder, 1 taker:
0.00 M/s
messages over time/1 nb adder, 2 nb takers:
0.00 M/s
messages over time/1 nb adder, 2 takers:
0.00 M/s
messages over time/2 adders, 1 nb taker:
0.00 M/s
messages over time/2 adders, 1 taker:
0.00 M/s
messages over time/2 adders, 2 nb takers:
0.00 M/s
messages over time/2 adders, 2 takers:
0.00 M/s
messages over time/2 nb adders, 1 nb taker:
0.00 M/s
messages over time/2 nb adders, 1 taker:
0.00 M/s
messages over time/2 nb adders, 2 nb takers:
0.00 M/s
messages over time/2 nb adders, 2 takers:
0.00 M/s
time per message/1 adder, 1 nb taker:
2034689.36 ns
time per message/1 adder, 1 taker:
1303173.48 ns
time per message/1 adder, 2 nb takers:
2241777.22 ns
time per message/1 adder, 2 takers:
2930998.05 ns
time per message/1 nb adder, 1 nb taker:
1170438.28 ns
time per message/1 nb adder, 1 taker:
2288238.32 ns
time per message/1 nb adder, 2 nb takers:
2394871.66 ns
time per message/1 nb adder, 2 takers:
2424809.06 ns
time per message/2 adders, 1 nb taker:
3856519.46 ns
time per message/2 adders, 1 taker:
2908931.88 ns
time per message/2 adders, 2 nb takers:
1974354.08 ns
time per message/2 adders, 2 takers:
2316467.12 ns
time per message/2 nb adders, 1 nb taker:
1255969.93 ns
time per message/2 nb adders, 1 taker:
2195688.83 ns
time per message/2 nb adders, 2 nb takers:
2933043.46 ns
time per message/2 nb adders, 2 takers:
1268886.86 ns
Kcas_data Queue:
messages over time/1 nb adder, 1 nb taker:
1.82 M/s
messages over time/1 nb adder, 1 taker:
7.52 M/s
messages over time/1 nb adder, 2 nb takers:
0.91 M/s
messages over time/1 nb adder, 2 takers:
0.84 M/s
messages over time/2 nb adders, 1 nb taker:
1.55 M/s
messages over time/2 nb adders, 1 taker:
2.65 M/s
messages over time/2 nb adders, 2 nb takers:
8.32 M/s
messages over time/2 nb adders, 2 takers:
5.55 M/s
messages over time/one domain:
5.12 M/s
time per message/1 nb adder, 1 nb taker:
1099.03 ns
time per message/1 nb adder, 1 taker:
266.13 ns
time per message/1 nb adder, 2 nb takers:
3282.86 ns
time per message/1 nb adder, 2 takers:
3582.99 ns
time per message/2 nb adders, 1 nb taker:
1938.62 ns
time per message/2 nb adders, 1 taker:
1131.68 ns
time per message/2 nb adders, 2 nb takers:
480.69 ns
time per message/2 nb adders, 2 takers:
720.44 ns
time per message/one domain:
195.33 ns
Kcas_data Stack:
messages over time/1 nb adder, 1 nb taker:
12.64 M/s
messages over time/1 nb adder, 1 taker:
11.82 M/s
messages over time/1 nb adder, 2 nb takers:
9.50 M/s
messages over time/1 nb adder, 2 takers:
0.68 M/s
messages over time/2 nb adders, 1 nb taker:
12.48 M/s
messages over time/2 nb adders, 1 taker:
0.31 M/s
messages over time/2 nb adders, 2 nb takers:
0.61 M/s
messages over time/2 nb adders, 2 takers:
7.47 M/s
messages over time/one domain:
8.49 M/s
time per message/1 nb adder, 1 nb taker:
158.25 ns
time per message/1 nb adder, 1 taker:
169.22 ns
time per message/1 nb adder, 2 nb takers:
315.93 ns
time per message/1 nb adder, 2 takers:
4421.63 ns
time per message/2 nb adders, 1 nb taker:
240.46 ns
time per message/2 nb adders, 1 taker:
9691.79 ns
time per message/2 nb adders, 2 nb takers:
6559.44 ns
time per message/2 nb adders, 2 takers:
535.32 ns
time per message/one domain:
117.77 ns
(cd _build/default/test/kcas_data && ./accumulator_test_stm.exe)
random seed: 334424858307233973
generated error fail pass / total time test name
[✓] 32 0 0 32 / 32 0.0s Accumulator sequential
[✓] 32 0 0 32 / 32 42.9s Accumulator concurrent
================================================================================
success (ran 2 tests)
random seed: 2021272071470990947
generated error fail pass / total time test name
[✓] 32 0 0 32 / 32 0.0s Accumulator sequential
[✓] 32 0 0 32 / 32 35.8s Accumulator concurrent
================================================================================
success (ran 2 tests)
(cd _build/default/test/kcas_data && ./queue_test_stm.exe)
random seed: 307264632937991315
generated error fail pass / total time test name
[✓] 32 0 0 32 / 32 0.0s Queue sequential
[✓] 32 0 0 32 / 32 44.9s Queue concurrent
================================================================================
success (ran 2 tests)
random seed: 4550561573047407507
generated error fail pass / total time test name
[✓] 32 0 0 32 / 32 0.0s Queue sequential
[✓] 32 0 0 32 / 32 38.9s Queue concurrent
================================================================================
success (ran 2 tests)
(cd _build/default/test/kcas_data && ./stack_test_stm.exe)
random seed: 3668415833607962316
generated error fail pass / total time test name
[✓] 32 0 0 32 / 32 0.0s Stack sequential
[✓] 32 0 0 32 / 32 43.8s Stack concurrent
================================================================================
success (ran 2 tests)
random seed: 2884248244632398394
generated error fail pass / total time test name
[✓] 32 0 0 32 / 32 0.0s Stack sequential
[✓] 32 0 0 32 / 32 41.7s Stack concurrent
================================================================================
success (ran 2 tests)
(cd _build/default/test/kcas_data && ./hashtbl_test_stm.exe)
random seed: 4340831289697473209
generated error fail pass / total time test name
[✓] 32 0 0 32 / 32 0.0s Hashtbl sequential
[✓] 32 0 0 32 / 32 46.7s Hashtbl concurrent
================================================================================
success (ran 2 tests)
random seed: 285668384887945263
generated error fail pass / total time test name
[✓] 32 0 0 32 / 32 0.0s Hashtbl sequential
[✓] 32 0 0 32 / 32 42.9s Hashtbl concurrent
================================================================================
success (ran 2 tests)
(cd _build/default/test/kcas_data && ./dllist_test_stm.exe)
random seed: 4199739735105330275
generated error fail pass / total time test name
[✓] 32 0 0 32 / 32 0.0s Dllist sequential
[✓] 32 0 0 32 / 32 48.0s Dllist concurrent
================================================================================
success (ran 2 tests)
random seed: 2176592216425906783
generated error fail pass / total time test name
[✓] 32 0 0 32 / 32 0.0s Dllist sequential
[✓] 32 0 0 32 / 32 48.8s Dllist concurrent
================================================================================
success (ran 2 tests)
(cd _build/default/test/kcas_data && ./linearizable_chaining_example.exe)
random seed: 4034795962858861769
generated error fail pass / total time test name
[✓] 32 0 0 32 / 32 0.0s Hashtbl_with_order sequential
[✓] 32 0 0 32 / 32 51.0s Hashtbl_with_order concurrent
================================================================================
success (ran 2 tests)
random seed: 198686136037782958
generated error fail pass / total time test name
[✓] 32 0 0 32 / 32 0.0s Hashtbl_with_order sequential
[✓] 32 0 0 32 / 32 46.6s Hashtbl_with_order concurrent
================================================================================
success (ran 2 tests)
2024-10-18 17:29.08 ---> saved as "aa90abae62d937e6ca83bf2207788bcf1c51d8452f621f578d288b6a728f05b1"
Job succeeded
2024-10-18 17:39.03: Job succeeded