Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
physics_benchmarks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIC
benchmarks
physics_benchmarks
Commits
64eaef6e
Commit
64eaef6e
authored
3 years ago
by
Wouter Deconinck
Browse files
Options
Downloads
Patches
Plain Diff
Split TCS job in multiple stages
parent
0b9af5ba
Branches
Branches containing commit
No related tags found
1 merge request
!157
Benchmarks for TCS on FF reconstructed particles
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+1
-0
1 addition, 0 deletions
.gitlab-ci.yml
benchmarks/tcs/config.yml
+63
-4
63 additions, 4 deletions
benchmarks/tcs/config.yml
with
64 additions
and
4 deletions
.gitlab-ci.yml
+
1
−
0
View file @
64eaef6e
...
...
@@ -88,6 +88,7 @@ summary:
#needs: ["dis:results", "dvcs:results", "dvmp:results"]
needs
:
-
"
dvcs:results"
-
"
tcs:results:
script:
-
collect_benchmarks.py
artifacts:
...
...
This diff is collapsed.
Click to expand it.
benchmarks/tcs/config.yml
+
63
−
4
View file @
64eaef6e
...
...
@@ -4,12 +4,72 @@ tcs:compile:
script
:
-
compile_analyses.py tcs
tcs:generate
:
stage
:
generate
extends
:
.phy_benchmark
tags
:
-
phy
needs
:
[
"
common:detector"
,
"
tcs:compile"
]
parallel
:
matrix
:
-
EBEAM
:
5
PBEAM
:
41
TAG
:
s450
-
EBEAM
:
10
PBEAM
:
100
TAG
:
s100
-
EBEAM
:
18
PBEAM
:
275
TAG
:
s800
script
:
-
bash benchmarks/tcs/tcs.sh --data-init --ebeam ${EBEAM} --pbeam ${PBEAM} --tag ${TAG}
tcs:simulate
:
stage
:
simulate
extends
:
.phy_benchmark
tags
:
-
phy
needs
:
[
"
common:detector"
,
"
tcs:compile"
]
needs
:
[
"
common:detector"
,
"
tcs:generate"
]
parallel
:
matrix
:
-
EBEAM
:
5
PBEAM
:
41
TAG
:
s450
-
EBEAM
:
10
PBEAM
:
100
TAG
:
s100
-
EBEAM
:
18
PBEAM
:
275
TAG
:
s800
script
:
-
bash benchmarks/tcs/tcs.sh --sim --ebeam ${EBEAM} --pbeam ${PBEAM} --tag ${TAG}
tcs:reconstruct
:
stage
:
reconstruct
extends
:
.phy_benchmark
tags
:
-
phy
needs
:
[
"
common:detector"
,
"
tcs:simulate"
]
parallel
:
matrix
:
-
EBEAM
:
5
PBEAM
:
41
TAG
:
s450
-
EBEAM
:
10
PBEAM
:
100
TAG
:
s100
-
EBEAM
:
18
PBEAM
:
275
TAG
:
s800
script
:
-
bash benchmarks/tcs/tcs.sh --rec --ebeam ${EBEAM} --pbeam ${PBEAM} --tag ${TAG}
tcs:analyze
:
stage
:
analyze
extends
:
.phy_benchmark
tags
:
-
phy
needs
:
[
"
common:detector"
,
"
tcs:reconstruct"
]
parallel
:
matrix
:
-
EBEAM
:
5
...
...
@@ -22,11 +82,10 @@ tcs:simulate:
PBEAM
:
275
TAG
:
s800
script
:
#- bash benchmarks/tcs/tcs.sh --all --ebeam ${EBEAM} --pbeam ${PBEAM} --tag ${TAG}
-
bash benchmarks/tcs/tcs.sh --data-init --sim --rec --ebeam ${EBEAM} --pbeam ${PBEAM} --tag ${TAG}
-
bash benchmarks/tcs/tcs.sh --analysis --ebeam ${EBEAM} --pbeam ${PBEAM} --tag ${TAG}
tcs:results
:
stage
:
collect
needs
:
[
"
tcs:
simulat
e"
]
needs
:
[
"
tcs:
analyz
e"
]
script
:
-
ls -lrth
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment