From 9ce16ffc3c4256c8e17782a53572c31fa7d9c983 Mon Sep 17 00:00:00 2001 From: Parichay Kapoor Date: Mon, 20 Jul 2020 10:53:06 +0900 Subject: [PATCH] [dist/debian] Disable QNNPACK for arm64 Disable QNNPACK for arm64 as it fails sometimes for arm64 build on launchpad Change-Id: I4e344f973be86f60f39936388b411771c10d992e Signed-off-by: Parichay Kapoor --- debian/rules | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index 6039234..a601fe3 100755 --- a/debian/rules +++ b/debian/rules @@ -20,7 +20,8 @@ export BUILD_BINARY=1 ifneq ($(filter $(DEB_HOST_ARCH),arm64),) export USE_MKLDNN=0 -export MAX_JOBS=1 +export USE_PYTORCH_QNNPACK=OFF +# export MAX_JOBS=1 endif name = ${PYBUILD_NAME} -- 2.7.4