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
How to understand the counter of modular add and modular multiplication? I think they should be:
stats.sw.add = input_ctxt.N * (input_ctxt.limbs - 1) * output_ctxt.limbs # we are accumulating input_ctxt.limbs polynomials
stats.sw.mult = 2 * input_ctxt.N * input_ctxt.limbs * output_ctxt.limbs # there are two modular multiplications for each coefficient of polynomial in the equation
The text was updated successfully, but these errors were encountered:
I am trying to understand the
basis_convert
function inevaluator.py
, which is:I am confused by:
How to understand the counter of modular add and modular multiplication? I think they should be:
The text was updated successfully, but these errors were encountered: