Revise framework test list (#2636)
author오형석/동작제어Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Fri, 7 Sep 2018 04:01:00 +0000 (13:01 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Fri, 7 Sep 2018 04:01:00 +0000 (13:01 +0900)
- Change directory structure: test/{tflite op name}/{testname}
- Add new framework tests to support more operators
- Update test list for neurun and benchmark_op

Signed-off-by: Hyeongseok Oh <hseok82.oh@samsung.com>
38 files changed:
tests/framework/tests/MODELS/inception_module/config.sh [moved from tests/framework/tests/inceptionv3/inception_module/config.sh with 100% similarity]
tests/framework/tests/MODELS/inception_nonslim/config.sh [moved from tests/framework/tests/inceptionv3/inception_nonslim/config.sh with 100% similarity]
tests/framework/tests/MODELS/inception_slim/config.sh [moved from tests/framework/tests/inceptionv3/inception_slim/config.sh with 100% similarity]
tests/framework/tests/MODELS/mobilenet/config.sh [moved from tests/framework/tests/mobilenet/config.sh with 100% similarity]
tests/framework/tests/average_pool_2d/avgpool1/config.sh [moved from tests/framework/tests/avgpool1/config.sh with 100% similarity]
tests/framework/tests/average_pool_2d/avgpool2/config.sh [moved from tests/framework/tests/avgpool2/config.sh with 100% similarity]
tests/framework/tests/concat/2D/config.sh [new file with mode: 0644]
tests/framework/tests/concat/concat1/config.sh [moved from tests/framework/tests/concat1/config.sh with 100% similarity]
tests/framework/tests/concat/concat2/config.sh [moved from tests/framework/tests/concat2/config.sh with 100% similarity]
tests/framework/tests/conv_2d/convolution1/config.sh [moved from tests/framework/tests/convolution1/config.sh with 100% similarity]
tests/framework/tests/conv_2d/convolution2/config.sh [moved from tests/framework/tests/convolution2/config.sh with 100% similarity]
tests/framework/tests/depthwise_conv_2d/depthconv1/config.sh [moved from tests/framework/tests/depthconv1/config.sh with 100% similarity]
tests/framework/tests/depthwise_conv_2d/depthconv2/config.sh [moved from tests/framework/tests/depthconv2/config.sh with 100% similarity]
tests/framework/tests/embedding_lookup/config.sh [new file with mode: 0644]
tests/framework/tests/floor/floor1/config.sh [new file with mode: 0644]
tests/framework/tests/floor/floor2/config.sh [new file with mode: 0644]
tests/framework/tests/fullyconnected/fc1/config.sh [moved from tests/framework/tests/fullyconnected/config.sh with 100% similarity]
tests/framework/tests/fullyconnected/matmul2x2/config.sh [moved from tests/framework/tests/mul/matmul2x2/config.sh with 100% similarity]
tests/framework/tests/hashtable_lookup/config.sh [new file with mode: 0644]
tests/framework/tests/l2_normalization/config.sh [new file with mode: 0644]
tests/framework/tests/l2_pool_2d/config.sh [moved from tests/framework/tests/l2pool2d/config.sh with 100% similarity]
tests/framework/tests/max_pool_2d/maxpool1/config.sh [moved from tests/framework/tests/maxpool1/config.sh with 100% similarity]
tests/framework/tests/max_pool_2d/maxpool2/config.sh [moved from tests/framework/tests/maxpool2/config.sh with 100% similarity]
tests/framework/tests/pad/4D_2D/config.sh [new file with mode: 0644]
tests/framework/tests/pad/pad1/config.sh [new file with mode: 0644]
tests/framework/tests/pad/pad2/config.sh [new file with mode: 0644]
tests/framework/tests/reduce_mean/test1/config.sh [new file with mode: 0644]
tests/framework/tests/reduce_mean/test2/config.sh [new file with mode: 0644]
tests/framework/tests/reshape/3D/config.sh [new file with mode: 0644]
tests/framework/tests/reshape/reshape1/config.sh [moved from tests/framework/tests/reshape1/config.sh with 100% similarity]
tests/framework/tests/reshape/reshape2/config.sh [moved from tests/framework/tests/reshape2/config.sh with 100% similarity]
tests/framework/tests/rnn/config.sh [new file with mode: 0644]
tests/framework/tests/space_to_depth/config.sh [new file with mode: 0644]
tests/framework/tests/squeeze/config.sh [new file with mode: 0644]
tests/framework/tests/topk_v2/config.sh [moved from tests/framework/tests/topkv2/config.sh with 100% similarity]
tests/framework/tests/tranpose/config.sh [new file with mode: 0644]
tools/test_driver/benchmark_op_list.txt
tools/test_driver/neurun_frameworktest_list.txt

diff --git a/tests/framework/tests/concat/2D/config.sh b/tests/framework/tests/concat/2D/config.sh
new file mode 100644 (file)
index 0000000..f36c498
--- /dev/null
@@ -0,0 +1,3 @@
+MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test"
+MODELFILE_NAME="concat_test_2d.tflite"
+STATUS="disabled"
diff --git a/tests/framework/tests/embedding_lookup/config.sh b/tests/framework/tests/embedding_lookup/config.sh
new file mode 100644 (file)
index 0000000..935fdc5
--- /dev/null
@@ -0,0 +1,3 @@
+MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test"
+MODELFILE_NAME="embedding_lookup_test1.tflite"
+STATUS="disabled"
diff --git a/tests/framework/tests/floor/floor1/config.sh b/tests/framework/tests/floor/floor1/config.sh
new file mode 100644 (file)
index 0000000..acb1e0c
--- /dev/null
@@ -0,0 +1,2 @@
+MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test"
+MODELFILE_NAME="floor_4d_4d_test.tflite"
diff --git a/tests/framework/tests/floor/floor2/config.sh b/tests/framework/tests/floor/floor2/config.sh
new file mode 100644 (file)
index 0000000..48c3320
--- /dev/null
@@ -0,0 +1,2 @@
+MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test"
+MODELFILE_NAME="floor_test_4d.tflite"
diff --git a/tests/framework/tests/hashtable_lookup/config.sh b/tests/framework/tests/hashtable_lookup/config.sh
new file mode 100644 (file)
index 0000000..dbb2a94
--- /dev/null
@@ -0,0 +1,3 @@
+MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test"
+MODELFILE_NAME="hashtable_lookup_test1.tflite"
+STATUS="disabled"
diff --git a/tests/framework/tests/l2_normalization/config.sh b/tests/framework/tests/l2_normalization/config.sh
new file mode 100644 (file)
index 0000000..8c15e73
--- /dev/null
@@ -0,0 +1,3 @@
+MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test"
+MODELFILE_NAME="l2_normalization_test1.tflite"
+STATUS="disabled"
diff --git a/tests/framework/tests/pad/4D_2D/config.sh b/tests/framework/tests/pad/4D_2D/config.sh
new file mode 100644 (file)
index 0000000..36f50ca
--- /dev/null
@@ -0,0 +1,2 @@
+MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test"
+MODELFILE_NAME="pad_4d_2d_test.tflite"
diff --git a/tests/framework/tests/pad/pad1/config.sh b/tests/framework/tests/pad/pad1/config.sh
new file mode 100644 (file)
index 0000000..fa38736
--- /dev/null
@@ -0,0 +1,3 @@
+MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test"
+MODELFILE_NAME="pad_test.tflite"
+STATUS="disabled"
diff --git a/tests/framework/tests/pad/pad2/config.sh b/tests/framework/tests/pad/pad2/config.sh
new file mode 100644 (file)
index 0000000..be10289
--- /dev/null
@@ -0,0 +1,3 @@
+MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test"
+MODELFILE_NAME="pad_test2.tflite"
+STATUS="disabled"
diff --git a/tests/framework/tests/reduce_mean/test1/config.sh b/tests/framework/tests/reduce_mean/test1/config.sh
new file mode 100644 (file)
index 0000000..9f63cb8
--- /dev/null
@@ -0,0 +1,4 @@
+# REDUCE_MEAN is supported after tensorflow 1.10
+MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test"
+MODELFILE_NAME="reduce_mean_test.tflite"
+STATUS="disabled"
diff --git a/tests/framework/tests/reduce_mean/test2/config.sh b/tests/framework/tests/reduce_mean/test2/config.sh
new file mode 100644 (file)
index 0000000..e5259ce
--- /dev/null
@@ -0,0 +1,4 @@
+# REDUCE_MEAN is supported after tensorflow 1.10
+MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test"
+MODELFILE_NAME="reduce_mean_test_2.tflite"
+STATUS="disabled"
diff --git a/tests/framework/tests/reshape/3D/config.sh b/tests/framework/tests/reshape/3D/config.sh
new file mode 100644 (file)
index 0000000..709983b
--- /dev/null
@@ -0,0 +1,2 @@
+MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test"
+MODELFILE_NAME="reshape_test_3d.tflite"
diff --git a/tests/framework/tests/rnn/config.sh b/tests/framework/tests/rnn/config.sh
new file mode 100644 (file)
index 0000000..8643cd1
--- /dev/null
@@ -0,0 +1,3 @@
+MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test"
+MODELFILE_NAME="rnn_basic_test1.tflite"
+STATUS="disabled"
diff --git a/tests/framework/tests/space_to_depth/config.sh b/tests/framework/tests/space_to_depth/config.sh
new file mode 100644 (file)
index 0000000..0e4e9a6
--- /dev/null
@@ -0,0 +1,2 @@
+MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test"
+MODELFILE_NAME="space_to_depth_test1.tflite"
diff --git a/tests/framework/tests/squeeze/config.sh b/tests/framework/tests/squeeze/config.sh
new file mode 100644 (file)
index 0000000..3bd01b4
--- /dev/null
@@ -0,0 +1,3 @@
+MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test"
+MODELFILE_NAME="squeeze_test.tflite"
+STATUS="disabled"
diff --git a/tests/framework/tests/tranpose/config.sh b/tests/framework/tests/tranpose/config.sh
new file mode 100644 (file)
index 0000000..64abdea
--- /dev/null
@@ -0,0 +1,3 @@
+MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test"
+MODELFILE_NAME="transpose_4d.tflite"
+STATUS="disabled"
index 3672bac..166ddb7 100644 (file)
@@ -1,11 +1,11 @@
 add/4D
-avgpool1
-avgpool2
-concat1
-convolution1
-convolution2
+average_pool_2d/avgpool1
+average_pool_2d/avgpool1
+concat/concat1
+conv_2d/convolution1
+conv_2d/convolution2
 div/broadcast
-maxpool1
-maxpool2
+max_pool_2d/maxpool1
+max_pool_2d/maxpool2
 resize_bilinear
 softmax
index ecc5f67..b97558b 100644 (file)
@@ -1,9 +1,10 @@
-avgpool1
-avgpool2
-convolution1
-convolution2
-maxpool1
-maxpool2
+average_pool_2d/avgpool1
+average_pool_2d/avgpool1
+conv_2d/convolution1
+conv_2d/convolution2
+max_pool_2d/maxpool1
+max_pool_2d/maxpool2
 softmax
-reshape1
-inceptionv3
+reshape/reshape1
+MODELS/inception_nonslim
+MODELS/inception_slim