NVIDIA NVSHMEM (CUDA 13)

3.6.5 · active · verified Thu Apr 09

nvidia-nvshmem-cu13 is a binary distribution package providing the NVIDIA NVSHMEM library, compiled specifically for CUDA Toolkit 13.x. NVSHMEM is a communication library that creates a global address space, enabling efficient and scalable data exchange across NVIDIA GPU clusters. This package itself does not contain Python-level bindings; instead, it serves as a foundational runtime dependency for other Python libraries (like `nvshmem-python`, Dask-CUDA, or CuPy) that utilize NVSHMEM's underlying C/C++ capabilities. The current version is 3.6.5.

Warnings

Install

Imports

Quickstart

This quickstart clarifies that `nvidia-nvshmem-cu13` is a binary distribution and does not offer direct Python APIs. Its primary function is to satisfy the underlying native library dependency for other Python libraries that enable NVSHMEM functionality.

# This package (nvidia-nvshmem-cu13) provides native NVSHMEM binaries for CUDA 13.
# It does not expose direct Python modules for import or direct usage.
# Its role is to serve as a runtime dependency for other Python libraries
# (e.g., nvshmem-python, Dask-CUDA, CuPy) that internally leverage NVSHMEM
# for high-performance GPU-aware communication.

print("`nvidia-nvshmem-cu13` is installed as a system-level dependency.")
print("Python applications will use other libraries (e.g., `nvshmem-python`)")
print("that link against the NVSHMEM binaries provided by this package.")
print("\nTo truly 'use' NVSHMEM, you would typically write code using a library like `nvshmem-python`: ")
print("e.g., `pip install nvshmem-python` and then `import nvshmem; nvshmem.init()`")

# This quickstart does not include actual NVSHMEM operations because
# this specific package does not provide a direct Python API.

view raw JSON →