Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #264

Merged
merged 2 commits into from
Jan 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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