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

Class to generate FC-Gelu-FC from a certain Op pattern. More...

#include <ReplaceWithFCGeluFCPass.h>

Collaboration diagram for luci::ReplaceWithFCGeluFCPass:

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 generate FC-Gelu-FC from a certain Op pattern.

To see the target Op pattern, please visit implementation. NOTE: The target pattern includes FC fused with div/mul Ops.

Definition at line 31 of file ReplaceWithFCGeluFCPass.h.

Member Function Documentation

◆ name()

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

Reimplemented from logo::Pass.

Definition at line 33 of file ReplaceWithFCGeluFCPass.h.

33{ return "luci::ReplaceWithFCGeluFCPass"; }

◆ run()

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

Run the pass.

Returns
false if there was nothing changed

Implements logo::Pass.

Definition at line 299 of file ReplaceWithFCGeluFCPass.cpp.

300{
301 bool changed = false;
302
303 for (auto node : loco::active_nodes(loco::output_nodes(g)))
304 {
305 auto fc = dynamic_cast<luci::CircleFullyConnected *>(node);
306 if (not fc)
307 continue;
308
309 if (replace_fc_gelu_fc(fc))
310 changed = true;
311 }
312
313 return changed;
314}
FULLY_CONNECTED in Circle.
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: