Skip to content
Snippets Groups Projects
Commit e387e1a9 authored by Danny Auble's avatar Danny Auble
Browse files

fix for cpu count

parent faf259ac
No related branches found
No related tags found
No related merge requests found
...@@ -165,7 +165,7 @@ int _parse_line(char *f[], void **data) ...@@ -165,7 +165,7 @@ int _parse_line(char *f[], void **data)
(*step)->status = atoi(f[F_STATUS]); (*step)->status = atoi(f[F_STATUS]);
(*step)->exitcode = atoi(f[F_EXITCODE]); (*step)->exitcode = atoi(f[F_EXITCODE]);
(*step)->ntasks = atoi(f[F_NTASKS]); (*step)->ntasks = atoi(f[F_NTASKS]);
(*step)->ncpus = atoi(f[F_NCPUS]); (*step)->ncpus = atoi(f[F_STEPNCPUS]);
(*step)->elapsed = atoi(f[F_ELAPSED]); (*step)->elapsed = atoi(f[F_ELAPSED]);
(*step)->tot_cpu_sec = atoi(f[F_CPU_SEC]); (*step)->tot_cpu_sec = atoi(f[F_CPU_SEC]);
(*step)->tot_cpu_usec = atoi(f[F_CPU_USEC]); (*step)->tot_cpu_usec = atoi(f[F_CPU_USEC]);
......
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