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

Class to Replace Sub With Add. More...

#include <ReplaceSubWithAddPass.h>

Collaboration diagram for luci::ReplaceSubWithAddPass:

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 Replace Sub With Add.

Definition at line 29 of file ReplaceSubWithAddPass.h.

Member Function Documentation

◆ name()

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

Reimplemented from logo::Pass.

Definition at line 31 of file ReplaceSubWithAddPass.h.

31{ return "luci::ReplaceSubWithAddPass"; }

◆ run()

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

Run the pass.

Returns
false if there was nothing changed

Implements logo::Pass.

Definition at line 61 of file ReplaceSubWithAddPass.cpp.

62{
63 bool changed = false;
64 for (auto node : loco::active_nodes(loco::output_nodes(g)))
65 {
66 if (auto sub = dynamic_cast<luci::CircleSub *>(node))
67 {
68 if (replace_sub_with_const_rhs(sub))
69 changed = true;
70 }
71 }
72
73 return changed;
74}
SUB in Circle.
Definition CircleSub.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: