diff --git a/tensorflow/lite/kernels/kernel_util.cc b/tensorflow/lite/kernels/kernel_util.cc index f986655f413..e2fe5f260b4 100644 --- a/tensorflow/lite/kernels/kernel_util.cc +++ b/tensorflow/lite/kernels/kernel_util.cc @@ -283,8 +283,7 @@ TfLiteStatus GetQuantizedConvolutionMultipler(TfLiteContext* context, double* multiplier) { const double input_product_scale = static_cast(input->params.scale) * static_cast(filter->params.scale); - // TODO(ahentz): The following conditions must be guaranteed by the training - // pipeline. + // The following conditions must be guaranteed by the training pipeline. if (bias) { const double bias_scale = static_cast(bias->params.scale); // Here we're making sure the input_product_scale & bias_scale are about the