vyre 0.4.0

GPU compute intermediate representation with a standard operation library
Documentation
1
2
3
4
5
6
7
8
9
10
//! Scan operations — parallel prefix sums and related streaming transforms.
//!
//! Scan ops are Category A compositions expressed as vyre IR programs.
//! The combining operator must be associative for deterministic parallel
//! decomposition.

automod::dir!(pub "src/ops/scan");

/// Inclusive prefix sum over a `U32` buffer.
pub use prefix_sum_inclusive::PrefixSumInclusiveU32;