From d3e9944c26b604a32a76de4d19280052de5f9a3a Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=84=B8=ED=9D=AC/On-Device=20Lab=28SR=29/Princip?= =?utf8?q?al=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Wed, 14 Aug 2019 18:26:26 +0900 Subject: [PATCH] [res] TensorFlow Sqrt_000 (#6617) This will introduce TensorFlow basic test for Sqrt node Signed-off-by: SaeHie Park --- res/TensorFlowTests/Sqrt_000/test.info | 2 ++ res/TensorFlowTests/Sqrt_000/test.pbtxt | 40 +++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 res/TensorFlowTests/Sqrt_000/test.info create mode 100644 res/TensorFlowTests/Sqrt_000/test.pbtxt diff --git a/res/TensorFlowTests/Sqrt_000/test.info b/res/TensorFlowTests/Sqrt_000/test.info new file mode 100644 index 0000000..9abb96a --- /dev/null +++ b/res/TensorFlowTests/Sqrt_000/test.info @@ -0,0 +1,2 @@ +input, Placeholder:0, TF_FLOAT, [1, 2, 1, 2] +output, output/sqrt:0, TF_FLOAT, [1, 2, 1, 2] diff --git a/res/TensorFlowTests/Sqrt_000/test.pbtxt b/res/TensorFlowTests/Sqrt_000/test.pbtxt new file mode 100644 index 0000000..0324220 --- /dev/null +++ b/res/TensorFlowTests/Sqrt_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/sqrt" + op: "Sqrt" + input: "Placeholder" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} -- 2.7.4