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
__restrict__
As mentioned in #7, it might be beneficial to declare all pointers in all functions as __restrict__. To be tested in a new PR
The text was updated successfully, but these errors were encountered:
I'm not sure whether compiler propagate restrict annotations in the backend when doing
void foo(double* __restrict__ b) { double* a = b; }
If they don't, adding explicit annotations might help a bit with optimizations.
Sorry, something went wrong.
No branches or pull requests
As mentioned in #7, it might be beneficial to declare all pointers in all functions as
__restrict__
. To be tested in a new PRThe text was updated successfully, but these errors were encountered: