Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LHCbPR2HD
Manage
Activity
Members
Labels
Plan
Issues
5
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
5
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
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 Core Software
LHCbPR2HD
Merge requests
!297
Fix NaN ratios in MooreOnline throughput tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Fix NaN ratios in MooreOnline throughput tests
ahennequ_fixNaN
into
master
Overview
21
Commits
1
Pipelines
1
Changes
1
1 unresolved thread
Hide all comments
Closed
Arthur Marius Hennequin
requested to merge
ahennequ_fixNaN
into
master
6 months ago
Overview
21
Commits
1
Pipelines
1
Changes
1
1 unresolved thread
Hide all comments
Expand
Closes
lhcb/Moore#786 (closed)
lhcb/MooreOnline!465 (merged)
FYI
@jonrob
@gunther
@rmatev
@rjhunter
Edited
6 months ago
by
Arthur Marius Hennequin
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
4695a995
1 commit,
6 months ago
1 file
+
0
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
handlers/ThroughputProfileHandler.py
+
0
−
3
Options
@@ -74,9 +74,6 @@ def get_throughput(file, pattern=r"Evts\/s = ([\d.]+)"):
if
not
values
:
log
.
error
(
f
"
No throughput match for
{
pattern
}
in
{
file
}
.
"
)
return
NAN
if
len
(
values
)
>
1
:
log
.
error
(
f
"
More than one throughput match for
{
pattern
}
in
{
file
}
.
"
)
return
NAN
return
values
[
0
]
Loading