oxifft-codegen-impl 0.3.0

Internal codelet generation logic for OxiFFT (not a proc-macro; used by oxifft-codegen and benchmarks)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Internal codelet generation logic for `OxiFFT`.
//!
//! This crate contains the codelet generation functions used by the
//! `oxifft-codegen` proc-macro crate. It is a regular library crate
//! (not `proc-macro = true`) so that its functions can be used from
//! benchmark binaries and integration tests.
//!
//! All public items in this crate are considered **semver-unstable** —
//! they may change at any time. External code should use the proc-macro
//! interface exposed by `oxifft-codegen` instead.

#![allow(clippy::cast_precision_loss)]

pub mod gen_notw;
pub mod gen_rdft;
pub mod gen_simd;
pub mod gen_twiddle;
pub mod symbolic;