Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PRConfig
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
LHCb Data Packages
PRConfig
Commits
1969dd7b
Commit
1969dd7b
authored
1 year ago
by
Rosen Matev
Browse files
Options
Downloads
Patches
Plain Diff
Support EL9 for throughput tests
parent
6f88e4aa
No related branches found
No related tags found
1 merge request
!346
Support EL9 for throughput tests
Pipeline
#6186818
passed
1 year ago
Stage: check
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
python/MooreTests/make_profile_plots.py
+7
-1
7 additions, 1 deletion
python/MooreTests/make_profile_plots.py
python/MooreTests/run_throughput_jobs.py
+8
-2
8 additions, 2 deletions
python/MooreTests/run_throughput_jobs.py
with
15 additions
and
3 deletions
python/MooreTests/make_profile_plots.py
+
7
−
1
View file @
1969dd7b
...
...
@@ -38,7 +38,13 @@ HEAPTRACK_ARGS = [
def
main
(
listOfLogs
,
hltlabel
,
throughput
,
produceYAML
,
ht_file
,
heaptrack
,
perf_exe
,
no_inline
):
llvm_cxxfilt_path
=
"
/cvmfs/sft.cern.ch/lcg/contrib/clang/12/x86_64-centos7/bin/llvm-cxxfilt
"
binary_tag
=
os
.
environ
[
"
BINARY_TAG
"
]
if
"
centos7
"
in
binary_tag
.
split
(
"
-
"
):
llvm_cxxfilt_path
=
"
/cvmfs/sft.cern.ch/lcg/contrib/clang/12/x86_64-centos7/bin/llvm-cxxfilt
"
elif
"
el9
"
in
binary_tag
.
split
(
"
-
"
):
llvm_cxxfilt_path
=
"
/cvmfs/sft.cern.ch/lcg/releases/clang/14.0.6-14bdb/x86_64-centos9/bin/llvm-cxxfilt
"
else
:
raise
RuntimeError
(
f
"
{
binary_tag
=
}
not supported
"
)
if
os
.
path
.
isfile
(
llvm_cxxfilt_path
):
demangle
=
llvm_cxxfilt_path
else
:
...
...
This diff is collapsed.
Click to expand it.
python/MooreTests/run_throughput_jobs.py
+
8
−
2
View file @
1969dd7b
...
...
@@ -59,6 +59,8 @@ import subprocess
import
tempfile
from
itertools
import
cycle
,
islice
IS_EL9
=
'
-el9-
'
in
os
.
environ
[
"
BINARY_TAG
"
]
def
rep
(
x
,
length
):
return
list
(
islice
(
cycle
(
x
),
length
))
...
...
@@ -220,8 +222,12 @@ options.preamble_algs = [
if
args
.
profile
:
# see module docstring for more info about perf
perf_exe
=
"
perf_libunwind_lcg101
"
if
not
has_command
([
"
perf_libunwind_lcg101
"
]):
if
IS_EL9
:
perf_exe
=
"
perf
"
else
:
perf_exe
=
"
perf_libunwind_lcg101
"
if
not
has_command
([
perf_exe
]):
from
Moore.qmtest.context
import
xrdcp
from
pathlib
import
Path
import
stat
...
...
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