Home
last modified time | relevance | path

Searched refs:EvalImpl (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/lite/kernels/
Dunique.cc61 TfLiteStatus EvalImpl(TfLiteContext* context, const TfLiteTensor* input, in EvalImpl() function
98 TfLiteStatus EvalImpl(TfLiteContext* context, const TfLiteTensor* input, in EvalImpl() function
107 return EvalImpl<T, int32_t>(context, input, node); in EvalImpl()
109 return EvalImpl<T, int64_t>(context, input, node); in EvalImpl()
129 TF_LITE_ENSURE_STATUS(EvalImpl<int8_t>(context, input, node)); in Eval()
132 TF_LITE_ENSURE_STATUS(EvalImpl<int16_t>(context, input, node)); in Eval()
135 TF_LITE_ENSURE_STATUS(EvalImpl<int32_t>(context, input, node)); in Eval()
138 TF_LITE_ENSURE_STATUS(EvalImpl<int64_t>(context, input, node)); in Eval()
141 TF_LITE_ENSURE_STATUS(EvalImpl<float>(context, input, node)); in Eval()
144 TF_LITE_ENSURE_STATUS(EvalImpl<uint8_t>(context, input, node)); in Eval()
Dfloor_mod.cc105 TfLiteStatus EvalImpl(TfLiteContext* context, bool requires_broadcast, in EvalImpl() function
144 return EvalImpl<int32_t>(context, data->requires_broadcast, input1, in Eval()
148 return EvalImpl<int64_t>(context, data->requires_broadcast, input1, in Eval()
152 return EvalImpl<float>(context, data->requires_broadcast, input1, input2, in Eval()
Drange.cc119 void EvalImpl(const TfLiteTensor* start, const TfLiteTensor* delta, in EvalImpl() function
146 EvalImpl<int32_t>(start, delta, output); in Eval()
150 EvalImpl<float>(start, delta, output); in Eval()
Delementwise.cc54 inline TfLiteStatus EvalImpl(TfLiteContext* context, TfLiteNode* node, in EvalImpl() function
70 return EvalImpl<float>(context, node, float_func, kTfLiteFloat32); in EvalNumeric()
75 return EvalImpl<bool>(context, node, bool_func, kTfLiteBool); in EvalLogical()
Dfloor_div.cc87 TfLiteStatus EvalImpl(TfLiteContext* context, bool requires_broadcast, in EvalImpl() function
123 return EvalImpl<int32_t>(context, data->requires_broadcast, input1, in Eval()