From b89443236b48c9ee31b2708b6e6037c427268c5b Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=98=A4=ED=98=95=EC=84=9D/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Senior=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Tue, 15 May 2018 15:51:59 +0900 Subject: [PATCH] Add more framework tests (#1211) Add framework tests - Casting: 4D tensor integer type to float type - Resize bilinear: 4D input tensor, 4D output tensor (x2 width, x2 height) - Custom: TensorFlowMax, 2D input tensor with scalar reduction indice, 1D output Signed-off-by: Hyeongseok Oh --- tests/framework/tests/cast/config.sh | 4 ++++ tests/framework/tests/custom/tensorflowmax/config.sh | 4 ++++ tests/framework/tests/resize_bilinear/config.sh | 4 ++++ 3 files changed, 12 insertions(+) create mode 100644 tests/framework/tests/cast/config.sh create mode 100644 tests/framework/tests/custom/tensorflowmax/config.sh create mode 100644 tests/framework/tests/resize_bilinear/config.sh diff --git a/tests/framework/tests/cast/config.sh b/tests/framework/tests/cast/config.sh new file mode 100644 index 0000000..c5d3340 --- /dev/null +++ b/tests/framework/tests/cast/config.sh @@ -0,0 +1,4 @@ +MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test" +MODELFILE_NAME="cast_test.tflite" +MODELFILE_MD5SUM="f0561a0e09c181c85f87d40b37a48a27" +STATUS="disabled" diff --git a/tests/framework/tests/custom/tensorflowmax/config.sh b/tests/framework/tests/custom/tensorflowmax/config.sh new file mode 100644 index 0000000..56470fa --- /dev/null +++ b/tests/framework/tests/custom/tensorflowmax/config.sh @@ -0,0 +1,4 @@ +MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test" +MODELFILE_NAME="custom_max_test.tflite" +MODELFILE_MD5SUM="bb3fa32356b7e67dbf2e8bd1c1873ce7" +STATUS="disabled" diff --git a/tests/framework/tests/resize_bilinear/config.sh b/tests/framework/tests/resize_bilinear/config.sh new file mode 100644 index 0000000..682c7a0 --- /dev/null +++ b/tests/framework/tests/resize_bilinear/config.sh @@ -0,0 +1,4 @@ +MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test" +MODELFILE_NAME="resize_bilinear_test.tflite" +MODELFILE_MD5SUM="fee00a280b855a8e4efa65ed321e5169" +STATUS="disabled" -- 2.7.4