summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>2019-07-18 14:00:20 +0900
committerGitHub Enterprise <noreply-CODE@samsung.com>2019-07-18 14:00:20 +0900
commit301637643190bb5657c8e3443d883a1d34fecc0a (patch)
tree91bd348630380c3af302f8b702404721a5764e6b
parent25a1a2770fcb8a59e594f4820ed735f2355795dc (diff)
downloadnnfw-301637643190bb5657c8e3443d883a1d34fecc0a.tar.gz
nnfw-301637643190bb5657c8e3443d883a1d34fecc0a.tar.bz2
nnfw-301637643190bb5657c8e3443d883a1d34fecc0a.zip
Introduce TensorFlow Squeeze_000 test (#4341)
This commit introduces Squeeze_000 test which includes one Placeholder and one Squeeze nodes. Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
-rw-r--r--res/TensorFlowTests/Squeeze_000/test.info2
-rw-r--r--res/TensorFlowTests/Squeeze_000/test.pbtxt28
2 files changed, 30 insertions, 0 deletions
diff --git a/res/TensorFlowTests/Squeeze_000/test.info b/res/TensorFlowTests/Squeeze_000/test.info
new file mode 100644
index 000000000..fd07403f2
--- /dev/null
+++ b/res/TensorFlowTests/Squeeze_000/test.info
@@ -0,0 +1,2 @@
+input, Placeholder:0, TF_FLOAT, [1, 4, 4, 3]
+output, Squeeze:0, TF_FLOAT, [4, 4, 3]
diff --git a/res/TensorFlowTests/Squeeze_000/test.pbtxt b/res/TensorFlowTests/Squeeze_000/test.pbtxt
new file mode 100644
index 000000000..5ad75fca6
--- /dev/null
+++ b/res/TensorFlowTests/Squeeze_000/test.pbtxt
@@ -0,0 +1,28 @@
+node {
+ name: "Placeholder"
+ op: "Placeholder"
+ attr {
+ key: "dtype"
+ value { type: DT_FLOAT }
+ }
+ attr {
+ key: "shape"
+ value {
+ shape {
+ dim { size: 1 }
+ dim { size: 4 }
+ dim { size: 4 }
+ dim { size: 3 }
+ }
+ }
+ }
+}
+node {
+ name: "Squeeze"
+ op: "Squeeze"
+ input: "Placeholder"
+ attr {
+ key: "T"
+ value { type: DT_FLOAT }
+ }
+}