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
In alu.pil, the following variable pol PRODUCT = a_lo * b_lo + (1 - u1_tag) * (LIMB_BITS_POW * partial_prod_lo + MAX_BITS_POW * (partial_prod_hi + a_hi * b_hi));
might overflow the field when operand type is u128. Namely, a_hi and b_hi are of size 64 bits and MAX_BITS_POW=2^128.
Note that modifications of PRODUCT might affect division relation as well.
The text was updated successfully, but these errors were encountered:
In alu.pil, the following variable
pol PRODUCT = a_lo * b_lo + (1 - u1_tag) * (LIMB_BITS_POW * partial_prod_lo + MAX_BITS_POW * (partial_prod_hi + a_hi * b_hi));
might overflow the field when operand type is u128. Namely, a_hi and b_hi are of size 64 bits and MAX_BITS_POW=2^128.
Note that modifications of PRODUCT might affect division relation as well.
The text was updated successfully, but these errors were encountered: