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

Class to decompose Softmax into backend friendly structures. More...

#include <DecomposeSoftmaxPass.h>

Collaboration diagram for luci::DecomposeSoftmaxPass:

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 decompose Softmax into backend friendly structures.

Definition at line 28 of file DecomposeSoftmaxPass.h.

Member Function Documentation

◆ name()

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

Reimplemented from logo::Pass.

Definition at line 30 of file DecomposeSoftmaxPass.h.

30{ return "luci::DecomposeSoftmaxPass"; }

◆ run()

bool luci::DecomposeSoftmaxPass::run ( loco::Graph graph)
finalvirtual

Run the pass.

Returns
false if there was nothing changed

Implements logo::Pass.

Definition at line 162 of file DecomposeSoftmaxPass.cpp.

163{
164 bool changed = false;
165
166 for (auto node : loco::active_nodes(loco::output_nodes(g)))
167 {
168 if (auto softmax = dynamic_cast<luci::CircleSoftmax *>(node))
169 {
170 if (decompose_softmax(softmax))
171 changed = true;
172 }
173 }
174
175 return changed;
176}
SOFTMAX in Circle.
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: