summaryrefslogtreecommitdiffstats
path: root/tools/gfx/cuda/cuda-command-queue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gfx/cuda/cuda-command-queue.cpp')
-rw-r--r--tools/gfx/cuda/cuda-command-queue.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/tools/gfx/cuda/cuda-command-queue.cpp b/tools/gfx/cuda/cuda-command-queue.cpp
index 0c17a418e..4b0ab7d94 100644
--- a/tools/gfx/cuda/cuda-command-queue.cpp
+++ b/tools/gfx/cuda/cuda-command-queue.cpp
@@ -93,12 +93,6 @@ void CommandQueueImpl::dispatchCompute(int x, int y, int z)
UInt threadGroupSize[3];
programLayout->getKernelThreadGroupSize(kernelId, threadGroupSize);
- int sharedSizeInBytes;
- cuFuncGetAttribute(
- &sharedSizeInBytes,
- CU_FUNC_ATTRIBUTE_SHARED_SIZE_BYTES,
- currentPipeline->shaderProgram->cudaKernel);
-
// Copy global parameter data to the `SLANG_globalParams` symbol.
{
CUdeviceptr globalParamsSymbol = 0;
@@ -144,7 +138,7 @@ void CommandQueueImpl::dispatchCompute(int x, int y, int z)
int(threadGroupSize[0]),
int(threadGroupSize[1]),
int(threadGroupSize[2]),
- sharedSizeInBytes,
+ 0,
stream,
nullptr,
extraOptions);