Update bit encoding to byte interleaving to enable trivial byte-level manipulation

This commit is contained in:
Pro7ech
2025-10-29 10:05:44 +01:00
parent c761d2cae0
commit 9d5bc43632
7 changed files with 72 additions and 41 deletions

View File

@@ -1,7 +1,10 @@
use std::marker::PhantomData; use std::marker::PhantomData;
use poulpy_core::{GLWECopy, GLWEPacking, ScratchTakeCore, layouts::GGSWPrepared}; use poulpy_core::{GLWECopy, GLWEPacking, ScratchTakeCore, layouts::GGSWPrepared};
use poulpy_hal::layouts::{Backend, DataMut, DataRef, Module, Scratch}; use poulpy_hal::{
api::ModuleLogN,
layouts::{Backend, DataMut, DataRef, Module, Scratch},
};
use crate::tfhe::{ use crate::tfhe::{
bdd_arithmetic::{ bdd_arithmetic::{
@@ -18,7 +21,7 @@ impl<T: UnsignedInteger, BE: Backend> ExecuteBDDCircuit2WTo1W<T, BE> for Module<
pub trait ExecuteBDDCircuit2WTo1W<T: UnsignedInteger, BE: Backend> pub trait ExecuteBDDCircuit2WTo1W<T: UnsignedInteger, BE: Backend>
where where
Self: Sized + ExecuteBDDCircuit<T, BE> + GLWEPacking<BE> + GLWECopy, Self: Sized + ModuleLogN + ExecuteBDDCircuit<T, BE> + GLWEPacking<BE> + GLWECopy,
{ {
/// Operations Z x Z -> Z /// Operations Z x Z -> Z
fn execute_bdd_circuit_2w_to_1w<R, C, A, B, DK, BRA>( fn execute_bdd_circuit_2w_to_1w<R, C, A, B, DK, BRA>(
@@ -45,7 +48,7 @@ where
_phantom: PhantomData, _phantom: PhantomData,
}; };
let (mut out_bits, scratch_1) = scratch.take_glwe_slice(T::WORD_SIZE, out); let (mut out_bits, scratch_1) = scratch.take_glwe_slice(T::BITS as usize, out);
// Evaluates out[i] = circuit[i](a, b) // Evaluates out[i] = circuit[i](a, b)
self.execute_bdd_circuit(&mut out_bits, &helper, circuit, scratch_1); self.execute_bdd_circuit(&mut out_bits, &helper, circuit, scratch_1);
@@ -62,15 +65,15 @@ struct FheUintHelper<'a, T: UnsignedInteger, BE: Backend> {
impl<'a, T: UnsignedInteger, BE: Backend> GetGGSWBit<BE> for FheUintHelper<'a, T, BE> { impl<'a, T: UnsignedInteger, BE: Backend> GetGGSWBit<BE> for FheUintHelper<'a, T, BE> {
fn get_bit(&self, bit: usize) -> GGSWPrepared<&[u8], BE> { fn get_bit(&self, bit: usize) -> GGSWPrepared<&[u8], BE> {
let lo: usize = bit % T::WORD_SIZE; let lo: usize = bit % T::BITS as usize;
let hi: usize = bit / T::WORD_SIZE; let hi: usize = bit / T::BITS as usize;
self.data[hi].get_bit(lo) self.data[hi].get_bit(lo)
} }
} }
impl<'a, T: UnsignedInteger, BE: Backend> BitSize for FheUintHelper<'a, T, BE> { impl<'a, T: UnsignedInteger, BE: Backend> BitSize for FheUintHelper<'a, T, BE> {
fn bit_size(&self) -> usize { fn bit_size(&self) -> usize {
T::WORD_SIZE * self.data.len() T::BITS as usize * self.data.len()
} }
} }

View File

@@ -195,7 +195,7 @@ where
K: GetGGSWBit<BE>, K: GetGGSWBit<BE>,
Scratch<BE>: ScratchTakeCore<BE>, Scratch<BE>: ScratchTakeCore<BE>,
{ {
assert!(bit_rsh + bit_mask <= T::WORD_SIZE); assert!(bit_rsh + bit_mask <= T::BITS as usize);
let mut res: GLWE<&mut [u8]> = res.to_mut(); let mut res: GLWE<&mut [u8]> = res.to_mut();

View File

@@ -1,4 +1,3 @@
use itertools::Itertools;
use poulpy_core::{ use poulpy_core::{
GLWECopy, GLWEDecrypt, GLWEEncryptSk, GLWEPacking, GLWERotate, LWEFromGLWE, ScratchTakeCore, GLWECopy, GLWEDecrypt, GLWEEncryptSk, GLWEPacking, GLWERotate, LWEFromGLWE, ScratchTakeCore,
layouts::{ layouts::{
@@ -7,7 +6,7 @@ use poulpy_core::{
}, },
}; };
use poulpy_hal::{ use poulpy_hal::{
api::ModuleN, api::ModuleLogN,
layouts::{Backend, Data, DataMut, DataRef, Scratch}, layouts::{Backend, Data, DataMut, DataRef, Scratch},
source::Source, source::Source,
}; };
@@ -68,22 +67,23 @@ impl<D: DataMut, T: UnsignedInteger + ToBits> FheUint<D, T> {
scratch: &mut Scratch<BE>, scratch: &mut Scratch<BE>,
) where ) where
S: GLWESecretPreparedToRef<BE> + GLWEInfos, S: GLWESecretPreparedToRef<BE> + GLWEInfos,
M: ModuleN + GLWEEncryptSk<BE>, M: ModuleLogN + GLWEEncryptSk<BE>,
Scratch<BE>: ScratchTakeCore<BE>, Scratch<BE>: ScratchTakeCore<BE>,
{ {
#[cfg(debug_assertions)] #[cfg(debug_assertions)]
{ {
assert!(module.n().is_multiple_of(T::WORD_SIZE)); assert!(module.n().is_multiple_of(T::BITS as usize));
assert_eq!(self.n(), module.n() as u32); assert_eq!(self.n(), module.n() as u32);
assert_eq!(sk.n(), module.n() as u32); assert_eq!(sk.n(), module.n() as u32);
} }
let gap: usize = module.n() / T::WORD_SIZE;
let mut data_bits: Vec<i64> = vec![0i64; module.n()]; let mut data_bits: Vec<i64> = vec![0i64; module.n()];
for i in 0..T::WORD_SIZE { let log_gap: usize = module.log_n() - T::LOG_BITS as usize;
data_bits[i * gap] = data.bit(i) as i64
// Interleaves bytes
for i in 0..T::BITS as usize {
data_bits[T::bit_index(i) << log_gap] = data.bit(i) as i64
} }
let pt_infos = GLWEPlaintextLayout { let pt_infos = GLWEPlaintextLayout {
@@ -104,18 +104,16 @@ impl<D: DataRef, T: UnsignedInteger + FromBits> FheUint<D, T> {
pub fn decrypt<S, M, BE: Backend>(&self, module: &M, sk: &S, scratch: &mut Scratch<BE>) -> T pub fn decrypt<S, M, BE: Backend>(&self, module: &M, sk: &S, scratch: &mut Scratch<BE>) -> T
where where
S: GLWESecretPreparedToRef<BE> + GLWEInfos, S: GLWESecretPreparedToRef<BE> + GLWEInfos,
M: GLWEDecrypt<BE>, M: ModuleLogN + GLWEDecrypt<BE>,
Scratch<BE>: ScratchTakeCore<BE>, Scratch<BE>: ScratchTakeCore<BE>,
{ {
#[cfg(debug_assertions)] #[cfg(debug_assertions)]
{ {
assert!(module.n().is_multiple_of(T::WORD_SIZE)); assert!(module.n().is_multiple_of(T::BITS as usize));
assert_eq!(self.n(), module.n() as u32); assert_eq!(self.n(), module.n() as u32);
assert_eq!(sk.n(), module.n() as u32); assert_eq!(sk.n(), module.n() as u32);
} }
let gap: usize = module.n() / T::WORD_SIZE;
let pt_infos = GLWEPlaintextLayout { let pt_infos = GLWEPlaintextLayout {
n: self.n(), n: self.n(),
base2k: self.base2k(), base2k: self.base2k(),
@@ -126,11 +124,18 @@ impl<D: DataRef, T: UnsignedInteger + FromBits> FheUint<D, T> {
self.bits.decrypt(module, &mut pt, sk, scratch_1); self.bits.decrypt(module, &mut pt, sk, scratch_1);
let mut data: Vec<i64> = vec![0i64; module.n()]; let mut data_bits: Vec<i64> = vec![0i64; module.n()];
pt.decode_vec_i64(&mut data_bits, TorusPrecision(2));
pt.decode_vec_i64(&mut data, TorusPrecision(2)); let mut bits: Vec<u8> = vec![0u8; T::BITS as usize];
let log_gap: usize = module.log_n() - T::LOG_BITS as usize;
// Retrives from interleaved bytes
for i in 0..T::BITS as usize {
bits[i] = data_bits[T::bit_index(i) << log_gap] as u8
}
let bits: Vec<u8> = data.iter().step_by(gap).map(|c| *c as u8).collect_vec();
T::from_bits(&bits) T::from_bits(&bits)
} }
} }
@@ -146,15 +151,14 @@ impl<D: DataMut, T: UnsignedInteger> FheUint<D, T> {
) where ) where
D1: DataMut, D1: DataMut,
ATK: DataRef, ATK: DataRef,
M: GLWEPacking<BE> + GLWECopy, M: ModuleLogN + GLWEPacking<BE> + GLWECopy,
Scratch<BE>: ScratchTakeCore<BE>, Scratch<BE>: ScratchTakeCore<BE>,
{ {
// Repacks the GLWE ciphertexts bits // Repacks the GLWE ciphertexts bits
let gap: usize = module.n() / T::WORD_SIZE; let log_gap: usize = module.log_n() - T::LOG_BITS as usize;
let log_gap: usize = (usize::BITS - (gap - 1).leading_zeros()) as usize;
let mut cts: HashMap<usize, &mut GLWE<D1>> = HashMap::new(); let mut cts: HashMap<usize, &mut GLWE<D1>> = HashMap::new();
for (i, ct) in tmp_res.iter_mut().enumerate().take(T::WORD_SIZE) { for (i, ct) in tmp_res.iter_mut().enumerate().take(T::BITS as usize) {
cts.insert(i * gap, ct); cts.insert(T::bit_index(i) << log_gap, ct);
} }
module.glwe_pack(&mut cts, log_gap, auto_keys, scratch); module.glwe_pack(&mut cts, log_gap, auto_keys, scratch);
@@ -169,11 +173,12 @@ impl<D: DataRef, T: UnsignedInteger> FheUint<D, T> {
where where
L: LWEToMut, L: LWEToMut,
K: GGLWEPreparedToRef<BE> + GGLWEInfos, K: GGLWEPreparedToRef<BE> + GGLWEInfos,
M: LWEFromGLWE<BE> + GLWERotate<BE>, M: ModuleLogN + LWEFromGLWE<BE> + GLWERotate<BE>,
Scratch<BE>: ScratchTakeCore<BE>, Scratch<BE>: ScratchTakeCore<BE>,
{ {
let gap: usize = module.n() / T::WORD_SIZE; let log_gap: usize = module.log_n() - T::LOG_BITS as usize;
res.to_mut().from_glwe(module, self, bit * gap, ks, scratch); res.to_mut()
.from_glwe(module, self, T::bit_index(bit) << log_gap, ks, scratch);
} }
} }

View File

@@ -63,7 +63,7 @@ where
rank: Rank, rank: Rank,
) -> FheUintPrepared<Vec<u8>, T, BE> { ) -> FheUintPrepared<Vec<u8>, T, BE> {
FheUintPrepared { FheUintPrepared {
bits: (0..T::WORD_SIZE) bits: (0..T::BITS)
.map(|_| GGSWPrepared::alloc(self, base2k, k, dnum, dsize, rank)) .map(|_| GGSWPrepared::alloc(self, base2k, k, dnum, dsize, rank))
.collect(), .collect(),
_phantom: PhantomData, _phantom: PhantomData,
@@ -125,7 +125,7 @@ where
{ {
use poulpy_hal::{api::ScratchTakeBasic, layouts::ZnxZero}; use poulpy_hal::{api::ScratchTakeBasic, layouts::ZnxZero};
assert!(self.n().is_multiple_of(T::WORD_SIZE)); assert!(self.n().is_multiple_of(T::BITS as usize));
assert_eq!(res.n(), self.n() as u32); assert_eq!(res.n(), self.n() as u32);
assert_eq!(sk.n(), self.n() as u32); assert_eq!(sk.n(), self.n() as u32);
@@ -133,7 +133,7 @@ where
let (mut pt, scratch_2) = scratch_1.take_scalar_znx(self.n(), 1); let (mut pt, scratch_2) = scratch_1.take_scalar_znx(self.n(), 1);
pt.zero(); pt.zero();
for i in 0..T::WORD_SIZE { for i in 0..T::BITS as usize {
use poulpy_hal::layouts::ZnxViewMut; use poulpy_hal::layouts::ZnxViewMut;
pt.at_mut(0, 0)[0] = value.bit(i) as i64; pt.at_mut(0, 0)[0] = value.bit(i) as i64;
tmp_ggsw.encrypt_sk(self, &pt, sk, source_xa, source_xe, scratch_2); tmp_ggsw.encrypt_sk(self, &pt, sk, source_xa, source_xe, scratch_2);

View File

@@ -42,7 +42,7 @@ impl<T: UnsignedInteger> FheUintPreparedDebug<Vec<u8>, T> {
M: ModuleN, M: ModuleN,
{ {
Self { Self {
bits: (0..T::WORD_SIZE) bits: (0..T::BITS)
.map(|_| GGSW::alloc(module.n().into(), base2k, k, rank, dnum, dsize)) .map(|_| GGSW::alloc(module.n().into(), base2k, k, rank, dnum, dsize))
.collect(), .collect(),
_phantom: PhantomData, _phantom: PhantomData,

View File

@@ -15,23 +15,46 @@ pub use key::*;
pub mod tests; pub mod tests;
pub trait UnsignedInteger: Copy + 'static { pub trait UnsignedInteger: Copy + 'static {
const WORD_SIZE: usize; const BITS: u32;
const LOG_BITS: u32;
const LOG_BYTES: u32;
const LOG_BYTES_MASK: usize;
#[inline(always)]
fn bit_index(i: usize) -> usize {
((i & Self::LOG_BYTES_MASK) << 3) | (i >> Self::LOG_BYTES)
}
} }
impl UnsignedInteger for u8 { impl UnsignedInteger for u8 {
const WORD_SIZE: usize = 8; const BITS: u32 = u8::BITS;
const LOG_BITS: u32 = (u32::BITS - (Self::BITS - 1).leading_zeros());
const LOG_BYTES: u32 = Self::LOG_BITS - 3;
const LOG_BYTES_MASK: usize = (1 << Self::LOG_BYTES) - 1;
} }
impl UnsignedInteger for u16 { impl UnsignedInteger for u16 {
const WORD_SIZE: usize = 16; const BITS: u32 = u16::BITS;
const LOG_BITS: u32 = (u32::BITS - (Self::BITS - 1).leading_zeros());
const LOG_BYTES: u32 = Self::LOG_BITS - 3;
const LOG_BYTES_MASK: usize = (1 << Self::LOG_BYTES) - 1;
} }
impl UnsignedInteger for u32 { impl UnsignedInteger for u32 {
const WORD_SIZE: usize = 32; const BITS: u32 = u32::BITS;
const LOG_BITS: u32 = (u32::BITS - (Self::BITS - 1).leading_zeros());
const LOG_BYTES: u32 = Self::LOG_BITS - 3;
const LOG_BYTES_MASK: usize = (1 << Self::LOG_BYTES) - 1;
} }
impl UnsignedInteger for u64 { impl UnsignedInteger for u64 {
const WORD_SIZE: usize = 64; const BITS: u32 = u64::BITS;
const LOG_BITS: u32 = (u32::BITS - (Self::BITS - 1).leading_zeros());
const LOG_BYTES: u32 = Self::LOG_BITS >> 3;
const LOG_BYTES_MASK: usize = (1 << Self::LOG_BYTES) - 1;
} }
impl UnsignedInteger for u128 { impl UnsignedInteger for u128 {
const WORD_SIZE: usize = 128; const BITS: u32 = u128::BITS;
const LOG_BITS: u32 = (u32::BITS - (Self::BITS - 1).leading_zeros());
const LOG_BYTES: u32 = Self::LOG_BITS >> 3;
const LOG_BYTES_MASK: usize = (1 << Self::LOG_BYTES) - 1;
} }
pub trait ToBits { pub trait ToBits {

View File

@@ -121,7 +121,7 @@ impl<BRA: BlindRotationAlgo, BE: Backend> TestContext<BRA, BE> {
} }
} }
pub(crate) const TEST_N_GLWE: u32 = 512; pub(crate) const TEST_N_GLWE: u32 = 256;
pub(crate) const TEST_N_LWE: u32 = 77; pub(crate) const TEST_N_LWE: u32 = 77;
pub(crate) const TEST_BASE2K: u32 = 13; pub(crate) const TEST_BASE2K: u32 = 13;
pub(crate) const TEST_K_GLWE: u32 = 26; pub(crate) const TEST_K_GLWE: u32 = 26;