Skip to content
Closed
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
3 changes: 2 additions & 1 deletion cuda_bindings/cuda/bindings/driver.pyx.in
Original file line number Diff line number Diff line change
Expand Up @@ -4822,7 +4822,8 @@ class CUmemPool_attribute(IntEnum):

#: (value type = int) Allow cuMemAllocAsync to insert new stream
#: dependencies in order to establish the stream ordering required to
#: reuse a piece of memory released by cuFreeAsync (default enabled).
#: reuse a piece of memory released by cuMemFreeAsync (default
#: enabled).
CU_MEMPOOL_ATTR_REUSE_ALLOW_INTERNAL_DEPENDENCIES = cydriver.CUmemPool_attribute_enum.CU_MEMPOOL_ATTR_REUSE_ALLOW_INTERNAL_DEPENDENCIES{{endif}}
{{if 'CU_MEMPOOL_ATTR_RELEASE_THRESHOLD' in found_values}}

Expand Down
2 changes: 1 addition & 1 deletion cuda_bindings/docs/source/module/driver.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4851,7 +4851,7 @@ Data types used by CUDA driver
.. autoattribute:: cuda.bindings.driver.CUmemPool_attribute.CU_MEMPOOL_ATTR_REUSE_ALLOW_INTERNAL_DEPENDENCIES


(value type = int) Allow cuMemAllocAsync to insert new stream dependencies in order to establish the stream ordering required to reuse a piece of memory released by cuFreeAsync (default enabled).
(value type = int) Allow cuMemAllocAsync to insert new stream dependencies in order to establish the stream ordering required to reuse a piece of memory released by cuMemFreeAsync (default enabled).


.. autoattribute:: cuda.bindings.driver.CUmemPool_attribute.CU_MEMPOOL_ATTR_RELEASE_THRESHOLD
Expand Down
Loading