Skip to content
New issue

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

Adds new virtual shared memory facility to DeviceMergeSort #1117

Merged
merged 9 commits into from
Dec 6, 2023
4 changes: 0 additions & 4 deletions cub/cub/agent/agent_merge_sort.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,6 @@ struct AgentBlockSort
static constexpr int BLOCK_THREADS = Policy::BLOCK_THREADS;
static constexpr int ITEMS_PER_THREAD = Policy::ITEMS_PER_THREAD;
static constexpr int ITEMS_PER_TILE = Policy::ITEMS_PER_TILE;
static constexpr int SHARED_MEMORY_SIZE =
static_cast<int>(sizeof(TempStorage));

//---------------------------------------------------------------------
// Per thread data
Expand Down Expand Up @@ -428,8 +426,6 @@ struct AgentMerge
static constexpr int BLOCK_THREADS = Policy::BLOCK_THREADS;
static constexpr int ITEMS_PER_THREAD = Policy::ITEMS_PER_THREAD;
static constexpr int ITEMS_PER_TILE = Policy::ITEMS_PER_TILE;
static constexpr int SHARED_MEMORY_SIZE =
static_cast<int>(sizeof(TempStorage));

//---------------------------------------------------------------------
// Per thread data
Expand Down
Loading