From 2426dfed5e2b13c6a0b72f31d6eff68dafb354cb Mon Sep 17 00:00:00 2001 From: Advait Jain Date: Mon, 5 Oct 2020 14:11:47 -0700 Subject: [PATCH] updated comments. --- tensorflow/lite/micro/kernels/fully_connected.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow/lite/micro/kernels/fully_connected.h b/tensorflow/lite/micro/kernels/fully_connected.h index 31b17689be8..3e6467183fe 100644 --- a/tensorflow/lite/micro/kernels/fully_connected.h +++ b/tensorflow/lite/micro/kernels/fully_connected.h @@ -27,8 +27,8 @@ TfLiteRegistration Register_FULLY_CONNECTED(); #if defined(CMSIS_NN) || defined(ARDUINO) // The Arduino is a special case where we use the CMSIS kernels, but because of // the current approach to building for Arduino, we do not support -DCMSIS_NN as -// part of the Arduino build. As a result, we use defined(ARDUINO) as a way to -// proxy for defined(CMSIS_NN) for this one special case. +// part of the build. As a result, we use defined(ARDUINO) as proxy for the +// CMSIS kernels for this one special case. // Returns a TfLiteRegistration struct for cmsis-nn kernel variant that only // supports int8.