vyre-driver-wgpu 0.7.1

wgpu backend for vyre IR - implements VyreBackend, owns GPU runtime, buffer pool, pipeline cache
Documentation
1
2
3
4
5
6
7
8
9
10
//! Workgroup-size naming contracts.

#[test]
fn default_workgroup_constant_is_explicitly_1d() {
    assert_eq!(
        vyre_driver::pipeline::DEFAULT_1D_WORKGROUP_SIZE,
        [64, 1, 1],
        "Fix: the shared driver default must be explicitly named as a 1D fallback, not a universal workgroup shape."
    );
}