You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
580 B
32 lines
580 B
7 months ago
|
#![feature(test)]
|
||
|
|
||
|
extern crate test;
|
||
|
|
||
|
use crossbeam_epoch as epoch;
|
||
|
use crossbeam_utils::thread::scope;
|
||
|
use test::Bencher;
|
||
|
|
||
|
#[bench]
|
||
|
fn single_pin(b: &mut Bencher) {
|
||
|
b.iter(|| epoch::pin());
|
||
|
}
|
||
|
|
||
|
#[bench]
|
||
|
fn multi_pin(b: &mut Bencher) {
|
||
|
const THREADS: usize = 16;
|
||
|
const STEPS: usize = 100_000;
|
||
|
|
||
|
b.iter(|| {
|
||
|
scope(|s| {
|
||
|
for _ in 0..THREADS {
|
||
|
s.spawn(|_| {
|
||
|
for _ in 0..STEPS {
|
||
|
epoch::pin();
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
})
|
||
|
.unwrap();
|
||
|
});
|
||
|
}
|