This package provides the CUDA Profiling Tools Interface (CUPTI) runtime libraries specifically for CUDA 11.x. It's a low-level dependency, typically used by higher-level deep learning frameworks like PyTorch and TensorFlow to enable GPU acceleration and profiling capabilities. The current version is 11.8.87. Releases are tied to NVIDIA CUDA Toolkit updates.
pip install nvidia-cuda-cupti-cu11No compatibility data collected yet for this library.
This package itself does not expose direct Python symbols for import. Its successful installation enables other libraries, like PyTorch, to utilize CUDA. This quickstart demonstrates how to verify CUDA availability using PyTorch, which indirectly confirms the underlying CUDA libraries are functioning.
Align all `nvidia-cuda-*` packages (e.g., `nvidia-cuda-cupti-cu11`, `nvidia-cuda-runtime-cu11`) to the same CUDA major version (e.g., `cu11` for CUDA 11.x) that your deep learning framework expects.
Do not attempt to import this package directly in Python code. Its presence is verified indirectly when other CUDA-dependent libraries function correctly.
Refer to the documentation of your deep learning framework (e.g., PyTorch, TensorFlow) for a list of recommended `nvidia-cuda-*` packages required for full CUDA functionality.
Prefer either a purely PyPI-based CUDA environment (if your framework supports it) or a system-wide CUDA Toolkit. Avoid installing both or ensure proper isolation (e.g., virtual environments) and careful management of library paths if combining them.
Ensure the CUDA Toolkit is fully installed and the directory containing `libcupti.so` (typically `CUDA_PATH/extras/CUPTI/lib64` on Linux or `CUDA_PATH\extras\CUPTI\libx64` on Windows) is added to your `LD_LIBRARY_PATH` (Linux) or `PATH` (Windows) environment variable. Verify compatibility between your framework and CUDA versions.
Locate the actual `libcupti.so` file on your system (e.g., `find /usr/local/cuda -name 'libcupti.so*'`). If a different version exists, create a symbolic link to the expected version (e.g., `sudo ln -s /path/to/libcupti.so.INSTALLED_VERSION /path/to/libcupti.so.EXPECTED_VERSION`). Ensure the directory containing the library is in `LD_LIBRARY_PATH` (Linux) or `PATH` (Windows).
Set the `LD_LIBRARY_PATH` environment variable to include the path to the `libcupti.so` file (e.g., `export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/extras/CUPTI/lib64`). In Conda environments, ensure `cudatoolkit` and `cuda-tools` packages are installed and compatible with your PyTorch version.
No dependency data recorded yet.