From: 박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 Date: Wed, 14 Aug 2019 09:26:26 +0000 (+0900) Subject: [res] TensorFlow Sqrt_000 (#6617) X-Git-Tag: accepted/tizen/unified/20190903.052428~383 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d3e9944c26b604a32a76de4d19280052de5f9a3a;p=platform%2Fcore%2Fml%2Fnnfw.git [res] TensorFlow Sqrt_000 (#6617) This will introduce TensorFlow basic test for Sqrt node Signed-off-by: SaeHie Park --- 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 + } + } +}