Skip to content

Commit

Permalink
Disable DTLN test on hifimini & VP6 (#2391)
Browse files Browse the repository at this point in the history
The new DTLN test is failing on HiFi Mini & VP6. This PR disables the test on those targets while being investigated.

BUG=b/319712246
  • Loading branch information
rascani authored Jan 11, 2024
1 parent 7a63bce commit a3296d6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tensorflow/lite/micro/examples/dtln/Makefile.inc
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,8 @@ include $(wildcard $(TENSORFLOW_ROOT)tensorflow/lite/micro/examples/dtln/*/Makef
CCFLAGS := $(filter-out $(CC_WARNINGS),$(CCFLAGS))

# Tests loading and running a dtln model.
$(eval $(call microlite_test,dtln_test,\
$(DTLN_TEST_SRCS),$(DTLN_TEST_HDRS),$(DTLN_GENERATOR_INPUTS)))
# TODO(b/319712246): Re-enable tests once the dtln_test works on HiFi Mini & VP6
ifneq ($(TARGET_ARCH), $(filter $(TARGET_ARCH), hifimini vision_p6))
$(eval $(call microlite_test,dtln_test,\
$(DTLN_TEST_SRCS),$(DTLN_TEST_HDRS),$(DTLN_GENERATOR_INPUTS)))
endif

0 comments on commit a3296d6

Please sign in to comment.