From 29b49cf1771620233f9c16dfa0214e6d8a64c4d7 Mon Sep 17 00:00:00 2001 From: Sadik Armagan Date: Mon, 22 Feb 2021 18:09:07 +0000 Subject: IVGCVSW-5401 Implement the FILL operator * Added FILL operator to TfLite ArmNN Delegate * Added unit tests Signed-off-by: David Monahan Signed-off-by: Sadik Armagan Change-Id: I335ef469ff773fa4305eb87f6e93ae9c03fc6997 --- delegate/src/test/TestUtils.hpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'delegate/src/test/TestUtils.hpp') diff --git a/delegate/src/test/TestUtils.hpp b/delegate/src/test/TestUtils.hpp index d14e1edb45..8a2756f4c5 100644 --- a/delegate/src/test/TestUtils.hpp +++ b/delegate/src/test/TestUtils.hpp @@ -51,6 +51,9 @@ void CompareData(uint8_t tensor1[], uint8_t tensor2[], size_t tensorSize); /// Can be used to compare int16_t data coming from a tflite interpreter with a tolerance of 1 void CompareData(int16_t tensor1[], int16_t tensor2[], size_t tensorSize); +/// Can be used to compare int32_t data coming from a tflite interpreter with a tolerance of 1 +void CompareData(int32_t tensor1[], int32_t tensor2[], size_t tensorSize); + /// Can be used to compare Half (Float16) data with a tolerance of limit_of_float*100 void CompareData(Half tensor1[], Half tensor2[], size_t tensorSize); -- cgit v1.2.1