From 8ced9205a31b984ff53e90bf341155a4531ea169 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=84=B8=ED=9D=AC/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Principal=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Wed, 14 Nov 2018 12:52:31 +0900 Subject: [PATCH] [enco/frontend] Test for TF lite concat (#2264) This will add test recipe for Concat operator Signed-off-by: SaeHie Park --- contrib/enco/test/tflite/Concat_000/INFERENCE | 0 contrib/enco/test/tflite/Concat_000/test.recipe | 28 +++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 contrib/enco/test/tflite/Concat_000/INFERENCE create mode 100644 contrib/enco/test/tflite/Concat_000/test.recipe diff --git a/contrib/enco/test/tflite/Concat_000/INFERENCE b/contrib/enco/test/tflite/Concat_000/INFERENCE new file mode 100644 index 0000000..e69de29 diff --git a/contrib/enco/test/tflite/Concat_000/test.recipe b/contrib/enco/test/tflite/Concat_000/test.recipe new file mode 100644 index 0000000..cd4ef46 --- /dev/null +++ b/contrib/enco/test/tflite/Concat_000/test.recipe @@ -0,0 +1,28 @@ +operand { + name: "ifm1" + type: FLOAT32 + shape { dim: 1 dim: 4 dim: 4 dim: 1 } +} +operand { + name: "ifm2" + type: FLOAT32 + shape { dim: 1 dim: 4 dim: 4 dim: 2 } +} +operand { + name: "ofm" + type: FLOAT32 + shape { dim: 1 dim: 4 dim: 4 dim: 3 } +} +operation { + type: "Concatenation" + concatenation_options { + axis: 3 + activation: 0 + } + input: "ifm1" + input: "ifm2" + output: "ofm" +} +input: "ifm1" +input: "ifm2" +output: "ofm" -- 2.7.4