use std::vec; use criterion::{criterion_group, criterion_main, Criterion, black_box}; use biscuit_converter::Biscuit; use atoi::atoi; fn bench_u64(c: &mut Criterion) { let test_vec = vec![ "1", "12", "123", "1234", "12345", "123456", "1234567", "12345678", "123456789", "1234567890", "12345678901", "123456789012", "1234567890123", "12345678901234", "123456789012345", "1234567890123456", "12345678901234567", "123456789012345678", "1234567890123456789", ]; for test in test_vec { let mut group = c.benchmark_group(format!("u64 {}", test)); let input_bytes = test.as_bytes(); group.bench_function("biscuit", |b| b.iter(|| u64::parse_decimal(black_box(input_bytes)).expect("to_u64 failed"))); group.bench_function("std", |b| b.iter(|| black_box(test).parse::().unwrap())); group.bench_function("atoi", |b| b.iter(|| atoi::(black_box(input_bytes)).unwrap())); group.finish(); } } criterion_group!( benches, bench_u64, ); criterion_main!(benches);