-
Notifications
You must be signed in to change notification settings - Fork 860
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unhandled overflow in int8 SVDF evaluation #2721
Comments
"This issue is being marked as stale due to inactivity. Remove label or comment to prevent closure in 5 days." |
"This issue is being marked as stale due to inactivity. Remove label or comment to prevent closure in 5 days." |
"This issue is being marked as stale due to inactivity. Remove label or comment to prevent closure in 5 days." |
"This issue is being closed because it has been marked as |
When calculating the values to be inserted in the SVDF operator’s activation state in the svdf_common.cc file, there seems to be an error while handling overflow.
In line 111 the value for the dot_prod variable is limited to the interval of valid int8 values, [-128, 127]. But then, in line 115, the activation state’s zero point is added to dot_prod, which may lead to an unhandled overflow.
The text was updated successfully, but these errors were encountered: