aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/ISubgraphViewConverter.hpp
diff options
context:
space:
mode:
authorMatteo Martincigh <matteo.martincigh@arm.com>2019-05-09 12:46:16 +0100
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-05-10 10:51:04 +0000
commit8492433df5eac916c4b7e0695bce63e222a564d4 (patch)
tree426a56a23bc6b5b8bcfaa74c41919c7ef2e02af0 /src/armnn/ISubgraphViewConverter.hpp
parentf3d102114a6f837f40400c4de50915abc488f3a5 (diff)
downloadarmnn-8492433df5eac916c4b7e0695bce63e222a564d4.tar.gz
IVGCVSW-3030 Refactor code and fix OptimizeSubgraphView
* Refactored the Optimizer code for readibility, in view of upcoming changes * Rename one of the ISubgraphViewConverter interface methods to give it a more meaningful name * Improved the OptimizationViews class, added comments and useful funtion overloads * Fixed an error in the default implementationof the new OptimizeSubgraphView method in IBackendInternal Change-Id: I683a56d562aa093bac06f0e83fb13e144ed81485 Signed-off-by: Matteo Martincigh <matteo.martincigh@arm.com>
Diffstat (limited to 'src/armnn/ISubgraphViewConverter.hpp')
-rw-r--r--src/armnn/ISubgraphViewConverter.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/armnn/ISubgraphViewConverter.hpp b/src/armnn/ISubgraphViewConverter.hpp
index 1f4b4e5de1..4b2c10298d 100644
--- a/src/armnn/ISubgraphViewConverter.hpp
+++ b/src/armnn/ISubgraphViewConverter.hpp
@@ -20,7 +20,7 @@ class ISubgraphViewConverter
public:
virtual ~ISubgraphViewConverter() {}
- virtual std::vector<CompiledBlobPtr> GetOutput() = 0;
+ virtual std::vector<CompiledBlobPtr> CompileNetwork() = 0;
};
} // namespace armnn