From 92aa144e8fe1081fab66dd9e06f7a58113f30137 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=98=A4=ED=98=95=EC=84=9D/On-Device=20Lab=28SR=29/Staff?= =?utf8?q?=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Mon, 8 Jul 2019 13:50:45 +0900 Subject: [PATCH] Remove mobilenet tests in nnapi generated test (#5554) Comment out mobilenet recipes in nnapi generated test Signed-off-by: Hyeongseok Oh --- tests/nnapi/specs/V1_0/mobilenet_224_gender_basic_fixed.mod.py | 4 +++- tests/nnapi/specs/V1_0/mobilenet_quantized.mod.py | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/nnapi/specs/V1_0/mobilenet_224_gender_basic_fixed.mod.py b/tests/nnapi/specs/V1_0/mobilenet_224_gender_basic_fixed.mod.py index 390ccc3..69c7eb4 100644 --- a/tests/nnapi/specs/V1_0/mobilenet_224_gender_basic_fixed.mod.py +++ b/tests/nnapi/specs/V1_0/mobilenet_224_gender_basic_fixed.mod.py @@ -1,3 +1,5 @@ +# Comment out: too large test. we can test mobilenet using frameworktest +""" # Passing weights via shared memory Configuration.use_shm_for_weights = True model = Model() @@ -256,4 +258,4 @@ input0 = { i86: [0.791841, 0.131271, 0.840444, 0.524133, 0.301398, 0.711596, 8.7 output0 = {i85: [0.605085, 0.0733608, 0.0200205, 0.114568, 0.178815, 0.0580576, 0.123144, 0.232838, 0.0916902, 0.111395, 0.138349]} Example((input0, output0)) - +""" diff --git a/tests/nnapi/specs/V1_0/mobilenet_quantized.mod.py b/tests/nnapi/specs/V1_0/mobilenet_quantized.mod.py index 3f96849..9baee3b 100644 --- a/tests/nnapi/specs/V1_0/mobilenet_quantized.mod.py +++ b/tests/nnapi/specs/V1_0/mobilenet_quantized.mod.py @@ -1,3 +1,5 @@ +# Comment out: too large test. we can test mobilenet using frameworktest +""" # Passing weights via shared memory Configuration.use_shm_for_weights = True model = Model() @@ -259,3 +261,4 @@ output0 = {i85: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, # Instantiate an example Example((input0, output0)) +""" -- 2.7.4