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
Merge requests
!157
Benchmarks for TCS on FF reconstructed particles
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Benchmarks for TCS on FF reconstructed particles
tcs-ff-reconstructed-particles
into
master
Overview
0
Commits
13
Pipelines
0
Changes
3
Open
Wouter Deconinck
requested to merge
tcs-ff-reconstructed-particles
into
master
2 years ago
Overview
0
Commits
13
Pipelines
0
Changes
3
Expand
0
0
Merge request reports
Compare
master
version 13
e9597919
2 years ago
version 12
66971649
2 years ago
version 11
755390ae
2 years ago
version 10
718322a3
2 years ago
version 9
295f5b29
2 years ago
version 8
b9d92d69
2 years ago
version 7
deae9234
2 years ago
version 6
f41cf61f
2 years ago
version 5
1c003079
2 years ago
version 4
53089f6b
2 years ago
version 3
2c961cd4
2 years ago
version 2
c1974ebd
2 years ago
version 1
26c4727c
2 years ago
master (base)
and
latest version
latest version
57c32400
13 commits,
2 years ago
version 13
e9597919
13 commits,
2 years ago
version 12
66971649
12 commits,
2 years ago
version 11
755390ae
11 commits,
2 years ago
version 10
718322a3
10 commits,
2 years ago
version 9
295f5b29
9 commits,
2 years ago
version 8
b9d92d69
8 commits,
2 years ago
version 7
deae9234
7 commits,
2 years ago
version 6
f41cf61f
6 commits,
2 years ago
version 5
1c003079
5 commits,
2 years ago
version 4
53089f6b
4 commits,
2 years ago
version 3
2c961cd4
3 commits,
2 years ago
version 2
c1974ebd
2 commits,
2 years ago
version 1
26c4727c
1 commit,
2 years ago
3 files
+
98
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
benchmarks/tcs/config.yml
+
63
−
4
Options
@@ -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
Loading