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

Function _mul

executor/operator/common/rpn.cpp:69–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67 Y[i] += 1.f;
68}
69void _mul(const int N, const float* a, const float* b, float* y)
70{
71 for(int i = 0; i < N; i++)
72 y[i] = a[i] * b[i];
73}
74void _add(const int N, const float* a, const float* b, float* y)
75{
76 for(int i = 0; i < N; i++)

Callers 1

bbox_tranform_invFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected