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

Class to fuse two Mean operations follow one by one into one Mean with merge reduction indices. More...

#include <FuseMeanWithMeanPass.h>

Collaboration diagram for luci::FuseMeanWithMeanPass:

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 two Mean operations follow one by one into one Mean with merge reduction indices.

Definition at line 29 of file FuseMeanWithMeanPass.h.

Member Function Documentation

◆ name()

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

Reimplemented from logo::Pass.

Definition at line 31 of file FuseMeanWithMeanPass.h.

31{ return "luci::FuseMeanWithMeanPass"; }

◆ run()

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

Run the pass.

Returns
false if there was nothing changed

Implements logo::Pass.

Definition at line 156 of file FuseMeanWithMeanPass.cpp.

157{
158 bool changed = false;
159 for (auto node : loco::active_nodes(loco::output_nodes(g)))
160 {
161 auto mean = dynamic_cast<luci::CircleMean *>(node);
162 if (not mean)
163 continue;
164
165 if (fuse_mean_with_mean(mean))
166 changed = true;
167 }
168
169 return changed;
170}
MEAN in Circle.
Definition CircleMean.h:32
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: