add benchmarks to example

This commit is contained in:
b1ek 2023-08-02 20:21:49 +10:00
parent 14915d8f31
commit a3b47f3e47
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 14 additions and 3 deletions

View File

@ -1,7 +1,18 @@
use powlib::{self, gen::{POWRange, POWChallenge}};
use std::time::Instant;
use powlib::{self, gen::{POWRange, POWChallenge}, hash::hash_num, num::Num};
fn main() {
let challenge = POWChallenge::make(POWRange::new(0, 20480));
println!("{}", challenge.solve_singlethread());
{
let num = Num::new(473823);
let time = Instant::now();
hash_num(num);
println!("Simple hash of {} took {} millis", u128::from(num), time.elapsed().as_millis());
}
{
let time = Instant::now();
let challenge = POWChallenge::make(POWRange::new(0, 20480));
println!("Solvling {} took {} seconds", challenge.solve_singlethread(), time.elapsed().as_secs_f32());
}
}