Skip to content

Commit e3ac890

Browse files
authored
Fix missing includes for printf (#3023)
BUG=quick fix for missing includes
1 parent e425abb commit e3ac890

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

tensorflow/lite/micro/kernels/conv_common.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ limitations under the License.
2020
#include "tensorflow/lite/kernels/padding.h"
2121
#include "tensorflow/lite/micro/kernels/conv.h"
2222
#include "tensorflow/lite/micro/kernels/kernel_util.h"
23+
#include "tensorflow/lite/micro/micro_log.h"
2324

2425
namespace tflite {
2526

tensorflow/lite/micro/kernels/depthwise_conv_common.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ limitations under the License.
2424
#include "tensorflow/lite/kernels/padding.h"
2525
#include "tensorflow/lite/micro/kernels/depthwise_conv.h"
2626
#include "tensorflow/lite/micro/kernels/kernel_util.h"
27+
#include "tensorflow/lite/micro/micro_log.h"
2728

2829
namespace tflite {
2930

0 commit comments

Comments
 (0)