Sha256: 88abd5c16275bb2f2d77eaecf369d97681404a77b8edd0021f24bfd377c46be3

Contents?: true

Size: 1.2 KB

Versions: 38

Compression:

Stored size: 1.2 KB

Contents

//! Test if the OnceCell properly synchronizes.
//! Needs to be run in release mode.
//!
//! We create a `Vec` with `N_ROUNDS` of `OnceCell`s. All threads will walk the `Vec`, and race to
//! be the first one to initialize a cell.
//! Every thread adds the results of the cells it sees to an accumulator, which is compared at the
//! end.
//! All threads should end up with the same result.

use once_cell::sync::OnceCell;

const N_THREADS: usize = 32;
const N_ROUNDS: usize = 1_000_000;

static CELLS: OnceCell<Vec<OnceCell<usize>>> = OnceCell::new();
static RESULT: OnceCell<usize> = OnceCell::new();

fn main() {
    let start = std::time::Instant::now();
    CELLS.get_or_init(|| vec![OnceCell::new(); N_ROUNDS]);
    let threads =
        (0..N_THREADS).map(|i| std::thread::spawn(move || thread_main(i))).collect::<Vec<_>>();
    for thread in threads {
        thread.join().unwrap();
    }
    println!("{:?}", start.elapsed());
    println!("No races detected");
}

fn thread_main(i: usize) {
    let cells = CELLS.get().unwrap();
    let mut accum = 0;
    for cell in cells.iter() {
        let &value = cell.get_or_init(|| i);
        accum += value;
    }
    assert_eq!(RESULT.get_or_init(|| accum), &accum);
}

Version data entries

38 entries across 38 versions & 1 rubygems

Version Path
wasmtime-29.0.0 ./ext/cargo-vendor/once_cell-1.20.2/examples/test_synchronization.rs
wasmtime-28.0.0 ./ext/cargo-vendor/once_cell-1.20.2/examples/test_synchronization.rs
wasmtime-27.0.0 ./ext/cargo-vendor/once_cell-1.20.2/examples/test_synchronization.rs
wasmtime-26.0.0 ./ext/cargo-vendor/once_cell-1.20.2/examples/test_synchronization.rs
wasmtime-25.0.2 ./ext/cargo-vendor/once_cell-1.19.0/examples/test_synchronization.rs
wasmtime-25.0.1 ./ext/cargo-vendor/once_cell-1.19.0/examples/test_synchronization.rs
wasmtime-25.0.0 ./ext/cargo-vendor/once_cell-1.19.0/examples/test_synchronization.rs
wasmtime-24.0.0 ./ext/cargo-vendor/once_cell-1.19.0/examples/test_synchronization.rs
wasmtime-23.0.2 ./ext/cargo-vendor/once_cell-1.19.0/examples/test_synchronization.rs
wasmtime-22.0.0 ./ext/cargo-vendor/once_cell-1.19.0/examples/test_synchronization.rs
wasmtime-21.0.1 ./ext/cargo-vendor/once_cell-1.19.0/examples/test_synchronization.rs
wasmtime-20.0.2 ./ext/cargo-vendor/once_cell-1.19.0/examples/test_synchronization.rs
wasmtime-20.0.0 ./ext/cargo-vendor/once_cell-1.19.0/examples/test_synchronization.rs
wasmtime-18.0.3 ./ext/cargo-vendor/once_cell-1.19.0/examples/test_synchronization.rs
wasmtime-17.0.1 ./ext/cargo-vendor/once_cell-1.19.0/examples/test_synchronization.rs
wasmtime-17.0.0 ./ext/cargo-vendor/once_cell-1.19.0/examples/test_synchronization.rs
wasmtime-16.0.0 ./ext/cargo-vendor/once_cell-1.19.0/examples/test_synchronization.rs
wasmtime-15.0.1 ./ext/cargo-vendor/once_cell-1.19.0/examples/test_synchronization.rs
wasmtime-15.0.0 ./ext/cargo-vendor/once_cell-1.19.0/examples/test_synchronization.rs
wasmtime-14.0.4 ./ext/cargo-vendor/once_cell-1.18.0/examples/test_synchronization.rs