You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/libcudacxx/runtime/memory_pools.rst
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Memory pool objects implement the :ref:`cuda::memory_resource <libcudacxx-extend
9
9
10
10
For the full memory resource model and property system, see :ref:`Memory Resources (Extended API) <libcudacxx-extended-api-memory-resources>`.
11
11
12
-
Host memory pools are supported on CUDA 12.6 and later. Managed memory pools are supported on CUDA 13.0 and later and are not supported on Windows. For those cases use :ref:`cuda::mr::legacy_pinned_memory_resource <libcudacxx-memory-resource-legacy-pinned-memory-resource>` and :ref:`cuda::mr::legacy_managed_memory_resource <libcudacxx-memory-resource-legacy-managed-memory-resource>` instead.
12
+
Host memory pools are supported on CUDA 12.9 and later. Managed memory pools are supported on CUDA 13.0 and later and are not supported on Windows. For those cases use :ref:`cuda::mr::legacy_pinned_memory_resource <libcudacxx-memory-resource-legacy-pinned-memory-resource>` and :ref:`cuda::mr::legacy_managed_memory_resource <libcudacxx-memory-resource-legacy-managed-memory-resource>` instead.
13
13
14
14
``cuda::device_memory_pool``
15
15
----------------------------
@@ -102,7 +102,7 @@ Availability: CCCL 3.2.0 / CUDA 13.2 (requires CTK 13.0+). Not supported on Wind
102
102
103
103
``cuda::pinned_memory_pool`` allocates pinned (page-locked) host memory using CUDA's memory pool API. Pinned memory enables faster host-to-device transfers and can be accessed from all devices. The pool can be optionally created for a specific host NUMA node.
104
104
105
-
Availability: CCCL 3.2.0 / CUDA 13.2 (requires CTK 12.6+)
105
+
Availability: CCCL 3.2.0 / CUDA 13.2 (requires CTK 12.9+)
106
106
107
107
Example:
108
108
@@ -137,7 +137,7 @@ Example:
137
137
138
138
``cuda::pinned_memory_pool_ref`` is a non-owning reference to a pinned memory pool.
139
139
140
-
Availability: CCCL 3.2.0 / CUDA 13.2 (requires CTK 12.6+)
140
+
Availability: CCCL 3.2.0 / CUDA 13.2 (requires CTK 12.9+)
0 commit comments