Skip to content

Commit

Permalink
Merge pull request #264 from intel/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
chuckyount authored Jan 20, 2023
2 parents 2e627b2 + 0c02d57 commit c42d05a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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
2 changes: 1 addition & 1 deletion utils/bin/gen_loops.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1189,7 +1189,7 @@ ($)
" * Generated automatically from the following pseudo-code:\n",
" *\n",
" * $codeString\n",
" *\n */";
" *\n */\n\n";

# print out code.
for my $line (@code) {
Expand Down

0 comments on commit c42d05a

Please sign in to comment.