diff options
author | 박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com> | 2019-07-18 14:00:20 +0900 |
---|---|---|
committer | GitHub Enterprise <noreply-CODE@samsung.com> | 2019-07-18 14:00:20 +0900 |
commit | 301637643190bb5657c8e3443d883a1d34fecc0a (patch) | |
tree | 91bd348630380c3af302f8b702404721a5764e6b | |
parent | 25a1a2770fcb8a59e594f4820ed735f2355795dc (diff) | |
download | nnfw-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.info | 2 | ||||
-rw-r--r-- | res/TensorFlowTests/Squeeze_000/test.pbtxt | 28 |
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 } + } +} |