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
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
Cyril Moineau
aidge_core
Commits
a8147b88
Commit
a8147b88
authored
11 months ago
by
Olivier BICHLER
Browse files
Options
Downloads
Patches
Plain Diff
Make FC inherit MatMul and Add nodes name
parent
b9e0c0fc
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/recipes/FuseMulAdd.cpp
+6
-2
6 additions, 2 deletions
src/recipes/FuseMulAdd.cpp
with
6 additions
and
2 deletions
src/recipes/FuseMulAdd.cpp
+
6
−
2
View file @
a8147b88
...
@@ -85,8 +85,12 @@ void Aidge::fuseMulAdd(std::shared_ptr<Aidge::Node> matmulNode, std::shared_ptr<
...
@@ -85,8 +85,12 @@ void Aidge::fuseMulAdd(std::shared_ptr<Aidge::Node> matmulNode, std::shared_ptr<
AIDGE_ASSERT
(
outSize
,
"Couldnt get output number of channels for FC operator."
);
AIDGE_ASSERT
(
outSize
,
"Couldnt get output number of channels for FC operator."
);
// Instanciate FC
// Instanciate FC
//std::shared_ptr<Node> fc = FC(dim[0], false, "Fc");
std
::
string
fcName
=
matmulNode
->
name
();
std
::
shared_ptr
<
Node
>
fc
=
std
::
make_shared
<
Node
>
(
std
::
make_shared
<
FC_Op
>
(
outSize
,
bias
?
false
:
true
));
if
(
!
addNode
->
name
().
empty
())
{
fcName
+=
"_"
+
addNode
->
name
();
}
std
::
shared_ptr
<
Node
>
fc
=
std
::
make_shared
<
Node
>
(
std
::
make_shared
<
FC_Op
>
(
outSize
,
bias
?
false
:
true
),
fcName
);
// Step 2 : Branch existing producers & create the others
// Step 2 : Branch existing producers & create the others
// link weights & bias
// link weights & bias
...
...
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