ciphercore_base/ops.rs
1//! Implementation of several custom operations.
2//! A custom operation can be thought of as a polymorphic function, i.e., where the number of inputs and their types can vary.
3
4pub mod adder;
5pub mod auc;
6mod broadcast_test;
7pub mod clip;
8pub mod comparisons;
9pub mod fixed_precision;
10pub mod goldschmidt_division;
11pub mod integer_key_sort;
12pub mod inverse_sqrt;
13pub mod long_division;
14pub mod min_max;
15pub mod multiplexer;
16pub mod newton_inversion;
17pub mod pwl;
18pub mod taylor_exponent;
19#[doc(hidden)]
20pub mod utils;