Skip to content

Commit

Permalink
Fix qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber committed Jan 10, 2025
1 parent eac776c commit 41c62b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cub/cub/agent/agent_spmv_orig.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ struct AgentSpmv
CTA_SYNC();

// Search for the thread's starting coordinate within the merge tile
thrust::counting_iterator<OffsetT> tile_nonzero_indices(tile_start_coord.y);
THRUST_NS_QUALIFIER::counting_iterator<OffsetT> tile_nonzero_indices(tile_start_coord.y);
CoordinateT thread_start_coord;

MergePathSearch(
Expand Down Expand Up @@ -692,7 +692,7 @@ struct AgentSpmv
// Search our starting coordinates
OffsetT diagonal = (tile_idx + threadIdx.x) * TILE_ITEMS;
CoordinateT tile_coord;
thrust::counting_iterator<OffsetT> nonzero_indices(0);
THRUST_NS_QUALIFIER::counting_iterator<OffsetT> nonzero_indices(0);

// Search the merge path
MergePathSearch(
Expand Down

0 comments on commit 41c62b9

Please sign in to comment.