Skip to content

Commit

Permalink
fixed bug in mpi wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
ilagunap committed Sep 3, 2021
1 parent b1cce7d commit a09527c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cpu_checking/mpicc_fpchecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ def getMPILinkParams(self):
params = cmdOutput.decode('utf-8')
ret = []
for i in params.split():
if 'rpath' not in i:
ret.append(i)
ret.append(i)
return ret
except subprocess.CalledProcessError as e:
prRed(e)
Expand Down

0 comments on commit a09527c

Please sign in to comment.