Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Phys
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
1
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
Phys
Merge requests
!984
Fix gcc11 compilation
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix gcc11 compilation
fix-gcc11-run2
into
run2-patches
Overview
1
Commits
1
Pipelines
1
Changes
1
Merged
Marco Cattaneo
requested to merge
fix-gcc11-run2
into
run2-patches
3 years ago
Overview
1
Commits
1
Pipelines
1
Changes
1
Expand
👍
0
👎
0
Merge request reports
Compare
run2-patches
run2-patches (base)
and
latest version
latest version
33170a99
1 commit,
3 years ago
1 file
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Phys/lwtnnParser/lwtnnParser/NNLayerConfig.h
+
3
−
3
Options
@@ -77,9 +77,9 @@ namespace lwt {
// graph node configuration
struct
NodeConfig
{
enum
class
Type
{
INPUT
,
INPUT_SEQUENCE
,
FEED_FORWARD
,
CONCATENATE
,
SEQUENCE
,
TIME_DISTRIBUTED
};
Type
type
;
std
::
vector
<
size_t
>
sources
;
int
index
;
// input node size, or layer number
Type
type
;
std
::
vector
<
std
::
size_t
>
sources
;
int
index
;
// input node size, or layer number
};
}
// namespace lwt
Loading