Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Note the current conda-forge CUDA version. #1972

Merged
merged 2 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ Change Log

* Prevent ``missing 1 required positional argument: 'kT'`` errors when using NEC integrators
(`#1965 <https://github.com/glotzerlab/hoomd-blue/pull/1965>`__)
* Note the current version of CUDA in the micromamba installation instructions
(`#1972 <https://github.com/glotzerlab/hoomd-blue/pull/1972>`__)


5.0.0 (2024-12-02)
Expand Down
14 changes: 7 additions & 7 deletions INSTALLING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,13 @@ appropriate package. Override this and force the GPU enabled package installatio

.. code-block:: bash

export CONDA_OVERRIDE_CUDA="12.0"
micromamba install "hoomd=5.0.0=*gpu*" "cuda-version=12.0"
export CONDA_OVERRIDE_CUDA="12.6"
micromamba install "hoomd=5.0.0=*gpu*" "cuda-version=12.6"

.. note::

conda-forge_ may update to a new version of CUDA. If the above command results in an error,
replace ``12.6`` with the version noted in micromamba's error message.

Similarly, you can force CPU-only package installation with:

Expand All @@ -44,8 +49,3 @@ Similarly, you can force CPU-only package installation with:

CUDA 11.8 compatible packages are also available. Replace "12.0" with "11.8" above when
installing HOOMD-blue on systems with CUDA 11 compatible drivers.

.. note::

Run time compilation is no longer available on conda-forge builds starting with HOOMD-blue
4.7.0.
Loading