From ca7c72bbbd6cd95ce3f4585e9eca1239acce31ff Mon Sep 17 00:00:00 2001 From: Tiezhen WANG Date: Tue, 5 Jan 2021 20:46:03 -0800 Subject: [PATCH] TFLM: Fix typo in cmsis conv.cc There is no kernel_utils.cc only kernel_util.cc PiperOrigin-RevId: 350275273 Change-Id: I847a5f35ba69c30291ecc1537ec9226c7e205a9b --- tensorflow/lite/micro/kernels/cmsis-nn/conv.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/lite/micro/kernels/cmsis-nn/conv.cc b/tensorflow/lite/micro/kernels/cmsis-nn/conv.cc index f74a8622fde..b13149d6dd4 100644 --- a/tensorflow/lite/micro/kernels/cmsis-nn/conv.cc +++ b/tensorflow/lite/micro/kernels/cmsis-nn/conv.cc @@ -157,7 +157,7 @@ TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) { // Dynamically allocate per-channel quantization parameters. // TODO(#42883): This allocation is done even for non-int8 cases to get around - // a bug in kernel_utils.cc which incorrectly uses per_channel_output_shift in + // a bug in kernel_util.cc which incorrectly uses per_channel_output_shift in // non-int8 cases. Protect this section with a if (input->type == kTfLiteInt8) // when the issue is fixed. const int num_channels = filter->dims->data[kConvQuantizedDimension];