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

Class to fold Cast to a constant tensor. More...

#include <FoldCastPass.h>

Collaboration diagram for luci::FoldCastPass:

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 fold Cast to a constant tensor.

Definition at line 29 of file FoldCastPass.h.

Member Function Documentation

◆ name()

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

Reimplemented from logo::Pass.

Definition at line 31 of file FoldCastPass.h.

31{ return "luci::FoldCastPass"; }

◆ run()

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

Constant Folding for Cast Op

Implements logo::Pass.

Definition at line 110 of file FoldCastPass.cpp.

111{
112 bool changed = false;
113 for (auto node : loco::active_nodes(loco::output_nodes(g)))
114 {
115 if (auto cast = dynamic_cast<luci::CircleCast *>(node))
116 {
117 if (fold_cast(cast))
118 changed = true;
119 }
120 }
121
122 return changed;
123}
CAST in Circle.
Definition CircleCast.h:32
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: