summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
author박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>2019-07-19 10:26:26 +0900
committerGitHub Enterprise <noreply-CODE@samsung.com>2019-07-19 10:26:26 +0900
commitbed48f65f7d8dfac94efa1b9d4fc2b9f15e0a0b4 (patch)
treecb18a7a5b4207b5cafa4b24c43e1bbdc2ffaafd6 /res
parenteabd495350d633fba018bd63901f1a28671b3b1c (diff)
downloadnnfw-bed48f65f7d8dfac94efa1b9d4fc2b9f15e0a0b4.tar.gz
nnfw-bed48f65f7d8dfac94efa1b9d4fc2b9f15e0a0b4.tar.bz2
nnfw-bed48f65f7d8dfac94efa1b9d4fc2b9f15e0a0b4.zip
[res/TensorflowTests] Add Rsqrt_000 (#4359)
This will add basic TensorFlow Rsqrt node test material Signed-off-by: SaeHie Park <saehie.park@samsung.com>
Diffstat (limited to 'res')
-rw-r--r--res/TensorFlowTests/Rsqrt_000/test.info2
-rw-r--r--res/TensorFlowTests/Rsqrt_000/test.pbtxt40
2 files changed, 42 insertions, 0 deletions
diff --git a/res/TensorFlowTests/Rsqrt_000/test.info b/res/TensorFlowTests/Rsqrt_000/test.info
new file mode 100644
index 000000000..b87da7e44
--- /dev/null
+++ b/res/TensorFlowTests/Rsqrt_000/test.info
@@ -0,0 +1,2 @@
+input, Placeholder:0, TF_FLOAT, [1, 2, 1, 2]
+output, output/rsqrt:0, TF_FLOAT, [1, 2, 1, 2]
diff --git a/res/TensorFlowTests/Rsqrt_000/test.pbtxt b/res/TensorFlowTests/Rsqrt_000/test.pbtxt
new file mode 100644
index 000000000..babfc3702
--- /dev/null
+++ b/res/TensorFlowTests/Rsqrt_000/test.pbtxt
@@ -0,0 +1,40 @@
+node {
+ name: "Placeholder"
+ op: "Placeholder"
+ attr {
+ key: "dtype"
+ value {
+ type: DT_FLOAT
+ }
+ }
+ attr {
+ key: "shape"
+ value {
+ shape {
+ dim {
+ size: 1
+ }
+ dim {
+ size: 2
+ }
+ dim {
+ size: 1
+ }
+ dim {
+ size: 2
+ }
+ }
+ }
+ }
+}
+node {
+ name: "output/rsqrt"
+ op: "Rsqrt"
+ input: "Placeholder"
+ attr {
+ key: "T"
+ value {
+ type: DT_FLOAT
+ }
+ }
+}