Tried benchmarking locally using criterion crate but I get ``running 0 tests
test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s’’
Could the issue be my benchmark code? How do I resolve it?
Thanks.
Tried benchmarking locally using criterion crate but I get ``running 0 tests
test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s’’
Could the issue be my benchmark code? How do I resolve it?
Thanks.
Hello !
What are you trying to benchmark ? Can you provide your code or the command you used ?
You can easily reproduce our own benches::
#Boolean benchmarks:
make bench_boolean
#Integer benchmarks:
make bench_integer
#Shortint benchmarks:
make bench_shortint
(run this from TFHE-rs source dir)
Hello
Ensure your benchmark functions are properly are properly defined with Criterion . Benchmark should be in benches directory .
Thank you