Skip to content

Commit 98b5490

Browse files
authored
Use current system architecture in conda environment creation command (#7447)
This fixes a conda environment creation command to support both `x86_64` and `aarch64` systems. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - Matthew Murray (https://github.com/Matt711) - Simon Adorf (https://github.com/csadorf) - Divye Gala (https://github.com/divyegala) URL: #7447
1 parent d1a2585 commit 98b5490

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

BUILD.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ It is recommended to use conda for environment/package management. If doing so,
6464

6565
```bash
6666
conda create -n cuml_dev python=3.13
67-
conda env update -n cuml_dev --file=conda/environments/all_cuda-130_arch-x86_64.yaml
67+
conda env update -n cuml_dev --file=conda/environments/all_cuda-130_arch-$(uname -m).yaml
6868
conda activate cuml_dev
6969
```
7070

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ methods to run clang-tidy on your local machine: using Docker or Conda.
144144
1. Navigate to the repository root directory.
145145
2. Create and activate the needed conda environment:
146146
```bash
147-
conda env create --yes -n cuml-clang-tidy -f conda/environments/clang_tidy_cuda-130_arch-x86_64.yaml
147+
conda env create --yes -n cuml-clang-tidy -f conda/environments/clang_tidy_cuda-130_arch-$(uname -m).yaml
148148
conda activate cuml-clang-tidy
149149
```
150150
3. Generate the compile command database with

0 commit comments

Comments
 (0)