ordofp_core 0.1.0

OrdoFP core provides developers with HList, Disiunctio, NominataUniversalis, Universalis, and functional type classes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Optimization passes for `ParFlumen`.
//!
//! > *"Optimus"*
//! > — Best. (Latin)
//!
//! This module provides optimization passes for `ParFlumen` pipelines:
//!
//! - Layout transforms (AoS/SoA, chunking)
//! - Buffer reuse and pooling
//!
//! Adapted third-party patterns are inventoried in `ORIGINAL_SOURCE.md` in
//! this directory and the repo-root `THIRD_PARTY_NOTICES.md`.

#![cfg(all(feature = "par", feature = "gpu-wgpu"))]

#[cfg(feature = "gpu-buffer-pool")]
pub mod buffer_pool;