2021-05-26 06:25:00 +00:00
|
|
|
use criterion::{criterion_group, criterion_main, Bencher, Criterion};
|
2019-02-01 13:01:18 +00:00
|
|
|
|
|
|
|
use pyo3::prelude::*;
|
|
|
|
use pyo3::types::IntoPyDict;
|
2020-11-26 09:58:14 +00:00
|
|
|
use std::collections::{BTreeMap, HashMap};
|
2018-11-14 06:40:08 +00:00
|
|
|
|
|
|
|
fn iter_dict(b: &mut Bencher) {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
2019-08-17 12:10:35 +00:00
|
|
|
const LEN: usize = 100_000;
|
2018-11-14 06:40:08 +00:00
|
|
|
let dict = (0..LEN as u64).map(|i| (i, i * 2)).into_py_dict(py);
|
|
|
|
let mut sum = 0;
|
|
|
|
b.iter(|| {
|
|
|
|
for (k, _v) in dict.iter() {
|
|
|
|
let i: u64 = k.extract().unwrap();
|
|
|
|
sum += i;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2020-05-02 22:17:21 +00:00
|
|
|
|
|
|
|
fn dict_get_item(b: &mut Bencher) {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
const LEN: usize = 50_000;
|
|
|
|
let dict = (0..LEN as u64).map(|i| (i, i * 2)).into_py_dict(py);
|
|
|
|
let mut sum = 0;
|
|
|
|
b.iter(|| {
|
|
|
|
for i in 0..LEN {
|
|
|
|
sum += dict.get_item(i).unwrap().extract::<usize>().unwrap();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2020-11-26 09:58:14 +00:00
|
|
|
|
|
|
|
fn extract_hashmap(b: &mut Bencher) {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
const LEN: usize = 100_000;
|
|
|
|
let dict = (0..LEN as u64).map(|i| (i, i * 2)).into_py_dict(py);
|
|
|
|
b.iter(|| HashMap::<u64, u64>::extract(dict));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn extract_btreemap(b: &mut Bencher) {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
const LEN: usize = 100_000;
|
|
|
|
let dict = (0..LEN as u64).map(|i| (i, i * 2)).into_py_dict(py);
|
|
|
|
b.iter(|| BTreeMap::<u64, u64>::extract(dict));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "hashbrown")]
|
|
|
|
fn extract_hashbrown_map(b: &mut Bencher) {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
const LEN: usize = 100_000;
|
|
|
|
let dict = (0..LEN as u64).map(|i| (i, i * 2)).into_py_dict(py);
|
|
|
|
b.iter(|| hashbrown::HashMap::<u64, u64>::extract(dict));
|
|
|
|
}
|
2021-05-26 06:25:00 +00:00
|
|
|
|
|
|
|
fn criterion_benchmark(c: &mut Criterion) {
|
|
|
|
c.bench_function("iter_dict", iter_dict);
|
|
|
|
c.bench_function("dict_get_item", dict_get_item);
|
|
|
|
c.bench_function("extract_hashmap", extract_hashmap);
|
|
|
|
c.bench_function("extract_btreemap", extract_btreemap);
|
|
|
|
|
|
|
|
#[cfg(feature = "hashbrown")]
|
|
|
|
c.bench_function("extract_hashbrown_map", extract_hashbrown_map);
|
|
|
|
}
|
|
|
|
|
|
|
|
criterion_group!(benches, criterion_benchmark);
|
|
|
|
criterion_main!(benches);
|