1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
//! Module containing noise distribution primitives.
//!
//! When dealing with noise, we tend to use different representation for the same value. In
//! general, the noise is specified by the standard deviation of a gaussian distribution, which
//! is of the form $\sigma = 2^p$, with $p$ a negative integer. Depending on the use case though,
//! we rely on different representations for this quantity:
//!
//! + $\sigma$ can be encoded in the [`StandardDev`] type.
//! + $p$ can be encoded in the [`LogStandardDev`] type.
//! + $\sigma^2$ can be encoded in the [`Variance`] type.
//!
//! In any of those cases, the corresponding type implements the `DispersionParameter` trait,
//! which makes if possible to use any of those representations generically when noise must be
//! defined.
use serde::{Deserialize, Serialize};
/// A trait for types representing distribution parameters, for a given unsigned integer type.
// Warning:
// DispersionParameter type should ONLY wrap a single native type.
// As long as Variance wraps a native type (f64) it is ok to derive it from Copy instead of
// Clone because f64 is itself Copy and stored in register.
pub trait DispersionParameter: Copy {
/// Return the standard deviation of the distribution, i.e. $\sigma = 2^p$.
fn get_standard_dev(&self) -> f64;
/// Return the variance of the distribution, i.e. $\sigma^2 = 2^{2p}$.
fn get_variance(&self) -> f64;
/// Return base 2 logarithm of the standard deviation of the distribution, i.e.
/// $\log\_2(\sigma)=p$
fn get_log_standard_dev(&self) -> f64;
/// For a `Uint` type representing $\mathbb{Z}/2^q\mathbb{Z}$, we return $2^{q-p}$.
fn get_modular_standard_dev(&self, log2_modulus: u32) -> f64;
/// For a `Uint` type representing $\mathbb{Z}/2^q\mathbb{Z}$, we return $2^{2(q-p)}$.
fn get_modular_variance(&self, log2_modulus: u32) -> f64;
/// For a `Uint` type representing $\mathbb{Z}/2^q\mathbb{Z}$, we return $q-p$.
fn get_modular_log_standard_dev(&self, log2_modulus: u32) -> f64;
}
/// A distribution parameter that uses the base-2 logarithm of the standard deviation as
/// representation.
///
/// # Example:
///
/// ```rust
/// use tfhe::core_crypto::commons::dispersion::{DispersionParameter, LogStandardDev};
/// let params = LogStandardDev::from_log_standard_dev(-25.);
/// assert_eq!(params.get_standard_dev(), 2_f64.powf(-25.));
/// assert_eq!(params.get_log_standard_dev(), -25.);
/// assert_eq!(params.get_variance(), 2_f64.powf(-25.).powi(2));
/// assert_eq!(params.get_modular_standard_dev(32), 2_f64.powf(32. - 25.),);
/// assert_eq!(params.get_modular_log_standard_dev(32), 32. - 25.);
/// assert_eq!(
/// params.get_modular_variance(32),
/// 2_f64.powf(32. - 25.).powi(2)
/// );
///
/// let modular_params = LogStandardDev::from_modular_log_standard_dev(22., 32);
/// assert_eq!(modular_params.get_standard_dev(), 2_f64.powf(-10.));
/// ```
#[derive(Debug, Copy, Clone, PartialEq, PartialOrd)]
pub struct LogStandardDev(pub f64);
impl LogStandardDev {
pub fn from_log_standard_dev(log_std: f64) -> Self {
Self(log_std)
}
pub fn from_modular_log_standard_dev(log_std: f64, log2_modulus: u32) -> Self {
Self(log_std - log2_modulus as f64)
}
}
impl DispersionParameter for LogStandardDev {
fn get_standard_dev(&self) -> f64 {
f64::powf(2., self.0)
}
fn get_variance(&self) -> f64 {
f64::powf(2., self.0 * 2.)
}
fn get_log_standard_dev(&self) -> f64 {
self.0
}
fn get_modular_standard_dev(&self, log2_modulus: u32) -> f64 {
f64::powf(2., log2_modulus as f64 + self.0)
}
fn get_modular_variance(&self, log2_modulus: u32) -> f64 {
f64::powf(2., (log2_modulus as f64 + self.0) * 2.)
}
fn get_modular_log_standard_dev(&self, log2_modulus: u32) -> f64 {
log2_modulus as f64 + self.0
}
}
/// A distribution parameter that uses the standard deviation as representation.
///
/// # Example:
///
/// ```rust
/// use tfhe::core_crypto::commons::dispersion::{DispersionParameter, StandardDev};
/// let params = StandardDev::from_standard_dev(2_f64.powf(-25.));
/// assert_eq!(params.get_standard_dev(), 2_f64.powf(-25.));
/// assert_eq!(params.get_log_standard_dev(), -25.);
/// assert_eq!(params.get_variance(), 2_f64.powf(-25.).powi(2));
/// assert_eq!(params.get_modular_standard_dev(32), 2_f64.powf(32. - 25.));
/// assert_eq!(params.get_modular_log_standard_dev(32), 32. - 25.);
/// assert_eq!(
/// params.get_modular_variance(32),
/// 2_f64.powf(32. - 25.).powi(2)
/// );
/// ```
#[derive(Debug, Copy, Clone, PartialEq, PartialOrd, Serialize, Deserialize)]
pub struct StandardDev(pub f64);
impl StandardDev {
pub fn from_standard_dev(std: f64) -> Self {
Self(std)
}
pub fn from_modular_standard_dev(std: f64, log2_modulus: u32) -> Self {
Self(std / 2_f64.powf(log2_modulus as f64))
}
}
impl DispersionParameter for StandardDev {
fn get_standard_dev(&self) -> f64 {
self.0
}
fn get_variance(&self) -> f64 {
self.0.powi(2)
}
fn get_log_standard_dev(&self) -> f64 {
self.0.log2()
}
fn get_modular_standard_dev(&self, log2_modulus: u32) -> f64 {
2_f64.powf(log2_modulus as f64 + self.0.log2())
}
fn get_modular_variance(&self, log2_modulus: u32) -> f64 {
2_f64.powf(2. * (log2_modulus as f64 + self.0.log2()))
}
fn get_modular_log_standard_dev(&self, log2_modulus: u32) -> f64 {
log2_modulus as f64 + self.0.log2()
}
}
/// A distribution parameter that uses the variance as representation
///
/// # Example:
///
/// ```rust
/// use tfhe::core_crypto::commons::dispersion::{DispersionParameter, Variance};
/// let params = Variance::from_variance(2_f64.powi(-50));
/// assert_eq!(params.get_standard_dev(), 2_f64.powf(-25.));
/// assert_eq!(params.get_log_standard_dev(), -25.);
/// assert_eq!(params.get_variance(), 2_f64.powf(-25.).powi(2));
/// assert_eq!(params.get_modular_standard_dev(32), 2_f64.powf(32. - 25.));
/// assert_eq!(params.get_modular_log_standard_dev(32), 32. - 25.);
/// assert_eq!(
/// params.get_modular_variance(32),
/// 2_f64.powf(32. - 25.).powi(2)
/// );
/// ```
#[derive(Debug, Copy, Clone, PartialEq, PartialOrd)]
pub struct Variance(pub f64);
impl Variance {
pub fn from_variance(var: f64) -> Self {
Self(var)
}
pub fn from_modular_variance(var: f64, log2_modulus: u32) -> Self {
Self(var / 2_f64.powf(log2_modulus as f64 * 2.))
}
}
impl DispersionParameter for Variance {
fn get_standard_dev(&self) -> f64 {
self.0.sqrt()
}
fn get_variance(&self) -> f64 {
self.0
}
fn get_log_standard_dev(&self) -> f64 {
self.0.sqrt().log2()
}
fn get_modular_standard_dev(&self, log2_modulus: u32) -> f64 {
2_f64.powf(log2_modulus as f64 + self.0.sqrt().log2())
}
fn get_modular_variance(&self, log2_modulus: u32) -> f64 {
2_f64.powf(2. * (log2_modulus as f64 + self.0.sqrt().log2()))
}
fn get_modular_log_standard_dev(&self, log2_modulus: u32) -> f64 {
log2_modulus as f64 + self.0.sqrt().log2()
}
}