Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
reconstruction_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
reconstruction_benchmarks
Merge requests
!158
Draft: Benchmarks that do profiling (igprof, valgrind)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Open
Draft: Benchmarks that do profiling (igprof, valgrind)
profiling-benchmarks
into
master
Overview
1
Commits
5
Pipelines
0
Changes
7
Open
Draft: Benchmarks that do profiling (igprof, valgrind)
Wouter Deconinck
requested to merge
profiling-benchmarks
into
master
Aug 11, 2021
Overview
1
Commits
5
Pipelines
0
Changes
7
0
0
Merge request reports
Compare
master
version 6
01f5ca2d
Aug 13, 2021
version 5
11c0324d
Aug 12, 2021
version 4
c2c0a7cf
Aug 11, 2021
version 3
d5a560f9
Aug 11, 2021
version 2
eaddcfcd
Aug 11, 2021
version 1
5707f93b
Aug 11, 2021
master (base)
and
latest version
latest version
3c0ec696
5 commits,
Aug 13, 2021
version 6
01f5ca2d
5 commits,
Aug 13, 2021
version 5
11c0324d
5 commits,
Aug 12, 2021
version 4
c2c0a7cf
4 commits,
Aug 11, 2021
version 3
d5a560f9
3 commits,
Aug 11, 2021
version 2
eaddcfcd
2 commits,
Aug 11, 2021
version 1
5707f93b
1 commit,
Aug 11, 2021
7 files
+
146
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
benchmarks/profiling/config.yml
0 → 100644
+
37
−
0
View file @ 3c0ec696
Edit in single-file editor
Open in Web IDE
profiling:sim
:
extends
:
.rec_benchmark
stage
:
run
timeout
:
24 hours
script
:
-
bash benchmarks/profiling/simulate.sh
profiling:valgrind
:
extends
:
.rec_benchmark
stage
:
benchmarks1
needs
:
[
"
profiling:sim"
]
timeout
:
24 hours
script
:
-
bash benchmarks/profiling/valgrind.sh
profiling:igprofperf
:
extends
:
.rec_benchmark
stage
:
benchmarks1
needs
:
[
"
profiling:sim"
]
timeout
:
24 hours
script
:
-
bash benchmarks/profiling/igprofperf.sh
profiling:igprofmem
:
extends
:
.rec_benchmark
stage
:
benchmarks1
needs
:
[
"
profiling:sim"
]
timeout
:
24 hours
script
:
-
bash benchmarks/profiling/igprofmem.sh
profiling:results
:
extends
:
.rec_benchmark
stage
:
collect
needs
:
[
"
profiling:valgrind"
,
"
profiling:igprofperf"
,
"
profiling:igprofmem"
]
script
:
-
ls -lrth results/profiling/
Loading