add benchmarks to example
This commit is contained in:
parent
14915d8f31
commit
a3b47f3e47
|
@ -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 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!("{}", challenge.solve_singlethread());
|
||||
println!("Solvling {} took {} seconds", challenge.solve_singlethread(), time.elapsed().as_secs_f32());
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue