Skip to content
Open
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
7 changes: 3 additions & 4 deletions cuda_core/cuda/core/_memory/_virtual_memory_resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,9 @@ class VirtualMemoryResourceOptions:
location_type: :obj:`~_memory.VirtualMemoryLocationType` | str
Controls the location of the allocation.
handle_type: :obj:`~_memory.VirtualMemoryHandleType` | str
Export handle type for the physical allocation. Use
``"posix_fd"`` on Linux if you plan to
import/export the allocation (required for cuMemRetainAllocationHandle).
Use `None` if you don't need an exportable handle.
Export handle type for the physical allocation. Use ``"posix_fd"`` on
Linux if you plan to import/export the allocation. Use `None` if you
don't need an exportable handle.
gpu_direct_rdma: bool
Hint that the allocation should be GDR-capable (if supported).
granularity: :obj:`~_memory.VirtualMemoryGranularityType` | str
Expand Down
Loading