MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / RsqrtEval

Function RsqrtEval

tensorflow/lite/kernels/elementwise.cc:98–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96}
97
98TfLiteStatus RsqrtEval(TfLiteContext* context, TfLiteNode* node) {
99 return EvalNumeric(context, node, [](float f) { return 1.f / std::sqrt(f); });
100}
101
102TfLiteStatus SquareEval(TfLiteContext* context, TfLiteNode* node) {
103 return EvalNumeric(context, node, [](float f) { return f * f; });

Callers

nothing calls this directly

Calls 2

EvalNumericFunction · 0.70
sqrtFunction · 0.50

Tested by

no test coverage detected