aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Flynn <jim.flynn@arm.com>2019-03-22 15:58:39 +0000
committerJim Flynn <jim.flynn@arm.com>2019-03-26 14:31:58 +0000
commit44db7c36c8cf0fc608d3edc2ee0eb04428085218 (patch)
tree04758a223490287b66b1f6bc8a7eb413572fb7b4
parent313e1c883f655d87e1709091f5812846f04c9af1 (diff)
downloadarmnn-44db7c36c8cf0fc608d3edc2ee0eb04428085218.tar.gz
IVGCVSW-2832 Update CL pin to 2761c2f0b60175469e959982a25ff0abdca6c9ce
* Removes data format check from NE and CL CopyLayerKernel to fix customer issue with Resnet v1 and v2 50 models failing to run * COMPMID-2075 Fix Segfault in NELSTM (2761c2f0b60175469e959982a25ff0abdca6c9ce) * Added include <functional> to include/armnn/Types.hpp to fix compile failure on CI !android-nn-driver:891 Change-Id: Icbe58b7e6d3276b0e983bdd1c004906b3d0a7a6e Signed-off-by: Jim Flynn <jim.flynn@arm.com>
-rw-r--r--include/armnn/Types.hpp6
-rwxr-xr-xscripts/get_compute_library.sh2
2 files changed, 3 insertions, 5 deletions
diff --git a/include/armnn/Types.hpp b/include/armnn/Types.hpp
index 32e2a6febc..bdddd37a1c 100644
--- a/include/armnn/Types.hpp
+++ b/include/armnn/Types.hpp
@@ -4,13 +4,11 @@
//
#pragma once
-
-#include "BackendId.hpp"
-#include "Exceptions.hpp"
-
#include <array>
#include <functional>
#include <memory>
+#include "BackendId.hpp"
+#include "Exceptions.hpp"
namespace armnn
{
diff --git a/scripts/get_compute_library.sh b/scripts/get_compute_library.sh
index c1f52e6f9e..670d938e42 100755
--- a/scripts/get_compute_library.sh
+++ b/scripts/get_compute_library.sh
@@ -68,7 +68,7 @@ pushd clframework > /dev/null
# git fetch https://review.mlplatform.org/ml/ComputeLibrary $CLFRAMEWORKREVISION && git checkout FETCH_HEAD
# For pinning to a revision use this:
-CLFRAMEWORKREVISION="f00d33264721f0647098051449c6d40bc80a2af7" # commit on CL fix compilation error in bare metal build
+CLFRAMEWORKREVISION="2761c2f0b60175469e959982a25ff0abdca6c9ce" # COMPMID-2075 Segfault in NELSTM
git fetch https://review.mlplatform.org/ml/ComputeLibrary && git checkout ${CLFRAMEWORKREVISION}
AssertZeroExitCode