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
typedef struct __align__(4) { unsigned char r, g, b, a; } uchar4_aligned;
causes compile error (Please see zjin-lcf/HeCBench#46 for more details).
Is the following recommended for nvcc, hipcc, and clang++ ?
typedef struct { unsigned char r, g, b, a; } uchar4_aligned __attribute__((aligned(4)));
The text was updated successfully, but these errors were encountered:
The __align__ has been broken for a while but it used to work until some patch broke it. There's a ticket for it here.
__align__
Sorry, something went wrong.
linehill
No branches or pull requests
causes compile error (Please see zjin-lcf/HeCBench#46 for more details).
Is the following recommended for nvcc, hipcc, and clang++ ?
The text was updated successfully, but these errors were encountered: