use crate;
// CPU reference kernel for `string_similarity.ngram_extract`.
/// Extract all overlapping byte n-grams.
///
/// # Errors
///
/// Returns `Fix: ...` when input or `n` exceeds the documented cap, or when
/// `n == 0`.
// Backend-specific lowering marker.
// WGSL lowering source for `string_similarity.ngram_extract`.
/// Fixed-width n-gram extraction kernel used by GPU parity tests and intrinsic dispatch.
pub const WGSL: &str = concat!;