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
Currently, we're storing a matrix of ciphers texts as a vector<Ciphertext> where each cipher text is a row. Since multiple numbers can be stored in each cipher text the operations are already parallelized column-wise. We can parallelize row-wise though by splitting up the work among different threads.
The text was updated successfully, but these errors were encountered:
Currently, we're storing a matrix of ciphers texts as a
vector<Ciphertext>
where each cipher text is a row. Since multiple numbers can be stored in each cipher text the operations are already parallelized column-wise. We can parallelize row-wise though by splitting up the work among different threads.The text was updated successfully, but these errors were encountered: