Skip to content

Commit

Permalink
Fix generation of cmsDriver command if accelerators contain asterisk …
Browse files Browse the repository at this point in the history
…symbol
  • Loading branch information
iarspider committed Jan 21, 2025
1 parent 41ac986 commit 57d8aeb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Configuration/PyReleaseValidation/python/relval_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2942,12 +2942,12 @@ def gen2024HiMix(fragment,howMuch):
}
step3_alpaka_gpu = {
'--procModifiers': 'alpaka',
'--accelerators' : '*' ## redundant, here just for readability
'--accelerators' : '"*"' ## redundant, here just for readability
}

step3_alpaka_gpu_validation = {
'--procModifiers': 'alpaka,alpakaValidation',
'--accelerators' : 'gpu*'
'--accelerators' : '"gpu*"'
}
step3_pixel_triplets = {
'--customise': 'RecoTracker/Configuration/customizePixelTracksForTriplets.customizePixelTracksForTriplets'
Expand Down Expand Up @@ -3243,7 +3243,7 @@ def gen2024HiMix(fragment,howMuch):
'--eventcontent':'RECO,MINIAOD,DQM',
'--geometry':'DB:Extended',
'--era':'Run3',
'--accelerators': 'gpu-*',
'--accelerators': '"gpu-*"',
'--procModifiers':'alpakaValidation'},dataReco])

# Run-3 2022 skim
Expand Down

0 comments on commit 57d8aeb

Please sign in to comment.