Skip to content

Commit 81c462a

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 45dc235 + ab5c0f8 commit 81c462a

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

_includes/selector.html

+4-1
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,10 @@
657657
},
658658
getCondaNotes() {
659659
var notes = [];
660-
notes = [...notes, "RAPIDS currently doesn't support <code>channel_priority: strict</code>; use <code>channel_priority: flexible</code> instead"];
660+
if (this.active_conda_cuda_ver.startsWith("11")) {
661+
notes = [...notes, "RAPIDS on CUDA 11 doesn't support <code>channel_priority: strict</code>; use <code>channel_priority: flexible</code> instead"];
662+
}
663+
661664
if (this.active_packages.length === 1 && this.active_packages[0] === "Standard") {
662665
var pkgs_html = this.rapids_meta_pkgs.map(pkg => "<code>" + pkg + "</code>").join(", ");
663666
notes = [...notes, "The <code>Standard</code> selection contains the following packages:<br>" + pkgs_html];

install/index.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,13 @@ bash Miniforge3-$(uname)-$(uname -m).sh
215215

216216
**3. Start Conda.** Open a new terminal window, which should now show Conda initialized.
217217

218-
**4. Check Conda Configuration.** Installing RAPIDS requires you to use `channel_priority: flexible`. You can check this and change it, if required, by doing:
218+
**4. Check Conda Configuration.** Installing RAPIDS may require you to use `channel_priority: flexible`.
219+
220+
If you are installing RAPIDS with CUDA 12 or greater, then you can use either `strict` or `flexible` channel priority.
221+
222+
If you are install RAPIDS with CUDA 11, then you must set `channel_priority: flexible`.
223+
224+
You can check this and change it, if required, by doing:
219225
```sh
220226
conda config --show channel_priority
221227
conda config --set channel_priority flexible

resources/github-actions.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ As an example, `rapids-print-env` is used to print common environment informatio
123123

124124
## Downloading CI Artifacts
125125

126-
Artifacts from both pull-requests and branch builds can be accessed on the Github UI for the specific workflow run, found in the Actions tab of the repository.
126+
Artifacts from both pull-requests and branch builds can be accessed on the GitHub UI for the specific workflow run, found in the Actions tab of the repository.
127127

128128
![](/assets/images/workflow-ui.png)
129129

@@ -133,7 +133,7 @@ There is also a link provided in the `Run actions/upload-artifact@v4` step of ev
133133

134134
This link downloads the required artifact as a zip file.
135135

136-
This can also be done using `ghcli` using the following command to download the artifact. This command also unzips the artifact to the destination location:
136+
This can also be done using the following `gh` CLI command to download the artifact. This command also unzips the artifact to the destination location:
137137

138138
```sh
139139
gh run download <workflow-run-id> --repo <repo-name> --name <artifact-name> --dir <destination-directory>
@@ -147,9 +147,9 @@ gh run download 14437867406 --repo rapidsai/rmm --name rmm_conda_python_cuda11_p
147147

148148
## Using Conda CI Artifacts Locally
149149

150-
The artifacts that result from running `conda build` are conda channels. RAPIDS' CI system uploads these conda channels to GitHub Artifacts as zipfiles.
150+
The artifacts that result from running `conda build` are conda channels. RAPIDS' CI system uploads these conda channels to GitHub Artifacts as zip files.
151151

152-
The packages in the conda channel can be used by downloading the artifact to your local filesystem using `ghcli` and using the resulting path in your conda commands.
152+
The packages in the conda channel can be used by downloading the artifact to your local filesystem using `gh` CLI and using the resulting path in your conda commands.
153153

154154
For example, the following snippet will download an artifact for `librmm` from workflow run ID `14437867406` and install it into the active conda environment:
155155

@@ -163,9 +163,9 @@ Note: Make sure you have the GitHub CLI (`gh`) installed and authenticated on yo
163163

164164
## Using Wheel CI Artifacts Locally
165165

166-
RAPIDS' CI system compresses the wheels that it builds into zipfiles and uploads them to GitHub Artifacts.
166+
RAPIDS' CI system compresses the wheels that it builds into zip files and uploads them to GitHub Artifacts.
167167

168-
The wheels can be used byby downloading the artifact to your local filesystem using `ghcli` and using the resulting path in your pip commands.
168+
The wheels can be used by downloading the artifact to your local filesystem using `gh` CLI and using the resulting path in your pip commands.
169169

170170
For example, the following snippet will download an artifact for `librmm` and install it into the active conda environment:
171171

0 commit comments

Comments
 (0)