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.glob_match`.

use super::*;
/// Anchored `*` and `?` glob matcher used by GPU parity tests and intrinsic dispatch.
pub const WGSL: &str = concat!(
    include_str!("../../../wgsl/common_params.wgsl"),
    "\n",
    include_str!("../glob_match.wgsl"),
);