Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Commit

Permalink
CUB: Re-apply uninitialized variable warning suppression from commit
Browse files Browse the repository at this point in the history
46b0939 that was accidentally overwritten when
integrating CUB 1.7.5
Bug 2017697
Bug 200355591
git-commit 0ce5383cf25a33a35fd0df1237a06b85e4846e77
git-author Bryce Adelstein Lelbach aka wash <[email protected]>

[git-p4: depot-paths = "//sw/gpgpu/thrust/": change = 23595311]
  • Loading branch information
brycelelbach committed Feb 14, 2018
1 parent d4b6eaa commit 8b5620a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ struct ScanTileState<T, false>
cudaError_t error = cudaSuccess;
do
{
void* allocations[3];
void* allocations[3] = { NULL, NULL, NULL };
size_t allocation_sizes[3];

allocation_sizes[0] = (num_tiles + TILE_STATUS_PADDING) * sizeof(StatusWord); // bytes needed for tile status descriptors
Expand Down

0 comments on commit 8b5620a

Please sign in to comment.