Skip to content

Commit

Permalink
added aarch64 to check for wi4mpi supported architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
FrederickDeny committed Feb 28, 2024
1 parent 154c36b commit 73dcf79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e4s_cl/cf/wi4mpi/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def _double_tap(cmd):
def install_wi4mpi(install_dir: Path) -> Optional[Path]:
"""Clones and installs wi4mpi from github releases"""

if os.uname().machine not in {'x86_64', 'amd64'}:
if os.uname().machine not in {'x86_64', 'amd64', 'aarch64'}:
LOGGER.warning(
"Wi4MPI not available for the following architecture: %s",
os.uname().machine)
Expand Down

0 comments on commit 73dcf79

Please sign in to comment.