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
Question:
/usr/local/cuda/include/cub/agent/agent_batch_memcpy.cuh(896): error: expected an identifier 32 ^
Code location:
constexpr uint32_t WARPS_PER_BLOCK = BLOCK_THREADS / CUB_PTX_WARP_THREADS;
I think the problem may be caused by the conflict between const variable WARPS_PER_BLOCK and macro definition #define WARPS_PER_BLOCK = 32
so, WARPS_PER_BLOCK modify to WARPS_PER_BLOCK_, I have resolved the error
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Question:
Code location:
I think the problem may be caused by the conflict between const variable WARPS_PER_BLOCK and macro definition #define WARPS_PER_BLOCK = 32
so, WARPS_PER_BLOCK modify to WARPS_PER_BLOCK_,
I have resolved the error
The text was updated successfully, but these errors were encountered: