From 261016b03461ab3cbd86ccd756c441c98daa1bf0 Mon Sep 17 00:00:00 2001 From: Fredrik Knutsson Date: Wed, 14 Oct 2020 16:01:40 +0200 Subject: [PATCH] Include stm32f4 target Change-Id: I4c57b84a3ea735360a4bde89a906401121dbad0b --- tensorflow/lite/micro/benchmarks/Makefile.inc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tensorflow/lite/micro/benchmarks/Makefile.inc b/tensorflow/lite/micro/benchmarks/Makefile.inc index b50a51758c0..a47bc2e723a 100644 --- a/tensorflow/lite/micro/benchmarks/Makefile.inc +++ b/tensorflow/lite/micro/benchmarks/Makefile.inc @@ -27,15 +27,9 @@ tensorflow/lite/micro/examples/person_detection_experimental/person_detect_model $(eval $(call microlite_test,keyword_benchmark,\ $(KEYWORD_BENCHMARK_SRCS),$(KEYWORD_BENCHMARK_HDRS))) -# We can not build the person detection benchmarks for STM32F4 due to -# insufficient flash (see issue #43743 for more details). Currently disabling -# this benchmark for STM32F4 but we can revisit this later. -ifneq ($(TARGET), stm32f4) - $(eval $(call microlite_test,person_detection_benchmark,\ $(PERSON_DETECTION_BENCHMARK_SRCS),$(PERSON_DETECTION_BENCHMARK_HDRS))) $(eval $(call microlite_test,person_detection_experimental_benchmark,\ $(PERSON_DETECTION_EXPERIMENTAL_BENCHMARK_SRCS),$(PERSON_DETECTION_EXPERIMENTAL_BENCHMARK_HDRS))) -endif