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
cuda_programming/03_sum_reduction/diverged/sumReduction.cu
Line 75 in 8711be0
Shouldn't the second call be <<<1, GRID_SIZE>>> instead of <<<1, TB_SIZE>>>? I think GRID_SIZE is the number of partial sums.
The text was updated successfully, but these errors were encountered:
I had the same thoughts
Sorry, something went wrong.
I have the same issue, i think it should be <<<1, GRID_SIZE>>>, and for the later version <<<1, GRID_SIZE/2>>> for preprocessing.
No branches or pull requests
cuda_programming/03_sum_reduction/diverged/sumReduction.cu
Line 75 in 8711be0
Shouldn't the second call be <<<1, GRID_SIZE>>> instead of <<<1, TB_SIZE>>>? I think GRID_SIZE is the number of partial sums.
The text was updated successfully, but these errors were encountered: