aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/backends/test/Reference.cpp
diff options
context:
space:
mode:
authorDavid Beck <david.beck@arm.com>2018-09-12 16:00:08 +0100
committerMatthew Bentham <matthew.bentham@arm.com>2018-10-01 14:56:47 +0100
commit5cd01f35e8975ca6d42eb5f2d5f121b57bdb8086 (patch)
treeab11b97baa21458ba60e34566e6e7699281c764d /src/armnn/backends/test/Reference.cpp
parent279f8721824b104def48b426447fb1766d794e8e (diff)
downloadarmnn-5cd01f35e8975ca6d42eb5f2d5f121b57bdb8086.tar.gz
IVGCVSW-1832: add missing DIV quantized, broadcasting tests
Change-Id: I042b71e77d175163837bf39d5703ada08d25e532
Diffstat (limited to 'src/armnn/backends/test/Reference.cpp')
-rw-r--r--src/armnn/backends/test/Reference.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/armnn/backends/test/Reference.cpp b/src/armnn/backends/test/Reference.cpp
index 20e68d0ea1..62786a9ec4 100644
--- a/src/armnn/backends/test/Reference.cpp
+++ b/src/armnn/backends/test/Reference.cpp
@@ -160,6 +160,11 @@ ARMNN_AUTO_TEST_CASE(SimpleDivision, DivisionTest)
ARMNN_AUTO_TEST_CASE(DivisionByZero, DivisionByZeroTest)
ARMNN_AUTO_TEST_CASE(DivisionBroadcast1Element, DivisionBroadcast1ElementTest)
ARMNN_AUTO_TEST_CASE(DivisionBroadcast1DVector, DivisionBroadcast1DVectorTest)
+// NOTE: division by zero for quantized div needs more attention
+// see IVGCVSW-1849
+ARMNN_AUTO_TEST_CASE(DivisionUint8, DivisionUint8Test)
+ARMNN_AUTO_TEST_CASE(DivisionUint8Broadcast1Element, DivisionBroadcast1ElementUint8Test)
+ARMNN_AUTO_TEST_CASE(DivisionUint8Broadcast1DVector, DivisionBroadcast1DVectorUint8Test)
// Mul
ARMNN_AUTO_TEST_CASE(SimpleMultiplication, MultiplicationTest)