From 447db7a64f3f0b72c2fc401681660459a66c54e1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=82=A8=EA=B6=81=EC=84=9D/On-Device=20Lab=28SR=29/Enginee?= =?utf8?q?r/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Thu, 22 Aug 2019 18:56:25 +0900 Subject: [PATCH] [res] Add UNIT_Tanh_000 testcase (#6839) This commit will add `UNIT_Tanh_000` testcase Signed-off-by: Seok NamKoong --- res/TensorFlowTests/UNIT_Tanh_000/test.info | 2 ++ res/TensorFlowTests/UNIT_Tanh_000/test.pbtxt | 40 ++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 res/TensorFlowTests/UNIT_Tanh_000/test.info create mode 100644 res/TensorFlowTests/UNIT_Tanh_000/test.pbtxt diff --git a/res/TensorFlowTests/UNIT_Tanh_000/test.info b/res/TensorFlowTests/UNIT_Tanh_000/test.info new file mode 100644 index 0000000..6655a9f --- /dev/null +++ b/res/TensorFlowTests/UNIT_Tanh_000/test.info @@ -0,0 +1,2 @@ +input, Placeholder:0, TF_FLOAT, [1, 2, 1, 2] +output, output/tanh:0, TF_FLOAT, [1, 2, 1, 2] diff --git a/res/TensorFlowTests/UNIT_Tanh_000/test.pbtxt b/res/TensorFlowTests/UNIT_Tanh_000/test.pbtxt new file mode 100644 index 0000000..7b3d285 --- /dev/null +++ b/res/TensorFlowTests/UNIT_Tanh_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/tanh" + op: "Tanh" + input: "Placeholder" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} -- 2.7.4