Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.

Commit

Permalink
Merge pull request #137 from keisukefukuda/fix-131
Browse files Browse the repository at this point in the history
Fix #131
  • Loading branch information
keisukefukuda committed May 30, 2019
2 parents b09b0be + dedf611 commit acf65ad
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mpienv/openmpi.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@


def _call_ompi_info(bin):
if not os.path.exists(bin):
raise RuntimeError("ompi_info does not exist: {}".format(bin))
out = check_output([bin, '--all', '--parsable'], stderr=util.DEVNULL)
out = util.decode(out)

Expand Down

0 comments on commit acf65ad

Please sign in to comment.