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
//! Minimal release-surface example for the portable WGPU backend.

fn main() {
    println!(
        "WGPU backend type: {}",
        std::any::type_name::<vyre_driver_wgpu::WgpuBackend>()
    );
    println!("Acquire with vyre_driver_wgpu::WgpuBackend::acquire() when validating the portable GPU backend.");
}