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

Class to resolve certain custom op of subgraph into batchmatmul op in circle schema. More...

#include <ResolveCustomOpBatchMatMulPass.h>

Collaboration diagram for luci::ResolveCustomOpBatchMatMulPass:

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 resolve certain custom op of subgraph into batchmatmul op in circle schema.

Definition at line 28 of file ResolveCustomOpBatchMatMulPass.h.

Member Function Documentation

◆ name()

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

Reimplemented from logo::Pass.

Definition at line 30 of file ResolveCustomOpBatchMatMulPass.h.

30{ return "luci::ResolveCustomOpBatchMatMulPass"; }

◆ run()

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

BEFORE | | [CircleNode] [CircleNode] \ / [CircleCustom]("BatchMatMulV2") | [CircleCustomOut] | [CircleNode] |

AFTER | | [CircleNode] [CircleNode] \ / [CircleBatchMatMul] | [CircleNode] |

Implements logo::Pass.

Definition at line 85 of file ResolveCustomOpBatchMatMulPass.cpp.

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