Home
last modified time | relevance | path

Searched refs:hasBias (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/contrib/lite/kernels/
Dconv.cc114 bool hasBias = node->inputs->size == 3; in Prepare() local
116 TF_LITE_ENSURE(context, hasBias || node->inputs->size == 2); in Prepare()
138 TF_LITE_ENSURE(context, hasBias); in Prepare()
140 if (hasBias) { in Prepare()
178 TF_LITE_ENSURE(context, hasBias); in Prepare()
404 bool hasBias = node->inputs->size == 3; in Eval() local
406 hasBias ? &context->tensors[node->inputs->data[2]] : nullptr; in Eval()
Ddepthwise_conv.cc83 bool hasBias = NumInputs(node) == 3; in Prepare() local
85 TF_LITE_ENSURE(context, hasBias || NumInputs(node) == 2); in Prepare()
108 if (hasBias) { in Prepare()