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

Class to Remove Unnecessary(input and output are same) Slice node. More...

#include <RemoveUnnecessarySlicePass.h>

Collaboration diagram for luci::RemoveUnnecessarySlicePass:

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 and output are same) Slice node.

Definition at line 28 of file RemoveUnnecessarySlicePass.h.

Member Function Documentation

◆ name()

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

Reimplemented from logo::Pass.

Definition at line 30 of file RemoveUnnecessarySlicePass.h.

30{ return "luci::RemoveUnnecessarySlicePass"; }

◆ run()

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

BEFORE

[CircleNode] | [CircleSlice] | [CircleNode]

AFTER

[CircleNode] | [CircleNode]

Slice OP has no effect if,

  1. Static Shape : begin_const[idx] is 0 AND size_const[idx] is (-1 OR input_dimension[idx])
  2. Dynamic Shape : begin_const[idx] is 0 AND size_const[idx] is -1

Implements logo::Pass.

Definition at line 97 of file RemoveUnnecessarySlicePass.cpp.

98{
99 bool changed = false;
100 for (auto node : loco::active_nodes(loco::output_nodes(g)))
101 {
102 auto circle_node = loco::must_cast<luci::CircleNode *>(node);
103 if (remove_no_effect_slice(circle_node))
104 {
105 changed = true;
106 }
107 }
108 return changed;
109}
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: