Skip to content

Commit 3a3ea5b

Browse files
authored
Merge pull request #106 from bedroge/qe_numcores_a64fx
Limit QuantumESPRESSO builds on A64FX to max 6 cores
2 parents 7d1720f + 6068f82 commit 3a3ea5b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

eb_hooks.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1703,16 +1703,16 @@ def set_maximum(parallel, max_value):
17031703
# Deucalion has 32GB HBM for 48 cores per node
17041704
CPU_TARGET_A64FX: (divide_by_factor, 4),
17051705
# software-specific limits
1706-
'CP2K': {
1707-
CPU_TARGET_A64FX: (set_maximum, 6),
1708-
},
17091706
'libxc': {
17101707
'*': (divide_by_factor, 2),
17111708
CPU_TARGET_A64FX: (set_maximum, 12),
17121709
},
17131710
'MBX': {
17141711
'*': (divide_by_factor, 2),
17151712
},
1713+
'QuantumESPRESSO': {
1714+
CPU_TARGET_A64FX: (set_maximum, 6),
1715+
},
17161716
'TensorFlow': {
17171717
'*': (divide_by_factor, 2),
17181718
CPU_TARGET_A64FX: (set_maximum, 8),

0 commit comments

Comments
 (0)