Skip to content
Snippets Groups Projects
Commit 8f4a6d00 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

fix: run parallel again to avoid directory changes

parent ce9fc106
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !187. Comments created here will be created in the context of that merge request.
...@@ -16,11 +16,35 @@ single:simulate: ...@@ -16,11 +16,35 @@ single:simulate:
angle: ['3to45deg', '45to135deg', '135to177deg'] angle: ['3to45deg', '45to135deg', '135to177deg']
script: script:
- bash benchmarks/single/simulate.sh ${particle}_${energy}_${angle} - bash benchmarks/single/simulate.sh ${particle}_${energy}_${angle}
single:reconstruct:
extends: .phy_benchmark
timeout: 2 hours
stage: reconstruct
needs: ["single:simulate"]
parallel:
matrix:
- particle: ['e-', 'pi-']
energy: ['1GeV']
angle: ['3to45deg', '45to135deg', '135to177deg']
script:
- bash benchmarks/single/reconstruct.sh ${particle}_${energy}_${angle} - bash benchmarks/single/reconstruct.sh ${particle}_${energy}_${angle}
single:analyze:
extends: .phy_benchmark
timeout: 2 hours
stage: analyze
needs: ["single:reconstruct", "single:compile"]
parallel:
matrix:
- particle: ['e-', 'pi-']
energy: ['1GeV']
angle: ['3to45deg', '45to135deg', '135to177deg']
script:
- bash benchmarks/single/analyze.sh ${particle}_${energy}_${angle} - bash benchmarks/single/analyze.sh ${particle}_${energy}_${angle}
single:results: single:results:
stage: collect stage: collect
needs: ["single:simulate"] needs: ["single:analyze"]
script: script:
- ls -al - ls -al
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment