[Bugfix] Key CUDA graph dedup signatures on kernel function identity (#37657)

This commit is contained in:
cctry
2026-09-02 14:24:31 -07:00
committed by GitHub
parent 19c7679e9e
commit ad6e830858
@@ -107,6 +107,7 @@ def kernel_node_payload(node):
params = checkCudaErrors(cuda_drv.cuGraphKernelNodeGetParams(node))
return (
kernel_name(params),
(int(params.kern), int(params.func)),
(int(params.gridDimX), int(params.gridDimY), int(params.gridDimZ)),
(int(params.blockDimX), int(params.blockDimY), int(params.blockDimZ)),
int(params.sharedMemBytes),