Skip to content

Commit ed738ad

Browse files
committed
parse script: adding optional env var to disable MI100 serialization workaround in dpl-workflow.sh
1 parent 4b196ea commit ed738ad

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

DATA/tools/parse

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,8 @@ for line in f:
141141
command_preopt += ' SHMSIZE=' + (str(int(int(os.environ['RECOSHMSIZE']) * 3 / 2)) if mi100node else os.environ['RECOSHMSIZE'])
142142
if mi100node:
143143
command_preopt += ' EPN_NODE_MI100=1 EPN_GLOBAL_SCALING="3/2"'
144+
if os.getenv('DISABLE_MI100_SERIALIZATION', '0') == '1':
145+
command_preopt += ' DISABLE_MI100_SERIALIZATION=1'
144146
if reco_num_nodes_override == 0:
145147
command_preopt += ' RECO_NUM_NODES_WORKFLOW=' + wf[1]
146148
if is_calib_workflow:

0 commit comments

Comments
 (0)