mirror of
https://github.com/logos-storage/zk-benchmarks.git
synced 2026-01-05 23:33:07 +00:00
14 lines
273 B
Bash
Executable File
14 lines
273 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -z ${ZKBENCH_NTHREADS} ]; then
|
|
ZKBENCH_NTHREADS=1
|
|
fi
|
|
|
|
if [ -z ${ZKBENCH_TREE_DEPTH} ]; then
|
|
ZKBENCH_TREE_DEPTH=16
|
|
fi
|
|
|
|
echo "NTHREADS = $ZKBENCH_NTHREADS"
|
|
echo "TREE_DEPTH = $ZKBENCH_TREE_DEPTH"
|
|
|
|
./build/a.out $ZKBENCH_TREE_DEPTH $ZKBENCH_NTHREADS |