diff --git a/tfhe/src/core_crypto/gpu/mod.rs b/tfhe/src/core_crypto/gpu/mod.rs index 33695fb46d..5964b4b874 100644 --- a/tfhe/src/core_crypto/gpu/mod.rs +++ b/tfhe/src/core_crypto/gpu/mod.rs @@ -87,7 +87,7 @@ impl Drop for CudaStreams { } } -/// Discarding bootstrap on a vector of LWE ciphertexts +/// Programmable bootstrap on a vector of LWE ciphertexts /// /// # Safety /// @@ -150,7 +150,7 @@ pub unsafe fn programmable_bootstrap_async( ); } -/// Discarding bootstrap on a vector of LWE ciphertexts +/// Programmable multi-bit bootstrap on a vector of LWE ciphertexts /// /// # Safety /// @@ -215,7 +215,7 @@ pub unsafe fn programmable_bootstrap_multi_bit_async( ); } -/// Discarding keyswitch on a vector of LWE ciphertexts +/// Keyswitch on a vector of LWE ciphertexts /// /// # Safety /// @@ -408,7 +408,7 @@ pub unsafe fn extract_lwe_samples_from_glwe_ciphertext_list_async( ); } -/// Discarding assigned addition of a vector of LWE ciphertexts +/// Assigned addition of a vector of LWE ciphertexts /// /// # Safety /// @@ -457,7 +457,7 @@ pub unsafe fn add_lwe_ciphertext_vector_assign_async( ); } -/// Discarding addition of a vector of LWE ciphertexts with a vector of plaintexts +/// Addition of a vector of LWE ciphertexts with a vector of plaintexts /// /// # Safety /// @@ -482,7 +482,7 @@ pub unsafe fn add_lwe_ciphertext_vector_plaintext_vector_async( ); } -/// Discarding assigned negation of a vector of LWE ciphertexts +/// Assigned negation of a vector of LWE ciphertexts /// /// # Safety /// @@ -552,7 +552,7 @@ pub unsafe fn negate_lwe_ciphertext_vector_assign_async( } #[allow(clippy::too_many_arguments)] -/// Discarding assign negation of a vector of LWE ciphertexts representing an integer +/// Assign negation of a vector of LWE ciphertexts representing an integer /// /// # Safety ///