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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIC
benchmarks
physics_benchmarks
Commits
7566696e
Commit
7566696e
authored
10 months ago
by
Zachary W Sweger
Browse files
Options
Downloads
Patches
Plain Diff
add benchmarks/your_benchmark
parent
7ef53b64
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+20
-18
20 additions, 18 deletions
.gitlab-ci.yml
benchmarks/your_benchmark/config.yml
+43
-0
43 additions, 0 deletions
benchmarks/your_benchmark/config.yml
with
63 additions
and
18 deletions
.gitlab-ci.yml
+
20
−
18
View file @
7566696e
...
...
@@ -115,33 +115,35 @@ common:detector:
-
runner_system_failure
include
:
-
local
:
'
benchmarks/diffractive_vm/config.yml'
-
local
:
'
benchmarks/demp/config.yml'
#
- local: 'benchmarks/diffractive_vm/config.yml'
#
- local: 'benchmarks/demp/config.yml'
-
local
:
'
benchmarks/dis/config.yml'
#- local: 'benchmarks/dvmp/config.yml'
-
local
:
'
benchmarks/dvcs/config.yml'
-
local
:
'
benchmarks/lambda/config.yml'
-
local
:
'
benchmarks/neutron/config.yml'
-
local
:
'
benchmarks/sigma/config.yml'
-
local
:
'
benchmarks/tcs/config.yml'
-
local
:
'
benchmarks/u_omega/config.yml'
#
- local: 'benchmarks/dvcs/config.yml'
#
- local: 'benchmarks/lambda/config.yml'
#
- local: 'benchmarks/neutron/config.yml'
#
- local: 'benchmarks/sigma/config.yml'
#
- local: 'benchmarks/tcs/config.yml'
#
- local: 'benchmarks/u_omega/config.yml'
-
local
:
'
benchmarks/single/config.yml'
-
local
:
'
benchmarks/backgrounds/config.yml'
#- local: 'benchmarks/backgrounds/config.yml'
-
local
:
'
benchmarks/your_benchmark/config.yml'
summary
:
stage
:
finish
needs
:
-
"
diffractive_vm:results"
-
"
demp:results"
#
- "diffractive_vm:results"
#
- "demp:results"
-
"
dis:results"
-
"
dvcs:results"
-
"
lambda:results"
-
"
neutron:results"
-
"
sigma:results"
-
"
tcs:results"
-
"
u_omega:results"
#
- "dvcs:results"
#
- "lambda:results"
#
- "neutron:results"
#
- "sigma:results"
#
- "tcs:results"
#
- "u_omega:results"
-
"
single:results"
-
"
backgrounds:results"
#- "backgrounds:results"
-
"
your_benchmark:results"
script
:
-
collect_benchmarks.py
-
find results -print | sort | tee summary.txt
...
...
This diff is collapsed.
Click to expand it.
benchmarks/your_benchmark/config.yml
0 → 100644
+
43
−
0
View file @
7566696e
your_benchmark:compile
:
extends
:
.phy_benchmark
stage
:
compile
script
:
-
echo "You can compile your code here!"
your_benchmark:generate
:
extends
:
.phy_benchmark
stage
:
generate
script
:
-
echo "I will generate events here!"
-
echo "Add event-generator code to do this"
your_benchmark:simulate
:
extends
:
.phy_benchmark
stage
:
simulate
script
:
-
echo "I will simulate detector response here!"
your_benchmark:reconstruct
:
extends
:
.phy_benchmark
stage
:
reconstruct
script
:
-
echo "Event reconstruction here!"
your_benchmark:analyze
:
extends
:
.phy_benchmark
stage
:
analyze
needs
:
-
[
"
your_benchmark:reconstruct"
]
script
:
-
echo "I will analyze events here!"
-
echo "This step requires that the reconstruct step be completed"
your_benchmark:collect
extends
:
.phy_benchmark
stage
:
collect
needs
:
-
[
"
your_benchmark:analyze"
]
script
:
-
echo "I will collect results here!"
-
echo "This step requires that the analyze step be completed"
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