vyre 0.4.0

GPU compute intermediate representation with a standard operation library
Documentation
1
2
3
4
5
6
7
8
//! WGSL lowering source for `stats.byte_histogram`.

/// Dispatchable WGSL kernel for byte histogram over packed byte input.
pub const WGSL: &str = concat!(
    include_str!("../wgsl_byte_primitives/bytes.wgsl"),
    "\n",
    include_str!("implementation/kernel.wgsl"),
);