Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LHCb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
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
LHCb
Commits
f2c9ada5
Commit
f2c9ada5
authored
1 year ago
by
Andre Gunther
Browse files
Options
Downloads
Patches
Plain Diff
VectorizedML/Sequence fix const return type warning
parent
b9b68f44
No related branches found
No related tags found
1 merge request
!4481
VectorizedML/Sequence fix const return type warning
Pipeline
#7087239
passed
1 year ago
Stage: test
Stage: .post
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Kernel/LHCbMath/include/LHCbMath/VectorizedML/Sequence.h
+5
-5
5 additions, 5 deletions
Kernel/LHCbMath/include/LHCbMath/VectorizedML/Sequence.h
with
5 additions
and
5 deletions
Kernel/LHCbMath/include/LHCbMath/VectorizedML/Sequence.h
+
5
−
5
View file @
f2c9ada5
...
...
@@ -65,13 +65,13 @@ namespace LHCb::VectorizedML {
void
set_index
(
size_t
index
)
{
m_index
=
index
;
}
auto
name
()
const
{
return
std
::
string
(
TypeToString
(
m_type
)
)
+
"_"
+
std
::
to_string
(
m_index
);
};
auto
const
nInputs
()
const
{
return
m_ninput
;
}
auto
const
nOutputs
()
const
{
return
m_noutput
;
}
auto
nInputs
()
const
{
return
m_ninput
;
}
auto
nOutputs
()
const
{
return
m_noutput
;
}
auto
const
nBins
()
const
{
return
m_nbins
;
}
auto
nBins
()
const
{
return
m_nbins
;
}
auto
const
type
()
const
{
return
static_cast
<
int
>
(
m_type
);
}
auto
const
index
()
const
{
return
m_index
;
}
auto
type
()
const
{
return
static_cast
<
int
>
(
m_type
);
}
auto
index
()
const
{
return
m_index
;
}
protected
:
Type
m_type
{};
...
...
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