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

Class to remove Add+FloorMod guard ops of Gather. More...

#include <RemoveGatherGuardPass.h>

Collaboration diagram for luci::RemoveGatherGuardPass:

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 remove Add+FloorMod guard ops of Gather.

Note
If the indices of Gather is guarenteed to be positive by the user, Add/FloorMod guard ops can be removed. This pass is to remove Add+FloorMod having INT32/INT64 dtypes for some backends cannot process this in quantized models.

Definition at line 32 of file RemoveGatherGuardPass.h.

Member Function Documentation

◆ name()

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

Reimplemented from logo::Pass.

Definition at line 34 of file RemoveGatherGuardPass.h.

34{ return "luci::RemoveGatherGuardPass"; }

◆ run()

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

Run the pass.

Returns
false if there was nothing changed

Implements logo::Pass.

Definition at line 113 of file RemoveGatherGuardPass.cpp.

114{
115 bool changed = false;
116 for (auto node : loco::active_nodes(loco::output_nodes(g)))
117 {
118 if (auto gather = dynamic_cast<luci::CircleGather *>(node))
119 {
120 if (remove_guards(gather))
121 changed = true;
122 }
123 }
124 return changed;
125}
GATHER 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: