From 646bc8a52d5012486646c02e3b4940def6f85a47 Mon Sep 17 00:00:00 2001 From: David Monahan Date: Mon, 31 Jan 2022 14:29:14 +0000 Subject: IVGCVSW-6696 Add Forced Import EndToEnd tests to Ref, Neon, and CL * Created EndToEnd tests with Misaligned buffers but import is forced * Added the Aligned Tests from a previous patch to avoid merge conflicts * Previous Aligned EndToEnd test for ref has been added to backendsCommon and is now used for neon as well * Added to Ref, Neon, and Gpu Backends * Neon tests only check for copies as reconfigure has not been implemented for the Neon backend yet Signed-off-by: David Monahan Signed-off-by: Narumol Prangnawarat Change-Id: I12ddf5780201044834d6d1bbeebce60a4614efd1 --- src/backends/cl/test/ClEndToEndTests.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/backends/cl') diff --git a/src/backends/cl/test/ClEndToEndTests.cpp b/src/backends/cl/test/ClEndToEndTests.cpp index 9e0137eb37..fa6e027865 100644 --- a/src/backends/cl/test/ClEndToEndTests.cpp +++ b/src/backends/cl/test/ClEndToEndTests.cpp @@ -514,4 +514,19 @@ TEST_CASE("ClQLstmEndToEndTest") QLstmEndToEnd(clDefaultBackends); } +TEST_CASE("ClForceImportWithMisalignedInputBuffersEndToEndTest") +{ + ForceImportWithMisalignedInputBuffersEndToEndTest(clDefaultBackends); +} + +TEST_CASE("ClForceImportWithMisalignedOutputBuffersEndToEndTest") +{ + ForceImportWithMisalignedOutputBuffersEndToEndTest(clDefaultBackends); +} + +TEST_CASE("ClForceImportWithMisalignedInputAndOutputBuffersEndToEndTest") +{ + ForceImportWithMisalignedInputAndOutputBuffersEndToEndTest(clDefaultBackends); +} + } -- cgit v1.2.1