Skip to content
Snippets Groups Projects
Commit 65637411 authored by Kyle Klenk (kck540)'s avatar Kyle Klenk (kck540)
Browse files

Modified statistics script

parent 63d27058
No related branches found
No related tags found
1 merge request!5add in compiler def ACTORS_ACTIVE to turn on some stuff so can move...
......@@ -42,7 +42,7 @@ def seffCommand(jobId, numJobs, gru_per_job):
cmdString = "seff {}_{}".format(jobId, i)
cmd = subprocess.Popen(cmdString, shell=True, stdout=subprocess.PIPE)
for line in cmd.stdout:
if b'Cores:' in line:
if b'Cores' in line:
cores = line.decode().split(" ")[-1]
cores = cores.strip()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment