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

Support HIP #951

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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
23 changes: 23 additions & 0 deletions news/support_hip.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:**

* HIP Platform Support

**Changed:**

* <news item>

**Deprecated:**

* <news item>

**Removed:**

* <news item>

**Fixed:**

* <news item>

**Security:**

* <news item>
2 changes: 1 addition & 1 deletion openfe/protocols/openmm_rfe/_rfe_utils/compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def get_openmm_platform(platform_name=None):
platform.setPropertyDefaultValue(
'DeterministicForces', 'true')

if name != 'CUDA':
if name not in ['CUDA', 'HIP']:
wmsg = (f"Non-GPU platform selected: {name}, this may significantly "
"impact simulation performance")
warnings.warn(wmsg)
Expand Down
Loading