71 lines
2.3 KiB
Rust
71 lines
2.3 KiB
Rust
use std::hint::black_box;
|
|
|
|
use codspeed_criterion_compat::{criterion_group, criterion_main, Bencher, Criterion};
|
|
use num_bigint::BigInt;
|
|
|
|
use pyo3::prelude::*;
|
|
use pyo3::types::PyDict;
|
|
|
|
fn extract_bigint_extract_fail(bench: &mut Bencher<'_>) {
|
|
Python::with_gil(|py| {
|
|
let d = PyDict::new_bound(py).into_any();
|
|
|
|
bench.iter(|| match black_box(&d).extract::<BigInt>() {
|
|
Ok(v) => panic!("should err {}", v),
|
|
Err(e) => e,
|
|
});
|
|
});
|
|
}
|
|
|
|
fn extract_bigint_small(bench: &mut Bencher<'_>) {
|
|
Python::with_gil(|py| {
|
|
let int = py.eval_bound("-42", None, None).unwrap();
|
|
|
|
bench.iter_with_large_drop(|| black_box(&int).extract::<BigInt>().unwrap());
|
|
});
|
|
}
|
|
|
|
fn extract_bigint_big_negative(bench: &mut Bencher<'_>) {
|
|
Python::with_gil(|py| {
|
|
let int = py.eval_bound("-10**300", None, None).unwrap();
|
|
|
|
bench.iter_with_large_drop(|| black_box(&int).extract::<BigInt>().unwrap());
|
|
});
|
|
}
|
|
|
|
fn extract_bigint_big_positive(bench: &mut Bencher<'_>) {
|
|
Python::with_gil(|py| {
|
|
let int = py.eval_bound("10**300", None, None).unwrap();
|
|
|
|
bench.iter_with_large_drop(|| black_box(&int).extract::<BigInt>().unwrap());
|
|
});
|
|
}
|
|
|
|
fn extract_bigint_huge_negative(bench: &mut Bencher<'_>) {
|
|
Python::with_gil(|py| {
|
|
let int = py.eval_bound("-10**3000", None, None).unwrap();
|
|
|
|
bench.iter_with_large_drop(|| black_box(&int).extract::<BigInt>().unwrap());
|
|
});
|
|
}
|
|
|
|
fn extract_bigint_huge_positive(bench: &mut Bencher<'_>) {
|
|
Python::with_gil(|py| {
|
|
let int = py.eval_bound("10**3000", None, None).unwrap();
|
|
|
|
bench.iter_with_large_drop(|| black_box(&int).extract::<BigInt>().unwrap());
|
|
});
|
|
}
|
|
|
|
fn criterion_benchmark(c: &mut Criterion) {
|
|
c.bench_function("extract_bigint_extract_fail", extract_bigint_extract_fail);
|
|
c.bench_function("extract_bigint_small", extract_bigint_small);
|
|
c.bench_function("extract_bigint_big_negative", extract_bigint_big_negative);
|
|
c.bench_function("extract_bigint_big_positive", extract_bigint_big_positive);
|
|
c.bench_function("extract_bigint_huge_negative", extract_bigint_huge_negative);
|
|
c.bench_function("extract_bigint_huge_positive", extract_bigint_huge_positive);
|
|
}
|
|
|
|
criterion_group!(benches, criterion_benchmark);
|
|
criterion_main!(benches);
|