Skip to content

Commit

Permalink
fix(backend/cpu): Fix the size of the expanded lut in woppbs case of …
Browse files Browse the repository at this point in the history
…poly size > lut size
  • Loading branch information
BourgerieQuentin committed Jan 2, 2024
1 parent 8879c4b commit c21f7e8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions backends/concrete-cpu/implementation/src/c_api/wop_pbs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -319,10 +319,8 @@ pub unsafe extern "C" fn concrete_cpu_circuit_bootstrap_boolean_vertical_packing

let mut lut_container = slice::from_raw_parts(lut, lut_size * lut_count);
let mut expanded_luts: Vec<u64> = vec![
0_u64,
(fpksk_output_polynomial_size * lut_count)
.try_into()
.unwrap(),
0_u64;
fpksk_output_polynomial_size * lut_count
];

if lut_size < fpksk_output_polynomial_size {
Expand Down

0 comments on commit c21f7e8

Please sign in to comment.