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
use crate::backends::core::implementation::engines::CoreEngine;
use crate::backends::core::implementation::entities::{LweCiphertext32, LweCiphertext64};
use crate::specification::engines::{
LweCiphertextFusingAdditionEngine, LweCiphertextFusingAdditionError,
};
/// # Description:
/// Implementation of [`LweCiphertextFusingAdditionEngine`] for [`CoreEngine`] that operates on
/// 32 bits integers.
impl LweCiphertextFusingAdditionEngine<LweCiphertext32, LweCiphertext32> for CoreEngine {
/// # Example:
/// ```
/// use concrete_commons::dispersion::Variance;
/// use concrete_commons::parameters::LweDimension;
/// use concrete_core::prelude::*;
/// # use std::error::Error;
///
/// # fn main() -> Result<(), Box<dyn Error>> {
/// // DISCLAIMER: the parameters used here are only for test purpose, and are not secure.
/// let lwe_dimension = LweDimension(2);
/// // Here a hard-set encoding is applied (shift by 20 bits)
/// let input_1 = 3_u32 << 20;
/// let input_2 = 5_u32 << 20;
/// let noise = Variance(2_f64.powf(-25.));
///
/// let mut engine = CoreEngine::new()?;
/// let key: LweSecretKey32 = engine.create_lwe_secret_key(lwe_dimension)?;
/// let plaintext_1 = engine.create_plaintext(&input_1)?;
/// let plaintext_2 = engine.create_plaintext(&input_2)?;
/// let ciphertext_1 = engine.encrypt_lwe_ciphertext(&key, &plaintext_1, noise)?;
/// let mut ciphertext_2 = engine.encrypt_lwe_ciphertext(&key, &plaintext_2, noise)?;
///
/// engine.fuse_add_lwe_ciphertext(&mut ciphertext_2, &ciphertext_1)?;
/// #
/// assert_eq!(ciphertext_2.lwe_dimension(), lwe_dimension);
///
/// engine.destroy(key)?;
/// engine.destroy(plaintext_1)?;
/// engine.destroy(ciphertext_1)?;
/// engine.destroy(plaintext_2)?;
/// engine.destroy(ciphertext_2)?;
/// #
/// # Ok(())
/// # }
/// ```
fn fuse_add_lwe_ciphertext(
&mut self,
output: &mut LweCiphertext32,
input: &LweCiphertext32,
) -> Result<(), LweCiphertextFusingAdditionError<Self::EngineError>> {
LweCiphertextFusingAdditionError::perform_generic_checks(output, input)?;
unsafe { self.fuse_add_lwe_ciphertext_unchecked(output, input) };
Ok(())
}
unsafe fn fuse_add_lwe_ciphertext_unchecked(
&mut self,
output: &mut LweCiphertext32,
input: &LweCiphertext32,
) {
output.0.update_with_add(&input.0);
}
}
/// # Description:
/// Implementation of [`LweCiphertextFusingAdditionEngine`] for [`CoreEngine`] that operates on
/// 64 bits integers.
impl LweCiphertextFusingAdditionEngine<LweCiphertext64, LweCiphertext64> for CoreEngine {
/// # Example:
/// ```
/// use concrete_commons::dispersion::Variance;
/// use concrete_commons::parameters::LweDimension;
/// use concrete_core::prelude::*;
/// # use std::error::Error;
///
/// # fn main() -> Result<(), Box<dyn Error>> {
/// // DISCLAIMER: the parameters used here are only for test purpose, and are not secure.
/// let lwe_dimension = LweDimension(2);
/// // Here a hard-set encoding is applied (shift by 50 bits)
/// let input_1 = 3_u64 << 50;
/// let input_2 = 5_u64 << 50;
/// let noise = Variance(2_f64.powf(-25.));
///
/// let mut engine = CoreEngine::new()?;
/// let key: LweSecretKey64 = engine.create_lwe_secret_key(lwe_dimension)?;
/// let plaintext_1 = engine.create_plaintext(&input_1)?;
/// let plaintext_2 = engine.create_plaintext(&input_2)?;
/// let ciphertext_1 = engine.encrypt_lwe_ciphertext(&key, &plaintext_1, noise)?;
/// let mut ciphertext_2 = engine.encrypt_lwe_ciphertext(&key, &plaintext_2, noise)?;
///
/// engine.fuse_add_lwe_ciphertext(&mut ciphertext_2, &ciphertext_1)?;
/// #
/// assert_eq!(ciphertext_2.lwe_dimension(), lwe_dimension);
///
/// engine.destroy(key)?;
/// engine.destroy(plaintext_1)?;
/// engine.destroy(ciphertext_1)?;
/// engine.destroy(plaintext_2)?;
/// engine.destroy(ciphertext_2)?;
/// #
/// # Ok(())
/// # }
/// ```
fn fuse_add_lwe_ciphertext(
&mut self,
output: &mut LweCiphertext64,
input: &LweCiphertext64,
) -> Result<(), LweCiphertextFusingAdditionError<Self::EngineError>> {
LweCiphertextFusingAdditionError::perform_generic_checks(output, input)?;
unsafe { self.fuse_add_lwe_ciphertext_unchecked(output, input) };
Ok(())
}
unsafe fn fuse_add_lwe_ciphertext_unchecked(
&mut self,
output: &mut LweCiphertext64,
input: &LweCiphertext64,
) {
output.0.update_with_add(&input.0);
}
}