mirror of
https://github.com/logos-storage/zk-benchmarks.git
synced 2026-01-02 22:03:10 +00:00
15 lines
304 B
Bash
Executable File
15 lines
304 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -z ${ZKBENCH_NTHREADS} ]; then
|
|
ZKBENCH_NTHREADS=1
|
|
fi
|
|
|
|
if [ -z ${ZKBENCH_MEGABYTES} ]; then
|
|
ZKBENCH_MEGABYTES=256
|
|
fi
|
|
|
|
echo "NTHREADS = $ZKBENCH_NTHREADS"
|
|
echo "MEGABYTES = $ZKBENCH_MEGABYTES"
|
|
|
|
./build/fakedata $ZKBENCH_MEGABYTES | ./build/b3sum --num-threads $ZKBENCH_NTHREADS -
|