OpenMM 8.2 release candidate

The functionality of OpenMM will (eventually) include everything that one would need to run modern molecular simulation.
POST REPLY
User avatar
Peter Eastman
Posts: 2593
Joined: Thu Aug 09, 2007 1:25 pm

OpenMM 8.2 release candidate

Post by Peter Eastman » Tue Oct 29, 2024 1:30 pm

The release candidate of 8.2 is now up. See viewtopicPhpbb.php?f=161&t=18880&p=0&st ... c20e6a684e for details about what's new in it. You can install it with conda or mamba using the command

Code: Select all

mamba install -c conda-forge/label/openmm_rc -c conda-forge openmm
Unfortunately, we've concluded it's currently impossible to distribute the new HIP platform through conda-forge. We therefore have added pip as an alternate distribution mechanism. We had been working on it already, and this led us to accelerate it. You can install the release candidate with pip using the command

Code: Select all

pip install --pre openmm
That will install the OpenCL, CPU, and Reference platforms. To also get CUDA use the command

Code: Select all

pip install --pre openmm[cuda12]
To also get HIP, use the command

Code: Select all

pip install --pre openmm[hip6]
The CUDA package automatically installs all required libraries from the CUDA toolkit. For HIP, you need to first install the HIP or ROCm framework by following the instructions at https://rocm.docs.amd.com.

Please try it out and let us know how it works for you, especially the pip installers.

User avatar
Emilio Galllicchio
Posts: 14
Joined: Fri Feb 24, 2012 11:49 am

Re: OpenMM 8.2 release candidate

Post by Emilio Galllicchio » Wed Oct 30, 2024 6:17 am

All good with the openmm and openmm[hip6] pip packages and AToM-OpenMM on Ubuntu 22.04.4 LTS x86_64 with AMD Radeon rx 6650 xt and Radeon rx 6750 xt GPUs. This is with ROCM 6.2.2, and the latest amdgpu driver, both installed using the Ubuntu package manager.

Thanks!

POST REPLY