1 2 3 4 5 6 7 8 9 10 11 12
//! Implementation of several custom operations.
//! A custom operation can be thought of as a polymorphic function, i.e., where the number of inputs and their types can vary.
pub mod adder;
pub mod clip;
pub mod comparisons;
pub mod inverse_sqrt;
pub mod min_max;
pub mod multiplexer;
pub mod newton_inversion;
#[doc(hidden)]
pub mod utils;