Skip to content

Commit 527f137

Browse files
authored
Merge pull request #321 from leofang/conda_install
Add conda installation instructions
2 parents 474ec97 + 40edcd7 commit 527f137

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

cuda_core/docs/source/install.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,21 @@ and likewise use `[cu11]` for CUDA 11.
2525
Note that using `cuda.core` with NVRTC or nvJitLink installed from PyPI via `pip install` is currently
2626
not supported. This will be fixed in a future release.
2727

28+
## Installing from Conda (conda-forge)
29+
30+
Same as above, `cuda.core` can be installed in a CUDA 11 or 12 environment. For example with CUDA 12:
31+
```console
32+
$ conda install -c conda-forge cuda-core cuda-version=12
33+
```
34+
and likewise use `cuda-version=11` for CUDA 11.
35+
36+
Note that to use `cuda.core` with nvJitLink installed from conda-forge currently requires it to
37+
be separately installed:
38+
```console
39+
$ conda install -c conda-forge libnvjitlink
40+
```
41+
(can be combined with the command above). This extra step will be removed in a future release.
42+
2843
## Installing from Source
2944

3045
```console

cuda_core/docs/source/release/0.1.1-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Released on Dec 20, 2024
1616
- Add a `cuda.core.experimental.system` module for querying system- or process- wide information.
1717
- Add `LaunchConfig.cluster` to support thread block clusters on Hopper GPUs.
1818

19-
## Enchancements
19+
## Enhancements
2020

2121
- The internal handle held by `ObjectCode` is now lazily initialized upon first touch.
2222
- Support TCC devices with a default synchronous memory resource to avoid the use of memory pools.

0 commit comments

Comments
 (0)