aboutsummaryrefslogtreecommitdiff
path: root/tests/MemoryStrategyBenchmark/TestStrategy.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/MemoryStrategyBenchmark/TestStrategy.hpp')
-rw-r--r--tests/MemoryStrategyBenchmark/TestStrategy.hpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/MemoryStrategyBenchmark/TestStrategy.hpp b/tests/MemoryStrategyBenchmark/TestStrategy.hpp
new file mode 100644
index 0000000000..80d8d570ba
--- /dev/null
+++ b/tests/MemoryStrategyBenchmark/TestStrategy.hpp
@@ -0,0 +1,31 @@
+//
+// Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+#pragma once
+
+#include <armnn/Types.hpp>
+#include <armnn/backends/IMemoryOptimizerStrategy.hpp>
+
+namespace armnn
+{
+// ConstLayerMemoryOptimizer: Create a unique MemBin for each MemBlock and assign it an offset of 0
+ class TestStrategy : public IMemoryOptimizerStrategy
+ {
+ public:
+ TestStrategy()
+ : m_Name(std::string("TestStrategy"))
+ , m_MemBlockStrategyType(MemBlockStrategyType::MultiAxisPacking) {}
+
+ std::string GetName() const override;
+
+ MemBlockStrategyType GetMemBlockStrategyType() const override;
+
+ std::vector<MemBin> Optimize(std::vector<MemBlock>& memBlocks) override;
+
+ private:
+ std::string m_Name;
+ MemBlockStrategyType m_MemBlockStrategyType;
+ };
+
+} // namespace armnn \ No newline at end of file