From 6642b8a1f23c5f7333abf1133983eb3134af7c00 Mon Sep 17 00:00:00 2001 From: David Monahan Date: Thu, 4 Nov 2021 16:31:46 +0000 Subject: IVGCVSW-6412 Implement CLBackend ICustomAllocator * Added implementation of ClBackendDefaultAllocator * Added back in some pure virtual functions that were mistakenly removed from the CustomMemoryAllocatorSample * Added a new Gralloc MemorySource for memory which originates from the gpu * Added unittests Signed-off-by: David Monahan Change-Id: Id2abb33d82697df36426f5709756c616af3e8ed7 --- include/armnn/Types.hpp | 3 ++- include/armnn/backends/ICustomAllocator.hpp | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/armnn/Types.hpp b/include/armnn/Types.hpp index f61a1fdca8..72c59d9daa 100644 --- a/include/armnn/Types.hpp +++ b/include/armnn/Types.hpp @@ -219,7 +219,8 @@ enum class MemorySource : uint32_t Undefined = 0, Malloc = 1, DmaBuf = 2, - DmaBufProtected = 4 + DmaBufProtected = 4, + Gralloc = 5 }; enum class MemBlockStrategyType diff --git a/include/armnn/backends/ICustomAllocator.hpp b/include/armnn/backends/ICustomAllocator.hpp index eb8dfe1459..59ad27c6f4 100644 --- a/include/armnn/backends/ICustomAllocator.hpp +++ b/include/armnn/backends/ICustomAllocator.hpp @@ -36,8 +36,7 @@ public: * Supported types are: * MemorySource::Malloc * MemorySource::DmaBuf - * Unsupported types are: - * MemorySource::DmaBufProtected + * MemorySource::DmaBufProtected */ virtual armnn::MemorySource GetMemorySourceType() = 0; -- cgit v1.2.1