vyre 0.4.0

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

use super::*;
/// Parallel all-substring scanner used by GPU parity tests and intrinsic dispatch.
pub const WGSL: &str = concat!(
    include_str!("../../../wgsl/common_params.wgsl"),
    "\n",
    include_str!("../substring_find_all.wgsl"),
);