MCPcopy Create free account
hub / github.com/OAID/Tengine / BiasOps

Class BiasOps

executor/operator/ref/ref_bias.cpp:18–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16namespace RefBiasOps {
17
18struct BiasOps : public MTNodeOps
19{
20 bool Prerun(Node* node) override;
21 //bool OnBind(Node* node) override;
22 bool Run(Node* node) override;
23 void InitRegistry(void);
24
25 ref_bias_t kernel_run;
26
27 KernelRegistry<ref_bias_t> kernel_registry;
28
29 BiasOps(void)
30 {
31 kernel_run = nullptr;
32
33 InitRegistry();
34 }
35};
36
37bool BiasOps::Prerun(Node* node)
38{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected