Skip to content
Snippets Groups Projects
Commit a8147b88 authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Make FC inherit MatMul and Add nodes name

parent b9e0c0fc
No related branches found
No related tags found
No related merge requests found
...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment