pub unsafe fn launch_unchecked(
__client: &Client,
__cube_count: CubeCount,
__cube_dim: CubeDim,
_n: usize,
output: RuntimeArg<[Vector<I, N>]>,
window: RuntimeArg<usize>,
n_iter: RuntimeArg<usize>,
blocked: bool,
_dtype: ElemType,
)Expand description
Launch the kernel memory_write_throughput() on the given runtime without bound checks.
ยงSafety
The kernel must not:
- Contain any out of bounds reads or writes. Doing so is immediate UB.
- Contain any loops that never terminate. These may be optimized away entirely or cause other unpredictable behaviour.