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
Google-internal build system (I think ASAN) detected a bug:
heir/tests/Examples/openfhe/bfv/dot_product_8/dot_product_8_lib.h:73:26: error: implicit conversion from 'long' to 'usint' (aka 'unsigned int') changes value from 7595718147998050665 to 1768515945 [-Werror,-Wconstant-conversion]
73 | params.SetEvalAddCount(7595718147998050665);
| ~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~
heir/tests/Examples/openfhe/bfv/dot_product_8/dot_product_8_lib.h:74:28: error: implicit conversion from 'long' to 'usint' (aka 'unsigned int') changes value from 7595718147998050665 to 1768515945 [-Werror,-Wconstant-conversion]
74 | params.SetKeySwitchCount(7595718147998050665);
7595718147998050665 is the poison value malloc uses for a use-after-free detection.
The text was updated successfully, but these errors were encountered:
Google-internal build system (I think ASAN) detected a bug:
7595718147998050665 is the poison value malloc uses for a use-after-free detection.
The text was updated successfully, but these errors were encountered: