From ebe392df1635790bf21714549adb97f2f75559e1 Mon Sep 17 00:00:00 2001 From: Matthew Sloyan Date: Thu, 30 Mar 2023 10:12:08 +0100 Subject: IVGCVSW-7562 Implement DelegateTestInterpreter for classic delegate * Updated all tests to use new DelegateTestInterpreter. * Fixed some unit tests where the shape was incorrect. * Add file identifier to FlatBuffersBuilder, as it is required for validation when creating the model using new API. Signed-off-by: Matthew Sloyan Change-Id: I1c4f5464367b35d4528571fa94d14bfaef18fb4d --- delegate/test/DepthwiseConvolution2dTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'delegate/test/DepthwiseConvolution2dTest.cpp') diff --git a/delegate/test/DepthwiseConvolution2dTest.cpp b/delegate/test/DepthwiseConvolution2dTest.cpp index 9ee589c977..5fdbfc4801 100644 --- a/delegate/test/DepthwiseConvolution2dTest.cpp +++ b/delegate/test/DepthwiseConvolution2dTest.cpp @@ -25,7 +25,7 @@ void DepthwiseConv2dValidReluFp32Test(std::vector& backends) std::vector inputShape { 1, 3, 2, 2 }; std::vector filterShape { 1, 2, 2, 4 }; std::vector biasShape { 4 }; - std::vector outputShape { 1, 3, 3, 1 }; + std::vector outputShape { 1, 2, 1, 4 }; static std::vector inputValues = { -- cgit v1.2.1