mirror of
https://github.com/zebrajr/tensorflow.git
synced 2025-12-06 00:19:58 +01:00
Update conv.cc
This commit is contained in:
parent
89928fa1c7
commit
9ddc001dae
|
|
@ -919,9 +919,9 @@ TfLiteStatus EvalImpl(TfLiteContext* context, TfLiteNode* node) {
|
|||
case kTfLiteFloat32:
|
||||
if (filter->type == kTfLiteUInt8 || filter->type == kTfLiteInt8) {
|
||||
if (data->is_hybrid_per_channel) {
|
||||
TF_LITE_ENSURE_OK(context,EvalHybridPerChannel<kernel_type>(
|
||||
context, node, params, data, input,
|
||||
filter, bias, im2col, output));
|
||||
TF_LITE_ENSURE_OK(context, EvalHybridPerChannel<kernel_type>(
|
||||
context, node, params, data, input,
|
||||
filter, bias, im2col, output));
|
||||
} else {
|
||||
TfLiteTensor* accum_scratch =
|
||||
&context->tensors[node->temporaries
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user