We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If I look at arm_dot_prod_q15, the comment of the function is:
arm_dot_prod_q15
The return result is in 34.30 format
and the return type is q63_t
q63_t
So q63_t is here used as a storage type. The real fixed type being q34_30_t
q34_30_t
The same problems is present in every function where the datatype are not q63, q15 or q7 but other fixed point types are used.
q63
q15
q7
This should be improved.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If I look at
arm_dot_prod_q15
, the comment of the function is:and the return type is
q63_t
So
q63_t
is here used as a storage type. The real fixed type beingq34_30_t
The same problems is present in every function where the datatype are not
q63
,q15
orq7
but other fixed point types are used.This should be improved.
The text was updated successfully, but these errors were encountered: