From 974e5b60a4d6e3147ce7869940d1e291bf9af95a Mon Sep 17 00:00:00 2001 From: Aron Virginas-Tar Date: Thu, 11 Jul 2019 14:57:01 +0100 Subject: Update ACL pin to d473386e4d5e0edcf55e13a2bf3c422a23fac0de * Includes fixes for ResizeNearestNeighbor on CL and NEON !android-nn-driver:1523 Signed-off-by: Aron Virginas-Tar Change-Id: I959e43cab21dce10a9072320fada11fcb57d41f2 --- scripts/get_compute_library.sh | 2 +- src/backends/neon/workloads/NeonDepthwiseConvolutionWorkload.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/get_compute_library.sh b/scripts/get_compute_library.sh index 316e3000d5..5b49995e7c 100755 --- a/scripts/get_compute_library.sh +++ b/scripts/get_compute_library.sh @@ -10,7 +10,7 @@ CMD=$( basename $0 ) #DEFAULT_CLFRAMEWORKREVISION="branches/arm_compute_19_05" # Release 19.05 # # For pinning to a revision use this: -DEFAULT_CLFRAMEWORKREVISION="7bb56c6337997281df10fa28ad7924c921b920eb" +DEFAULT_CLFRAMEWORKREVISION="d473386e4d5e0edcf55e13a2bf3c422a23fac0de" usage() { echo "Usage: $CMD (Use the default clframework SHA)" diff --git a/src/backends/neon/workloads/NeonDepthwiseConvolutionWorkload.cpp b/src/backends/neon/workloads/NeonDepthwiseConvolutionWorkload.cpp index a685b8a49d..7b8e36827a 100644 --- a/src/backends/neon/workloads/NeonDepthwiseConvolutionWorkload.cpp +++ b/src/backends/neon/workloads/NeonDepthwiseConvolutionWorkload.cpp @@ -124,8 +124,8 @@ NeonDepthwiseConvolutionWorkload::NeonDepthwiseConvolutionWorkload( bool use3x3Optimisation = (weightInfo.GetShape()[2] == 3) && (weightInfo.GetShape()[3] == 3); if (use3x3Optimisation) { - m_pDepthwiseConvolutionLayer = std::make_unique(); - static_cast( + m_pDepthwiseConvolutionLayer = std::make_unique(); + static_cast( m_pDepthwiseConvolutionLayer.get())->configure(&input, m_KernelTensor.get(), m_BiasTensor.get(), -- cgit v1.2.1