Skip to content

Commit

Permalink
Fix a bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaoran Yang committed Jan 1, 2016
1 parent a6e6b67 commit 54549c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpumap.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ int cpumap(int i, int nprocs)
return (i / 36) * 36 + (i % 2) * 18 + (i % 36 / 2);
}

#ifdef GUADALUPE_OVERSUB
#elif GUADALUPE_OVERSUB
int cpumap(int i, int nprocs) {
return (i % 18);
}
Expand Down

0 comments on commit 54549c8

Please sign in to comment.