ONE - On-device Neural Engine
Loading...
Searching...
No Matches
exo::FoldReshapeOfConstPass Struct Referencefinal

Class to fuse TFLReshape + TFLConst into one equivalent TFLConst. More...

#include <FoldReshapeOfConstPass.h>

Collaboration diagram for exo::FoldReshapeOfConstPass:

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 fuse TFLReshape + TFLConst into one equivalent TFLConst.

<before> TFLConst — TFLReshape — Out

<after> TFLConst — TFLReshape — TFLConst (new) ---------— Out

TODO This pass is for temporary. Deprecate this pass.

Definition at line 37 of file FoldReshapeOfConstPass.h.

Member Function Documentation

◆ name()

const char * exo::FoldReshapeOfConstPass::name ( void  ) const
inlinefinalvirtual

Reimplemented from logo::Pass.

Definition at line 39 of file FoldReshapeOfConstPass.h.

39{ return "exo::FoldReshapeOfConstPass"; }

◆ run()

bool exo::FoldReshapeOfConstPass::run ( loco::Graph graph)
finalvirtual

Run the pass.

Returns
false if there was nothing changed

Implements logo::Pass.

Definition at line 101 of file FoldReshapeOfConstPass.cpp.

102{
103 bool changed = false;
104 for (auto node : loco::active_nodes(loco::output_nodes(g)))
105 {
106 if (auto reshape = as_candidate(node))
107 {
108 fold_reshape_of_const(reshape);
109 changed = true;
110 }
111 }
112
113 return changed;
114}
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: