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

Class to convert a custom operator to a built-in operator. More...

#include <ResolveFormerCustomOpPass.h>

Collaboration diagram for luci::ResolveFormerCustomOpPass:

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 convert a custom operator to a built-in operator.

This pass changes a op formerly used as a custom op to builtin op from schema version upgrade.

Definition at line 31 of file ResolveFormerCustomOpPass.h.

Member Function Documentation

◆ name()

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

Reimplemented from logo::Pass.

Definition at line 33 of file ResolveFormerCustomOpPass.h.

33{ return "luci::ResolveFormerCustomOpPass"; }

◆ run()

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

Run the pass.

Returns
false if there was nothing changed

Implements logo::Pass.

Definition at line 81 of file ResolveFormerCustomOpPass.cpp.

82{
83 bool changed = false;
84
85 for (auto node : loco::active_nodes(loco::output_nodes(g)))
86 {
87 auto cop = dynamic_cast<luci::CircleCustom *>(node);
88 if (not cop)
89 continue;
90
91 if (resolve_custom_op(cop))
92 changed = true;
93 }
94
95 return changed;
96}
CUSTOM 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: