1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//! 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 auc;
mod broadcast_test;
pub mod clip;
pub mod comparisons;
pub mod fixed_precision;
pub mod goldschmidt_division;
pub mod integer_key_sort;
pub mod inverse_sqrt;
pub mod long_division;
pub mod min_max;
pub mod multiplexer;
pub mod newton_inversion;
pub mod pwl;
pub mod taylor_exponent;
#[doc(hidden)]
pub mod utils;