From c840263cb524bec4a1911b81d6300a34fe05a599 Mon Sep 17 00:00:00 2001 From: Sadik Armagan Date: Fri, 10 Sep 2021 11:40:54 +0100 Subject: IVGCVSW-6339 'IMemoryOptimizerStrategy Add backend capabilities' * Added ExternallyManagedMemory capability, set false for backends * Added MultiAxisPacking capability, set false for backends Signed-off-by: Sadik Armagan Change-Id: I96a2b66ed069a82552dae33f6e8ebe067bbd6c44 --- src/backends/backendsCommon/test/CompatibilityTests.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'src/backends/backendsCommon/test') diff --git a/src/backends/backendsCommon/test/CompatibilityTests.cpp b/src/backends/backendsCommon/test/CompatibilityTests.cpp index ff842e9c56..e1462e0d2e 100644 --- a/src/backends/backendsCommon/test/CompatibilityTests.cpp +++ b/src/backends/backendsCommon/test/CompatibilityTests.cpp @@ -180,7 +180,9 @@ TEST_CASE ("Ref_Backends_Capability_Test") {"AsyncExecution", true}, {"ProtectedContentAllocation", false}, {"ConstantTensorsAsInputs", true}, - {"PreImportIOTensors", false}}); + {"PreImportIOTensors", false}, + {"ExternallyManagedMemory", false}, + {"MultiAxisPacking", false}}); } #endif @@ -197,7 +199,9 @@ TEST_CASE ("Neon_Backends_Capability_Test") {"AsyncExecution", false}, {"ProtectedContentAllocation", false}, {"ConstantTensorsAsInputs", false}, - {"PreImportIOTensors", false}}); + {"PreImportIOTensors", false}, + {"ExternallyManagedMemory", false}, + {"MultiAxisPacking", false}}); } #endif @@ -214,7 +218,9 @@ TEST_CASE ("Cl_Backends_Capability_Test") {"AsyncExecution", false}, {"ProtectedContentAllocation", true}, {"ConstantTensorsAsInputs", false}, - {"PreImportIOTensors", false}}); + {"PreImportIOTensors", false}, + {"ExternallyManagedMemory", false}, + {"MultiAxisPacking", false}}); } #endif -- cgit v1.2.1