Skip to content

Commit

Permalink
Apply John's simplifications
Browse files Browse the repository at this point in the history
Co-authored-by: jakirkham <[email protected]>
  • Loading branch information
matthewfeickert and jakirkham authored Jan 9, 2025
1 parent 1cf8a66 commit 7b26463
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions docs/maintainer/knowledge_base.md
Original file line number Diff line number Diff line change
Expand Up @@ -2010,6 +2010,8 @@ to build CUDA-enabled packages.
See the [relevant CUDA user guides](https://github.com/conda-forge/cuda-feedstock/blob/main/recipe/README.md)
for more information.

If a feedstock does need access to additional resource (like GPUs), please see the following section (#packages-that-require-a-gpu-or-long-running-builds)

<a id="testing-the-packages"></a>

### Testing the packages
Expand Down
4 changes: 2 additions & 2 deletions docs/user/tipsandtricks.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ In conda-forge, some packages are available with GPU support. These packages not
In order to override the default behavior, a user can set the environment variable `CONDA_OVERRIDE_CUDA` like below to install TensorFlow with GPU support even on a machine with CPU only.

```shell-session
CONDA_OVERRIDE_CUDA="<CUDA version>" conda install "tensorflow==2.7.0=cuda<version>*" -c conda-forge
CONDA_OVERRIDE_CUDA="<CUDA version>" conda install tensorflow -c conda-forge
# OR
CONDA_OVERRIDE_CUDA="<CUDA version>" mamba install "tensorflow==2.7.0=cuda<version>*" -c conda-forge
CONDA_OVERRIDE_CUDA="<CUDA version>" mamba install tensorflow -c conda-forge
```

:::note
Expand Down

0 comments on commit 7b26463

Please sign in to comment.