Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit ae367fb

Browse files
manofmountaindaisyden
authored andcommitted
Fix issue to suport multi-instances on more than 64 physical cores.
1 parent 27aa7f7 commit ae367fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/set_env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function init_mpi_envs
9090
done
9191
for ((mask_index=${#masks[@]}-1; mask_index>=0; mask_index--))
9292
do
93-
mask_str+=`printf "%x" "${masks[$mask_index]}"`
93+
mask_str+=`printf "%016x" "${masks[$mask_index]}"`
9494
done
9595
domain_str+="$mask_str"
9696
if [ $ppn_index -ne $((ppn-1)) ]; then

0 commit comments

Comments
 (0)