aboutsummaryrefslogtreecommitdiff
path: root/src/backends/backendsCommon/common.mk
diff options
context:
space:
mode:
authorFrancis Murtagh <francis.murtagh@arm.com>2021-09-28 15:30:31 +0100
committerFrancis Murtagh <francis.murtagh@arm.com>2021-10-06 15:37:37 +0000
commitca49a24a2b19e4d8e45efc53e336223c5895f25a (patch)
tree37e14b5bec459e8a9ceb96557959176ba26fd56e /src/backends/backendsCommon/common.mk
parenteb5f810ad985a8cca831b46d94ee73db5a305c9f (diff)
downloadarmnn-ca49a24a2b19e4d8e45efc53e336223c5895f25a.tar.gz
IVGCVSW-6338 IMemoryOptimizerStrategy Create a wrapper validator strategy
* Add validator wrapper * Add validation logic: Condition #1: All Memblocks have been assigned to a MemBin Condition #2: No Memblock is assigned to multiple MemBins Condition #3: No two Memblocks overlap in both the X and Y axis Memblocks can overlap on the X axis for SingleAxisPacking Memblocks can overlap on the Y axis or the X for MultiAxisPacking but not both * Add test strategies and tests for overlap, duplicates and unassigned blocks Signed-off-by: Francis Murtagh <francis.murtagh@arm.com> Change-Id: I7a779b35538ecf18a33b62b84512eba69eda1f86
Diffstat (limited to 'src/backends/backendsCommon/common.mk')
-rw-r--r--src/backends/backendsCommon/common.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/backends/backendsCommon/common.mk b/src/backends/backendsCommon/common.mk
index 2795c9cc2f..910f9a4210 100644
--- a/src/backends/backendsCommon/common.mk
+++ b/src/backends/backendsCommon/common.mk
@@ -25,7 +25,8 @@ COMMON_SOURCES := \
WorkloadData.cpp \
WorkloadFactory.cpp \
WorkloadUtils.cpp \
- memoryOptimizationStrategies/ConstLayerMemoryOptimizerStrategy.cpp
+ memoryOptimizationStrategies/ConstLayerMemoryOptimizerStrategy.cpp \
+ memoryOptimizationStrategies/MemoryOptimizerStrategyValidator.cpp
# COMMON_TEST_SOURCES contains the list of files to be included
# in the Android unit test build (armnn-tests) and it is picked
@@ -101,7 +102,8 @@ COMMON_TEST_SOURCES := \
test/layerTests/SubtractionTestImpl.cpp \
test/layerTests/TransposeConvolution2dTestImpl.cpp \
test/layerTests/UnidirectionalSequenceLstmTestImpl.cpp \
- memoryOptimizationStrategies/test/ConstLayerMemoryOptimizerStrategyTests.cpp
+ memoryOptimizationStrategies/test/ConstLayerMemoryOptimizerStrategyTests.cpp \
+ memoryOptimizationStrategies/test/MemoryOptimizerStrategyValidatorTests.cpp
ifeq ($(ARMNN_REF_ENABLED),1)
COMMON_TEST_SOURCES += \