Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cuda_bindings/cuda/bindings/driver.pyx.in
Original file line number Diff line number Diff line change
Expand Up @@ -7952,7 +7952,7 @@ cdef class CUgraphConditionalHandle:

{{if 'CUlaunchAttributeID_enum' in found_types}}

class CUlaunchAttributeID(_FastEnum):
class CUkernelNodeAttrID(_FastEnum):
"""
Launch attributes enum; used as id field of
:py:obj:`~.CUlaunchAttribute`
Expand Down Expand Up @@ -8184,7 +8184,7 @@ class CUlaunchAttributeID(_FastEnum):
{{endif}}
{{if 'CUlaunchAttributeID_enum' in found_types}}

class CUlaunchAttributeID(_FastEnum):
class CUstreamAttrID(_FastEnum):
"""
Launch attributes enum; used as id field of
:py:obj:`~.CUlaunchAttribute`
Expand Down
4 changes: 2 additions & 2 deletions cuda_bindings/cuda/bindings/runtime.pyx.in
Original file line number Diff line number Diff line change
Expand Up @@ -6260,7 +6260,7 @@ class cudaGLMapFlags(_FastEnum):
{{endif}}
{{if 'cudaLaunchAttributeID' in found_types}}

class cudaLaunchAttributeID(_FastEnum):
class cudaStreamAttrID(_FastEnum):
"""
Launch attributes enum; used as id field of
:py:obj:`~.cudaLaunchAttribute`
Expand Down Expand Up @@ -6491,7 +6491,7 @@ class cudaLaunchAttributeID(_FastEnum):
{{endif}}
{{if 'cudaLaunchAttributeID' in found_types}}

class cudaLaunchAttributeID(_FastEnum):
class cudaKernelNodeAttrID(_FastEnum):
"""
Launch attributes enum; used as id field of
:py:obj:`~.cudaLaunchAttribute`
Expand Down
Loading