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: README.md
+14-3Lines changed: 14 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -79,9 +79,18 @@ Choose the installation method that meets your environment needs.
79
79
80
80
#### Python Wheel File Installation
81
81
82
-
Download the appropriate .whl file for your computer architecture, Python and CUDA version from the release assets of current CV-CUDA release. Release information of all CV-CUDA releases can be found [here][CV-CUDA GitHub Releases]. Once downloaded, execute the `pip install` command to install the Python wheel. For example:
82
+
Check pypi.org projects for support for your platform of choice, [cvcuda-cu11][cvcuda-cu11] and [cvcuda-cu12][cvcuda-cu12] for CUDA 11 and CUDA 12, respectively.
83
+
84
+
Use the following command to install the latest available version:
85
+
```shell
86
+
pip install cvcuda_<cu_ver>
87
+
```
88
+
89
+
where <cu_ver> is the desired CUDA version.
90
+
91
+
Alternatively, download the appropriate .whl file for your computer architecture, Python and CUDA version from the release assets of current CV-CUDA release. Release information of all CV-CUDA releases can be found [here][CV-CUDA GitHub Releases]. Once downloaded, execute the `pip install` command to install the Python wheel. For example:
where `<cu_ver>` is the desired CUDA version, `<x.x.x>` is the CV-CUDA release version, `<py_ver>` is the desired Python version and `<arch>` is the desired architecture.
@@ -249,7 +258,7 @@ The new Python wheels for PyPI compliance must be built within the ManyLinux 201
249
258
250
259
The built wheels can still be installed using `pip`. For example, to install the Python wheel built for CUDA 12.x, Python 3.10 and 3.11 on Linux x86_64 systems:
Copy file name to clipboardExpand all lines: docs/sphinx/installation.rst
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
..
2
-
# SPDX-FileCopyrightText: Copyright (c) 2022-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
+
# SPDX-FileCopyrightText: Copyright (c) 2022-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3
3
# SPDX-License-Identifier: Apache-2.0
4
4
#
5
5
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -74,11 +74,19 @@ You can download the CV-CUDA tar, deb or wheel packages from `the asset section
74
74
75
75
* Python Wheel File Installation
76
76
77
-
Download the appropriate .whl file for your computer architecture, Python and CUDA version from `the asset section of the latest release <https://github.com/CVCUDA/CV-CUDA/releases>`_
77
+
Check pypi.org projects for support for your platform of choice, `cvcuda-cu11 <https://pypi.org/project/cvcuda-cu11/>`_ and `cvcuda-cu12 <https://pypi.org/project/cvcuda-cu12/>`_ for CUDA 11 and CUDA 12, respectively.
78
+
Use the following command to install the latest available version::
79
+
80
+
pip install cvcuda_<cu_ver>
81
+
82
+
where <cu_ver> is the desired CUDA version.
83
+
84
+
85
+
Alternatively, download the appropriate .whl file for your computer architecture, Python and CUDA version from `the asset section of the latest release <https://github.com/CVCUDA/CV-CUDA/releases>`_
78
86
79
87
Execute the following command to install appropriate CV-CUDA Python wheel ::
where <cu_ver> is the desired CUDA version, <x.x.x> the CV-CUDA release version, <py_ver> the desired Python version and <arch> the desired architecture.
Copy file name to clipboardExpand all lines: docs/sphinx/relnotes/v0.14.0-beta.rst
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,11 @@ v0.14.0-beta
22
22
Release Highlights
23
23
------------------
24
24
25
+
Python x86_64 wheels are now available on PyPi, `cvcuda-cu11 <https://pypi.org/project/cvcuda-cu11/>`_ and `cvcuda-cu12 <https://pypi.org/project/cvcuda-cu12/>`_ for CUDA 11 and CUDA 12, respectively ::
26
+
27
+
pip install cvcuda-cu<CUDA_VERSION>
28
+
29
+
25
30
CV-CUDA v0.14.0 includes the following changes:
26
31
27
32
* **New Features**:
@@ -52,6 +57,8 @@ Compatibility and Known Limitations
52
57
53
58
* We do not provide SBSA-compatible aarch64_cu11 packages yet, this will be addressed in an upcoming release.
54
59
60
+
* Only x86_64 wheels are available on PyPi as of 02/28/25. SBSA/Grace CUDA 12 wheels will be added shortly.
61
+
55
62
For the full list, see main README on `CV-CUDA GitHub <https://github.com/CVCUDA/CV-CUDA>`_.
0 commit comments