File tree 2 files changed +16
-1
lines changed 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,21 @@ and likewise use `[cu11]` for CUDA 11.
25
25
Note that using ` cuda.core ` with NVRTC or nvJitLink installed from PyPI via ` pip install ` is currently
26
26
not supported. This will be fixed in a future release.
27
27
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
+
28
43
## Installing from Source
29
44
30
45
``` console
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Released on Dec 20, 2024
16
16
- Add a ` cuda.core.experimental.system ` module for querying system- or process- wide information.
17
17
- Add ` LaunchConfig.cluster ` to support thread block clusters on Hopper GPUs.
18
18
19
- ## Enchancements
19
+ ## Enhancements
20
20
21
21
- The internal handle held by ` ObjectCode ` is now lazily initialized upon first touch.
22
22
- Support TCC devices with a default synchronous memory resource to avoid the use of memory pools.
You can’t perform that action at this time.
0 commit comments