diff --git a/tfhe/src/core_crypto/gpu/entities/glwe_ciphertext_list.rs b/tfhe/src/core_crypto/gpu/entities/glwe_ciphertext_list.rs index a1f68c489f..bb47d57fa5 100644 --- a/tfhe/src/core_crypto/gpu/entities/glwe_ciphertext_list.rs +++ b/tfhe/src/core_crypto/gpu/entities/glwe_ciphertext_list.rs @@ -68,10 +68,7 @@ impl CudaGlweCiphertextList { Self(cuda_glwe_list) } - pub(crate) fn to_glwe_ciphertext_list( - &self, - streams: &CudaStreams, - ) -> GlweCiphertextList> { + pub fn to_glwe_ciphertext_list(&self, streams: &CudaStreams) -> GlweCiphertextList> { let glwe_ct_size = self.0.glwe_ciphertext_count.0 * glwe_ciphertext_size(self.0.glwe_dimension.to_glwe_size(), self.0.polynomial_size); let mut container: Vec = vec![T::ZERO; glwe_ct_size];