From f3239754a78ed0e840ffcfe52986d39799aa132d Mon Sep 17 00:00:00 2001 From: James Lamb Date: Mon, 17 Jun 2024 17:04:50 -0500 Subject: [PATCH 1/2] fix library name in docs ('cuvs' not 'pycuvs') --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a932b7dd4..2c29fce7f 100755 --- a/README.md +++ b/README.md @@ -36,19 +36,21 @@ cuVS comes with pre-built packages that can be installed through [conda](https:/ | Python | C++ | C | |--------|-----|---| -| `pycuvs`| `libcuvs` | `libcuvs_c` | +| `cuvs`| `libcuvs` | `libcuvs_c` | ### Stable release -It is recommended to use [mamba](https://mamba.readthedocs.io/en/latest/installation/mamba-installation.html) to install the desired packages. The following command will install the Python package. You can substitute `pycuvs` for any of the packages in the table above: +It is recommended to use [mamba](https://mamba.readthedocs.io/en/latest/installation/mamba-installation.html) to install the desired packages. The following command will install the Python package. You can substitute `cuvs` for any of the packages in the table above: + ```bash -mamba install -c conda-forge -c nvidia -c rapidsai pycuvs +mamba install -c conda-forge -c nvidia -c rapidsai cuvs ``` ### Nightlies If installing a version that has not yet been released, the `rapidsai` channel can be replaced with `rapidsai-nightly`: + ```bash -mamba install -c conda-forge -c nvidia -c rapidsai-nightly pycuvs=24.08 +mamba install -c conda-forge -c nvidia -c rapidsai-nightly cuvs=24.08 ``` Please see the [Build and Install Guide](docs/source/build.md) for more information on installing cuVS and building from source. From fcab49c7c87c0dac5b725e7353a0f9e526eb0058 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Mon, 17 Jun 2024 17:29:32 -0500 Subject: [PATCH 2/2] update libcuvs package name too --- README.md | 6 +++--- docs/source/build.rst | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2c29fce7f..b84b8592d 100755 --- a/README.md +++ b/README.md @@ -34,9 +34,9 @@ cuVS contains state-of-the-art implementations of several algorithms for running cuVS comes with pre-built packages that can be installed through [conda](https://conda.io/projects/conda/en/latest/user-guide/getting-started.html#managing-python). Different packages are available for the different languages supported by cuVS: -| Python | C++ | C | -|--------|-----|---| -| `cuvs`| `libcuvs` | `libcuvs_c` | +| Python | C/C++ | +|--------|-----------------------------| +| `cuvs` | `libcuvs`, `libcuvs-static` | ### Stable release diff --git a/docs/source/build.rst b/docs/source/build.rst index dbd882660..f959fc288 100644 --- a/docs/source/build.rst +++ b/docs/source/build.rst @@ -50,7 +50,7 @@ C Package .. code-block:: bash - mamba install -c rapidsai -c conda-forge -c nvidia libcuvs_c cuda-version=12.0 + mamba install -c rapidsai -c conda-forge -c nvidia libcuvs cuda-version=12.0 Python Package ~~~~~~~~~~~~~~