pyo3/pyo3-benches/benches/bench_pyclass.rs

47 lines
1.2 KiB
Rust
Raw Normal View History

2023-08-29 06:26:36 +00:00
use codspeed_criterion_compat::{criterion_group, criterion_main, Bencher, Criterion};
use pyo3::{impl_::pyclass::LazyTypeObject, prelude::*};
/// This is a feature-rich class instance used to benchmark various parts of the pyclass lifecycle.
#[pyclass]
struct MyClass {
#[pyo3(get, set)]
elements: Vec<i32>,
}
#[pymethods]
impl MyClass {
#[new]
fn new(elements: Vec<i32>) -> Self {
Self { elements }
}
fn __call__(&mut self, new_element: i32) -> usize {
self.elements.push(new_element);
self.elements.len()
}
/// A basic __str__ implementation.
fn __str__(&self) -> &'static str {
"MyClass"
}
}
2023-08-29 06:26:36 +00:00
pub fn first_time_init(b: &mut Bencher<'_>) {
2022-07-19 17:34:23 +00:00
Python::with_gil(|py| {
b.iter(|| {
// This is using an undocumented internal PyO3 API to measure pyclass performance; please
// don't use this in your own code!
let ty = LazyTypeObject::<MyClass>::new();
ty.get_or_init(py);
2022-07-19 17:34:23 +00:00
});
});
}
2021-05-26 06:25:00 +00:00
fn criterion_benchmark(c: &mut Criterion) {
c.bench_function("first_time_init", first_time_init);
2021-05-26 06:25:00 +00:00
}
criterion_group!(benches, criterion_benchmark);
2021-12-09 00:03:50 +00:00
2021-05-26 06:25:00 +00:00
criterion_main!(benches);