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

Class to Remove Unnecessary(input shape and output shape same) Reshape node. More...

#include <RemoveUnnecessaryReshapePass.h>

Collaboration diagram for luci::RemoveUnnecessaryReshapePass:

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 Remove Unnecessary(input shape and output shape same) Reshape node.

Definition at line 28 of file RemoveUnnecessaryReshapePass.h.

Member Function Documentation

◆ name()

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

Reimplemented from logo::Pass.

Definition at line 30 of file RemoveUnnecessaryReshapePass.h.

30{ return "luci::RemoveUnnecessaryReshapePass"; }

◆ run()

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

BEFORE [CircleNode] | [CircleReshape] | [CircleNode]

AFTER [CircleNode] | \ | [CircleReshape] | [CircleNode]

NOTE This pass will remove Reshape when input and output has same shape

Implements logo::Pass.

Definition at line 80 of file RemoveUnnecessaryReshapePass.cpp.

81{
82 bool changed = false;
83 for (auto node : loco::active_nodes(loco::output_nodes(g)))
84 {
85 auto circle_node = loco::must_cast<luci::CircleNode *>(node);
86 if (remove_no_effect_reshape(circle_node))
87 {
88 changed = true;
89 }
90 }
91 return changed;
92}
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: