diff --git a/tfhe/src/integer/gpu/server_key/radix/comparison.rs b/tfhe/src/integer/gpu/server_key/radix/comparison.rs index 2a282c6005..2f01bc8fbe 100644 --- a/tfhe/src/integer/gpu/server_key/radix/comparison.rs +++ b/tfhe/src/integer/gpu/server_key/radix/comparison.rs @@ -3,7 +3,7 @@ use crate::core_crypto::gpu::CudaStream; use crate::core_crypto::prelude::{CiphertextModulus, LweCiphertextCount}; use crate::integer::gpu::ciphertext::boolean_value::CudaBooleanBlock; use crate::integer::gpu::ciphertext::info::CudaRadixCiphertextInfo; -use crate::integer::gpu::ciphertext::CudaIntegerRadixCiphertext; +use crate::integer::gpu::ciphertext::{CudaIntegerRadixCiphertext, CudaRadixCiphertext}; use crate::integer::gpu::server_key::CudaBootstrappingKey; use crate::integer::gpu::{ComparisonType, CudaServerKey}; use crate::shortint::ciphertext::Degree; diff --git a/tfhe/src/integer/gpu/server_key/radix/tests_signed/test_comparison.rs b/tfhe/src/integer/gpu/server_key/radix/tests_signed/test_comparison.rs index ae01c3eeb5..b1adc09b95 100644 --- a/tfhe/src/integer/gpu/server_key/radix/tests_signed/test_comparison.rs +++ b/tfhe/src/integer/gpu/server_key/radix/tests_signed/test_comparison.rs @@ -30,7 +30,7 @@ macro_rules! define_gpu_signed_comparison_test_functions { ) } - fn []

(param: P) where P: Into { + fn []

(param: P) where P: Into { let num_tests = 1; let executor = GpuFunctionExecutor::new(&CudaServerKey::[<$comparison_name>]); test_signed_default_function( @@ -44,7 +44,7 @@ macro_rules! define_gpu_signed_comparison_test_functions { // Then call our create_gpu_parametrized_test macro onto or specialized fns create_gpu_parametrized_test!([]); - create_gpu_parametrized_test!([]); + create_gpu_parametrized_test!([]); } }; } diff --git a/tfhe/src/integer/gpu/server_key/radix/tests_unsigned/test_comparison.rs b/tfhe/src/integer/gpu/server_key/radix/tests_unsigned/test_comparison.rs index d7350a9518..e528de0fd5 100644 --- a/tfhe/src/integer/gpu/server_key/radix/tests_unsigned/test_comparison.rs +++ b/tfhe/src/integer/gpu/server_key/radix/tests_unsigned/test_comparison.rs @@ -29,7 +29,7 @@ macro_rules! define_gpu_comparison_test_functions { ) } - fn []

(param: P) where P: Into { + fn []

(param: P) where P: Into { let num_tests = 1; let executor = GpuFunctionExecutor::new(&CudaServerKey::[<$comparison_name>]); test_default_function( @@ -41,7 +41,7 @@ macro_rules! define_gpu_comparison_test_functions { } create_gpu_parametrized_test!([]); - create_gpu_parametrized_test!([]); + create_gpu_parametrized_test!([]); } }; }