You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the FPT code emission using --emit-tfhe-rust-bool, a memref<16x8x!tfhe_rust_bool.eb> is emitted as a Vec<Ciphertext> - should it be OK to use Vec<Vec<Ciphertext>>? The inner vecs are all the same size - but maybe this is a pain
The text was updated successfully, but these errors were encountered:
Iirc, now, the memref are just flattend to one dimension. I dont see a problem to convert everything to the correct dimension.
Just keep in mind, that the packed API for the boolean emitter (for now) does take a one dimensional vector. If wanted, we can also change the packed API to take in higher dimension
@WoutLegiest
For the FPT code emission using
--emit-tfhe-rust-bool
, amemref<16x8x!tfhe_rust_bool.eb>
is emitted as aVec<Ciphertext>
- should it be OK to useVec<Vec<Ciphertext>>
? The inner vecs are all the same size - but maybe this is a painThe text was updated successfully, but these errors were encountered: