Skip to content

Commit

Permalink
Enable HBW policy
Browse files Browse the repository at this point in the history
  • Loading branch information
chuckyount committed Jan 19, 2023
1 parent 9e3d502 commit c4268f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/common/common_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace yask {
// for numbers above 9 (at least up to 99).

// Format: "major.minor.patch[-alpha|-beta]".
const string version = "4.01.01";
const string version = "4.01.02";

string yask_get_version_string() {
return version;
Expand Down Expand Up @@ -83,7 +83,7 @@ namespace yask {
else if (num > one_ki)
os << (num / one_ki) << "Ki";
else
os << num;
os << nbytes;
os << "B";
return os.str();
}
Expand Down
2 changes: 1 addition & 1 deletion src/kernel/yask.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ done
envs="OMP_DISPLAY_ENV=VERBOSE KMP_VERSION=1"
envs+=" OMP_PLACES=cores KMP_HOT_TEAMS_MODE=1 KMP_HOT_TEAMS_MAX_LEVEL=3"
envs+=" I_MPI_PRINT_VERSION=1 I_MPI_DEBUG=5"
#envs+=" I_MPI_HBW_POLICY=hbw_preferred,hbw_preferred"
envs+=" I_MPI_HBW_POLICY=hbw_preferred,hbw_preferred"

# Default arch.
cpu_flags=`grep -m1 '^flags' /proc/cpuinfo`
Expand Down

0 comments on commit c4268f9

Please sign in to comment.