100 lines
2.8 KiB
Rust
100 lines
2.8 KiB
Rust
use codspeed_criterion_compat::{black_box, criterion_group, criterion_main, Bencher, Criterion};
|
|
|
|
use pyo3::{
|
|
prelude::*,
|
|
types::{PyFloat, PyList, PyString},
|
|
};
|
|
|
|
#[derive(FromPyObject)]
|
|
enum ManyTypes {
|
|
Int(i32),
|
|
Bytes(Vec<u8>),
|
|
String(String),
|
|
}
|
|
|
|
fn enum_from_pyobject(b: &mut Bencher<'_>) {
|
|
Python::with_gil(|py| {
|
|
let any: &Bound<'_, PyAny> = &PyString::new_bound(py, "hello world");
|
|
|
|
b.iter(|| any.extract::<ManyTypes>().unwrap());
|
|
})
|
|
}
|
|
|
|
#[cfg(not(codspeed))]
|
|
fn list_via_downcast(b: &mut Bencher<'_>) {
|
|
Python::with_gil(|py| {
|
|
let any: &Bound<'_, PyAny> = &PyList::empty_bound(py);
|
|
|
|
b.iter(|| black_box(any).downcast::<PyList>().unwrap());
|
|
})
|
|
}
|
|
|
|
#[cfg(not(codspeed))]
|
|
fn list_via_extract(b: &mut Bencher<'_>) {
|
|
Python::with_gil(|py| {
|
|
let any: &Bound<'_, PyAny> = &PyList::empty_bound(py);
|
|
|
|
b.iter(|| black_box(any).extract::<Bound<'_, PyList>>().unwrap());
|
|
})
|
|
}
|
|
|
|
#[cfg(not(codspeed))]
|
|
fn not_a_list_via_downcast(b: &mut Bencher<'_>) {
|
|
Python::with_gil(|py| {
|
|
let any: &Bound<'_, PyAny> = &PyString::new_bound(py, "foobar");
|
|
|
|
b.iter(|| black_box(any).downcast::<PyList>().unwrap_err());
|
|
})
|
|
}
|
|
|
|
fn not_a_list_via_extract(b: &mut Bencher<'_>) {
|
|
Python::with_gil(|py| {
|
|
let any: &Bound<'_, PyAny> = &PyString::new_bound(py, "foobar");
|
|
|
|
b.iter(|| black_box(any).extract::<Bound<'_, PyList>>().unwrap_err());
|
|
})
|
|
}
|
|
|
|
#[derive(FromPyObject)]
|
|
enum ListOrNotList<'a> {
|
|
List(Bound<'a, PyList>),
|
|
NotList(Bound<'a, PyAny>),
|
|
}
|
|
|
|
fn not_a_list_via_extract_enum(b: &mut Bencher<'_>) {
|
|
Python::with_gil(|py| {
|
|
let any: &Bound<'_, PyAny> = &PyString::new_bound(py, "foobar");
|
|
|
|
b.iter(|| match black_box(any).extract::<ListOrNotList<'_>>() {
|
|
Ok(ListOrNotList::List(_list)) => panic!(),
|
|
Ok(ListOrNotList::NotList(any)) => any,
|
|
Err(_) => panic!(),
|
|
});
|
|
})
|
|
}
|
|
|
|
#[cfg(not(codspeed))]
|
|
fn f64_from_pyobject(b: &mut Bencher<'_>) {
|
|
Python::with_gil(|py| {
|
|
let obj = &PyFloat::new_bound(py, 1.234);
|
|
b.iter(|| black_box(obj).extract::<f64>().unwrap());
|
|
})
|
|
}
|
|
|
|
fn criterion_benchmark(c: &mut Criterion) {
|
|
c.bench_function("enum_from_pyobject", enum_from_pyobject);
|
|
#[cfg(not(codspeed))]
|
|
c.bench_function("list_via_downcast", list_via_downcast);
|
|
#[cfg(not(codspeed))]
|
|
c.bench_function("list_via_extract", list_via_extract);
|
|
#[cfg(not(codspeed))]
|
|
c.bench_function("not_a_list_via_downcast", not_a_list_via_downcast);
|
|
c.bench_function("not_a_list_via_extract", not_a_list_via_extract);
|
|
c.bench_function("not_a_list_via_extract_enum", not_a_list_via_extract_enum);
|
|
#[cfg(not(codspeed))]
|
|
c.bench_function("f64_from_pyobject", f64_from_pyobject);
|
|
}
|
|
|
|
criterion_group!(benches, criterion_benchmark);
|
|
criterion_main!(benches);
|