aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl
diff options
context:
space:
mode:
authorNarumol Prangnawarat <narumol.prangnawarat@arm.com>2019-10-01 11:32:10 +0100
committerNarumol Prangnawarat <narumol.prangnawarat@arm.com>2019-10-01 15:50:00 +0000
commit680f9911d9d9b369fe321ee2dad014012fb5b20f (patch)
tree30e0650d06a6fa3e1a3c0ac58ae771977c04d3d2 /src/backends/cl
parent86bc3d8ff06a9b59565504dfda02b3fcaab2b2c9 (diff)
downloadarmnn-680f9911d9d9b369fe321ee2dad014012fb5b20f.tar.gz
IVGCVSW-3882 Update ACL pin
* Update ACL pin to include change of ArgMinMax NEON/CL output type to Signed32 !android-nn-driver:2013 Signed-off-by: Narumol Prangnawarat <narumol.prangnawarat@arm.com> Change-Id: I2a0c80e0557f619a213790027efca8b84bf6e58a
Diffstat (limited to 'src/backends/cl')
-rw-r--r--src/backends/cl/ClTensorHandle.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backends/cl/ClTensorHandle.hpp b/src/backends/cl/ClTensorHandle.hpp
index d08b79f9a6..f5583c0b97 100644
--- a/src/backends/cl/ClTensorHandle.hpp
+++ b/src/backends/cl/ClTensorHandle.hpp
@@ -12,8 +12,8 @@
#include <arm_compute/runtime/CL/CLTensor.h>
#include <arm_compute/runtime/CL/CLSubTensor.h>
-#include <arm_compute/runtime/CL/CLMemoryGroup.h>
#include <arm_compute/runtime/IMemoryGroup.h>
+#include <arm_compute/runtime/MemoryGroup.h>
#include <arm_compute/core/TensorShape.h>
#include <arm_compute/core/Coordinates.h>
@@ -72,7 +72,7 @@ public:
virtual void SetMemoryGroup(const std::shared_ptr<arm_compute::IMemoryGroup>& memoryGroup) override
{
- m_MemoryGroup = boost::polymorphic_pointer_downcast<arm_compute::CLMemoryGroup>(memoryGroup);
+ m_MemoryGroup = boost::polymorphic_pointer_downcast<arm_compute::MemoryGroup>(memoryGroup);
}
TensorShape GetStrides() const override
@@ -151,7 +151,7 @@ private:
}
arm_compute::CLTensor m_Tensor;
- std::shared_ptr<arm_compute::CLMemoryGroup> m_MemoryGroup;
+ std::shared_ptr<arm_compute::MemoryGroup> m_MemoryGroup;
};
class ClSubTensorHandle : public IClTensorHandle