diff --git a/tfhe/src/core_crypto/gpu/vec.rs b/tfhe/src/core_crypto/gpu/vec.rs index 8063457f53..7863559974 100644 --- a/tfhe/src/core_crypto/gpu/vec.rs +++ b/tfhe/src/core_crypto/gpu/vec.rs @@ -449,7 +449,7 @@ impl Drop for CudaVec { .zip(self.gpu_indexes.iter().copied()) { // Synchronizes the device to be sure no stream is still using this pointer - synchronize_device(gpu_index.0); + //synchronize_device(gpu_index.0); unsafe { cuda_drop(ptr, gpu_index.0) }; } }