From 90fca9eb5ecac0b16a98aa112f6aa86ae7bc2adb Mon Sep 17 00:00:00 2001 From: Quentin Bourgerie Date: Wed, 12 Oct 2022 09:37:55 +0200 Subject: [PATCH] fix(runtime/gpu): Use the amortized version of the gpu boostrap as the parameter space of the lowlat one is too restrictive --- compiler/lib/Runtime/wrappers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/lib/Runtime/wrappers.cpp b/compiler/lib/Runtime/wrappers.cpp index b9eeb05ee..96d873e65 100644 --- a/compiler/lib/Runtime/wrappers.cpp +++ b/compiler/lib/Runtime/wrappers.cpp @@ -220,7 +220,7 @@ void memref_bootstrap_lwe_cuda_u64( cuda_memcpy_async_to_gpu(test_vector_idxes_gpu, test_vector_idxes, num_samples * sizeof(uint32_t), stream, gpu_idx); // run gpu bootstrap - cuda_bootstrap_low_latency_lwe_ciphertext_vector_64( + cuda_bootstrap_amortized_lwe_ciphertext_vector_64( stream, out_gpu, test_vector_gpu, test_vector_idxes_gpu, ct0_gpu, fbsk_gpu, input_lwe_dim, poly_size, base_log, level, num_samples, num_test_vectors, lwe_idx, cuda_get_max_shared_memory(gpu_idx));