cubek-std 0.3.0-pre.1

CubeK: Standard Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use cubek_test_utils::CatalogEntry;

pub struct UnaryProblem {
    pub shape: Vec<usize>,
}

pub fn problems() -> Vec<CatalogEntry<UnaryProblem>> {
    vec![CatalogEntry::new(
        "3d_32x512x2048",
        "3D (32x512x2048)",
        UnaryProblem {
            shape: vec![32, 512, 2048],
        },
    )]
}