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
Merge requests
!4481
VectorizedML/Sequence fix const return type warning
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
VectorizedML/Sequence fix const return type warning
gunther-fix-ml-clang
into
master
Overview
1
Commits
1
Pipelines
2
Changes
1
Merged
Andre Gunther
requested to merge
gunther-fix-ml-clang
into
master
1 year ago
Overview
1
Commits
1
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
f2c9ada5
1 commit,
1 year ago
1 file
+
5
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Kernel/LHCbMath/include/LHCbMath/VectorizedML/Sequence.h
+
5
−
5
Options
@@ -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
{};
Loading