Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
aidge_core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
aidge
aidge_core
Commits
0b86ce66
Commit
0b86ce66
authored
8 months ago
by
Olivier BICHLER
Browse files
Options
Downloads
Patches
Plain Diff
Fixed issue
parent
c64a6b94
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!212
Version 0.3.0
,
!170
Change fuseMulAdd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/recipes/MatMulToFC.cpp
+4
-2
4 additions, 2 deletions
src/recipes/MatMulToFC.cpp
with
4 additions
and
2 deletions
src/recipes/MatMulToFC.cpp
+
4
−
2
View file @
0b86ce66
...
...
@@ -28,7 +28,9 @@
void
Aidge
::
matMulToFC
(
std
::
shared_ptr
<
Aidge
::
Node
>
matmulNode
,
std
::
shared_ptr
<
Aidge
::
Node
>
addNode
)
{
// Fuse Mulmat & Add into FC
// Inputs : old nodes (pointers on mul & add)
AIDGE_ASSERT
((
matmulNode
->
type
()
==
"MatMul"
&&
(
addNode
==
nullptr
||
addNode
->
type
()
==
"Add"
)),
"Wrong type for the nodes to replace"
);
AIDGE_ASSERT
((
matmulNode
->
type
()
==
"MatMul"
&&
(
addNode
==
nullptr
||
addNode
->
type
()
==
"Add"
)),
"Wrong type for the nodes to replace: {} and {}"
,
matmulNode
->
type
(),
(
addNode
)
?
addNode
->
type
()
:
"nullptr"
);
// Step 1 : Create FC
...
...
@@ -103,6 +105,6 @@ void Aidge::matMulToFC(std::shared_ptr<Aidge::GraphView> graphView){
for
(
const
auto
&
match
:
matches
)
{
const
auto
it
=
match
.
anchors
.
find
(
"Add"
);
matMulToFC
(
match
.
star
tNode
,
(
it
!=
match
.
anchors
.
end
())
?
it
->
second
.
at
(
"#"
)
:
nullptr
);
matMulToFC
(
match
.
graph
->
roo
tNode
()
,
(
it
!=
match
.
anchors
.
end
())
?
it
->
second
.
at
(
"#"
)
:
nullptr
);
}
}
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