Skip to content

Commit

Permalink
fix(gpu): fix a bug in integer multiplication
Browse files Browse the repository at this point in the history
  • Loading branch information
pdroalves authored and agnesLeroy committed Mar 12, 2024
1 parent 29fb4fb commit 8c4675d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ __host__ void host_integer_mult_radix_kb(
cuda_memset_async(block_mul_res, 0, big_lwe_size * sizeof(Torus), stream);

host_addition(stream, radix_lwe_out, vector_result_sb, block_mul_res,
big_lwe_size, num_blocks);
big_lwe_dimension, num_blocks);

host_propagate_single_carry_low_latency<Torus>(
stream, radix_lwe_out, mem_ptr->scp_mem, bsk, ksk, num_blocks);
Expand Down

0 comments on commit 8c4675d

Please sign in to comment.