Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
detector_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
detector_benchmarks
Merge requests
!27
Resolve "Factorize common benchmark code."
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Factorize common benchmark code."
15-factorize-common-benchmark-code
into
master
Overview
0
Commits
16
Pipelines
0
Changes
1
Merged
Whitney Armstrong
requested to merge
15-factorize-common-benchmark-code
into
master
4 years ago
Overview
0
Commits
16
Pipelines
0
Changes
1
Expand
Closes
#15 (closed)
Edited
4 years ago
by
Whitney Armstrong
0
0
Merge request reports
Compare
master
version 13
272aa3de
4 years ago
version 12
f6b6cb2d
4 years ago
version 11
c7bde021
4 years ago
version 10
d62c3edf
4 years ago
version 9
b4f409e4
4 years ago
version 8
aefc46e3
4 years ago
version 7
52f9cbbe
4 years ago
version 6
aa66032e
4 years ago
version 5
ac15d444
4 years ago
version 4
a85d8b5c
4 years ago
version 3
6a226006
4 years ago
version 2
d8a857a2
4 years ago
version 1
efb81f98
4 years ago
master (base)
and
latest version
latest version
c554a12e
16 commits,
4 years ago
version 13
272aa3de
15 commits,
4 years ago
version 12
f6b6cb2d
14 commits,
4 years ago
version 11
c7bde021
13 commits,
4 years ago
version 10
d62c3edf
12 commits,
4 years ago
version 9
b4f409e4
11 commits,
4 years ago
version 8
aefc46e3
10 commits,
4 years ago
version 7
52f9cbbe
9 commits,
4 years ago
version 6
aa66032e
8 commits,
4 years ago
version 5
ac15d444
7 commits,
4 years ago
version 4
a85d8b5c
6 commits,
4 years ago
version 3
6a226006
5 commits,
4 years ago
version 2
d8a857a2
3 commits,
4 years ago
version 1
efb81f98
1 commit,
4 years ago
1 file
+
22
−
39
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
22
−
39
Options
image
:
eicweb.phy.anl.gov:4567/eic/juggler/juggler:$JUGGLER_TAG
default
:
before_script
:
-
git clone https://eicweb.phy.anl.gov/EIC/detectors/topside.git
&& mkdir topside/build
&& cd topside/build
&& cmake ../. -DCMAKE_CXX_STANDARD=17 -DCMAKE_INSTALL_PREFIX=/usr/local
&& make -j20 install
&& cd ../..
|| exit
1
artifacts
:
expire_in
:
72 hours
paths
:
-
.local/detector
-
.local/lib
-
.local/bin
-
.local/include
-
.local/share
-
results
-
config
@@ -26,54 +21,42 @@ stages:
-
collect
-
deploy
env
:
common:setup
:
stage
:
config
script
:
-
./util/print_env.sh
-
mkdir -p /scratch/${CI_PROJECT_NAME}_${CI_PIPELINE_ID}
-
mkdir -p /scratch/${CI_PROJECT_NAME}_${CI_PIPELINE_ID}/sim_output
-
git clone https://eicweb.phy.anl.gov/EIC/benchmarks/common_bench.git setup
-
source setup/bin/env.sh && ./setup/bin/install_common.sh
detector
:
common:
detector
:
stage
:
initialize
needs
:
[
"
env"
]
timeout
:
1 hours
cache
:
key
:
files
:
-
options/env.sh
-
util/build_detector.sh
prefix
:
"
$CI_COMMIT_REF_SLUG"
paths
:
-
.local/detector
-
.local/lib
needs
:
[
"
common:setup"
]
script
:
-
./util/print_env
.sh
-
./util/build_detector.sh
-
./util/print_env.sh
-
source .local/bin/env.sh && build_detector
.sh
-
mkdir -p /scratch/${CI_PROJECT_NAME}_${CI_PIPELINE_ID}
-
mkdir -p /scratch/${CI_PROJECT_NAME}_${CI_PIPELINE_ID}/sim_output
-
mkdir -p results
-
mkdir -p config
-
print_env.sh
get_data
:
stage
:
data_init
needs
:
[
"
detector"
]
needs
:
[
"
common:
detector"
]
script
:
-
source
options
/env.sh
-
ln -s ${LOCAL_DATA_PATH}/sim_output sim_output
-
ln -s ${LOCAL_DATA_PATH}/datasets/data data
-
source
.local/bin
/env.sh
-
ln -s
"
${LOCAL_DATA_PATH}/sim_output
"
sim_output
-
ln -s
"
${LOCAL_DATA_PATH}/datasets/data
"
data
-
cd ${LOCAL_DATA_PATH} && git clone --depth=1 https://eicweb.phy.anl.gov/EIC/datasets.git datasets
.det_benchmark
:
image
:
eicweb.phy.anl.gov:4567/eic/juggler/juggler:$JUGGLER_TAG
needs
:
-
[
"
get_data"
]
-
[
"
get_data"
,
"
common:detector"
]
before_script
:
-
source options/env.sh
-
ln -s ${LOCAL_DATA_PATH}/sim_output sim_output
-
ln -s ${LOCAL_DATA_PATH}/datasets/data data
artifacts
:
expire_in
:
20 weeks
paths
:
-
results/
-
source .local/bin/env.sh
-
ls -lrtha
-
ln -s "${LOCAL_DATA_PATH}/sim_output" sim_output
-
ln -s "${LOCAL_DATA_PATH}/datasets/data" data
-
ls -lrtha
include
:
Loading