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

Disabling hyper-threading #2965

Open
wants to merge 17 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
bcc93f9
updated HERCULES.env
AntonMFernando-NOAA Sep 24, 2024
7e60320
Merge branch 'feature/hyper-threading' of https://github.com/AntonMFe…
AntonMFernando-NOAA Sep 25, 2024
d1738ad
Merge branch 'NOAA-EMC:develop' into feature/hyper-threading
AntonMFernando-NOAA Sep 26, 2024
3542fb1
Merge branch 'NOAA-EMC:develop' into feature/hyper-threading
AntonMFernando-NOAA Sep 28, 2024
f3bfdff
modified HERCULES.env
AntonMFernando-NOAA Sep 30, 2024
224143a
Merge branch 'feature/hyper-threading' of https://github.com/AntonMFe…
AntonMFernando-NOAA Sep 30, 2024
f968d43
Merge branch 'NOAA-EMC:develop' into feature/hyper-threading
AntonMFernando-NOAA Oct 1, 2024
8bd2b07
added hyper-threading HERA.env
AntonMFernando-NOAA Oct 1, 2024
08801d6
Merge branch 'feature/hyper-threading' of https://github.com/AntonMFe…
AntonMFernando-NOAA Oct 1, 2024
f29d705
updated ORION.env
AntonMFernando-NOAA Oct 1, 2024
7d446da
Merge branch 'develop' into feature/hyper-threading
AntonMFernando-NOAA Oct 7, 2024
86e5fb3
Merge branch 'NOAA-EMC:develop' into feature/hyper-threading
AntonMFernando-NOAA Oct 9, 2024
ac53bb6
Merge branch 'NOAA-EMC:develop' into feature/hyper-threading
AntonMFernando-NOAA Oct 10, 2024
9357d62
Merge branch 'develop' into feature/hyper-threading
AntonMFernando-NOAA Oct 11, 2024
423d606
Merge branch 'develop' into feature/hyper-threading
AntonMFernando-NOAA Oct 16, 2024
ed3c9a7
Merge branch 'develop' into feature/hyper-threading
AntonMFernando-NOAA Oct 16, 2024
3addff1
Merge branch 'NOAA-EMC:develop' into feature/hyper-threading
AntonMFernando-NOAA Oct 22, 2024
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 env/HERA.env
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fi

step=$1

export launcher="srun -l --export=ALL"
export launcher="srun -l --export=ALL --hint=nomultithread"
export mpmd_opt="--multi-prog --output=mpmd.%j.%t.out"

#export POSTAMBLE_CMD='report-mem'
Expand Down Expand Up @@ -50,7 +50,7 @@ if [[ "${step}" = "prep" ]] || [[ "${step}" = "prepbufr" ]]; then
export POE="NO"
export BACK="NO"
export sys_tp="HERA"
export launcher_PREP="srun"
export launcher_PREP="srun --hint=nomultithread"

elif [[ "${step}" = "prepsnowobs" ]]; then

Expand Down
4 changes: 2 additions & 2 deletions env/HERCULES.env
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fi

step=$1

export launcher="srun -l --export=ALL"
export launcher="srun -l --export=ALL --hint=nomultithread"
export mpmd_opt="--multi-prog --output=mpmd.%j.%t.out"

# Configure MPI environment
Expand Down Expand Up @@ -48,7 +48,7 @@ case ${step} in
export POE="NO"
export BACK=${BACK:-"YES"}
export sys_tp="HERCULES"
export launcher_PREP="srun"
export launcher_PREP="srun --hint=nomultithread"
;;
"prepsnowobs")

Expand Down
4 changes: 2 additions & 2 deletions env/ORION.env
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fi

step=$1

export launcher="srun -l --export=ALL"
export launcher="srun -l --export=ALL --hint=nomultithread"
export mpmd_opt="--multi-prog --output=mpmd.%j.%t.out"

# Configure MPI environment
Expand Down Expand Up @@ -45,7 +45,7 @@ if [[ "${step}" = "prep" ]] || [[ "${step}" = "prepbufr" ]]; then
export POE="NO"
export BACK=${BACK:-"YES"}
export sys_tp="ORION"
export launcher_PREP="srun"
export launcher_PREP="srun --hint=nomultithread"

elif [[ "${step}" = "prepsnowobs" ]]; then

Expand Down
Loading