ONE - On-device Neural Engine
Loading...
Searching...
No Matches
luci::FuseMulWithFullyConnectedPass Struct Referencefinal

Class to fuse Mul into CircleFullyConnected. More...

#include <FuseMulWithFullyConnectedPass.h>

Collaboration diagram for luci::FuseMulWithFullyConnectedPass:

Public Member Functions

const char * name (void) const final
 
bool run (loco::Graph *g) final
 Run the pass.
 
- Public Member Functions inherited from logo::Pass
virtual ~Pass ()=default
 

Detailed Description

Class to fuse Mul into CircleFullyConnected.

Definition at line 28 of file FuseMulWithFullyConnectedPass.h.

Member Function Documentation

◆ name()

const char * luci::FuseMulWithFullyConnectedPass::name ( void  ) const
inlinefinalvirtual

Reimplemented from logo::Pass.

Definition at line 30 of file FuseMulWithFullyConnectedPass.h.

30{ return "luci::FuseMulWithFullyConnectedPass"; }

◆ run()

bool luci::FuseMulWithFullyConnectedPass::run ( loco::Graph graph)
finalvirtual

Run the pass.

Returns
false if there was nothing changed

Implements logo::Pass.

Definition at line 227 of file FuseMulWithFullyConnectedPass.cpp.

228{
229 bool changed = false;
230 for (auto node : loco::active_nodes(loco::output_nodes(g)))
231 {
232 if (auto mul = dynamic_cast<luci::CircleMul *>(node))
233 {
234 if (fuse_mul_with_fc(mul))
235 changed = true;
236 }
237 }
238
239 return changed;
240}
MUL in Circle.
Definition CircleMul.h:34
std::set< loco::Node * > active_nodes(const std::vector< loco::Node * > &roots)
Enumerate all the nodes required to compute "roots".
std::vector< Node * > output_nodes(Graph *)
Definition Graph.cpp:101

References loco::active_nodes(), and loco::output_nodes().

Referenced by package.infer.session::inference().


The documentation for this struct was generated from the following files: