forked from ocaml-bench/sandmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_all_parallel.sh
29 lines (25 loc) · 1.36 KB
/
run_all_parallel.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash
# If using RUN_BENCH_TARGET=run_orunchrt the parallel benchmarks
# use `chrt -r 1`. You may need to setup permissions to allow the
# user to execute `chrt`. For example, this could be done with:
# sudo setcap cap_sys_nice=ep /usr/bin/chrt
#
make multicore_parallel_run_config_macro.json
RUN_BENCH_TARGET=run_pausetimes_multicore BUILD_BENCH_TARGET=multibench_parallel \
RUN_CONFIG_JSON=multicore_parallel_run_config_macro.json \
make ocaml-versions/4.06.1+multicore+pausetimes+parallel.bench
RUN_BENCH_TARGET=run_pausetimes_multicore BUILD_BENCH_TARGET=multibench_parallel \
RUN_CONFIG_JSON=multicore_parallel_run_config_macro.json \
make ocaml-versions/4.06.1+multicore+stw+pausetimes+parallel.bench
RUN_BENCH_TARGET=run_pausetimes_multicore BUILD_BENCH_TARGET=multibench_parallel \
RUN_CONFIG_JSON=multicore_parallel_run_config_macro.json \
make ocaml-versions/4.10.0+multicore+pausetimes+parallel.bench
BUILD_BENCH_TARGET=multibench_parallel \
RUN_CONFIG_JSON=multicore_parallel_run_config_macro.json \
make ocaml-versions/4.06.1+multicore+parallel.bench
BUILD_BENCH_TARGET=multibench_parallel \
RUN_CONFIG_JSON=multicore_parallel_run_config_macro.json \
make ocaml-versions/4.06.1+multicore+stw+parallel.bench
BUILD_BENCH_TARGET=multibench_parallel \
RUN_CONFIG_JSON=multicore_parallel_run_config_macro.json \
make ocaml-versions/4.10.0+multicore+parallel.bench