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

Class to Substitute Pack with 1 input to single reshape node. More...

#include <SubstitutePackToReshapePass.h>

Collaboration diagram for luci::SubstitutePackToReshapePass:

Public Member Functions

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

Detailed Description

Class to Substitute Pack with 1 input to single reshape node.

Definition at line 28 of file SubstitutePackToReshapePass.h.

Member Function Documentation

◆ name()

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

Reimplemented from logo::Pass.

Definition at line 30 of file SubstitutePackToReshapePass.h.

30{ return "luci::SubstitutePackToReshapePass"; }

◆ run()

bool luci::SubstitutePackToReshapePass::run ( loco::Graph g)
finalvirtual

BEFORE | [CircleNode] | [CirclePack] | [CircleNode] |

AFTER | [CircleNode] [CircleConst] | \ / [CirclePack] [CircleReshape] | [CircleNode] |

Implements logo::Pass.

Definition at line 113 of file SubstitutePackToReshapePass.cpp.

114{
115 bool changed = false;
116 for (auto node : loco::active_nodes(loco::output_nodes(g)))
117 {
118 auto circle_node = loco::must_cast<luci::CircleNode *>(node);
119 if (unknown_dim_count(circle_node) <= 1 && substitute_pack_to_reshape(circle_node))
120 {
121 changed = true;
122 }
123 }
124 return changed;
125}
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: