From d91a039e0eda6fd70dcd22672b8ce1817c1ca50e Mon Sep 17 00:00:00 2001 From: Chunseok Lee Date: Thu, 5 Mar 2020 15:10:09 +0900 Subject: catch up to tizen_5.5 and remove unness dir - update to tizen_5.5 - remove dirs --- res/TensorFlowTests/NET_0022/test.pbtxt | 70 +++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 res/TensorFlowTests/NET_0022/test.pbtxt (limited to 'res/TensorFlowTests/NET_0022/test.pbtxt') diff --git a/res/TensorFlowTests/NET_0022/test.pbtxt b/res/TensorFlowTests/NET_0022/test.pbtxt new file mode 100644 index 000000000..c8879e84f --- /dev/null +++ b/res/TensorFlowTests/NET_0022/test.pbtxt @@ -0,0 +1,70 @@ +node { + name: "input_1" + op: "Placeholder" + attr { + key: "dtype" + value { + type: DT_FLOAT + } + } + attr { + key: "shape" + value { + shape { + dim { + size: 2 + } + dim { + size: 2 + } + } + } + } +} +node { + name: "input_2" + op: "Placeholder" + attr { + key: "dtype" + value { + type: DT_FLOAT + } + } + attr { + key: "shape" + value { + shape { + dim { + size: 2 + } + dim { + size: 2 + } + } + } + } +} +node { + name: "output_1" + op: "Add" + input: "input_1" + input: "input_2" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "output_2" + op: "Add" + input: "input_1" + input: "input_2" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} -- cgit v1.2.3