From 33fcbbd98462e6d3e21ba100b51d34ffcab72edf Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=A2=85=ED=98=84/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Staff=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Thu, 18 Oct 2018 16:17:55 +0900 Subject: [PATCH] [enco] Add caffe 018 test (#1897) This commit introduces caffe 018 test which includes a single element-wise multiplication layer. Signed-off-by: Jonghyun Park --- contrib/enco/test/caffe/018/BUILD | 0 contrib/enco/test/caffe/018/INFERENCE | 0 contrib/enco/test/caffe/018/test.prototxt | 20 ++++++++++++++++++++ 3 files changed, 20 insertions(+) create mode 100644 contrib/enco/test/caffe/018/BUILD create mode 100644 contrib/enco/test/caffe/018/INFERENCE create mode 100644 contrib/enco/test/caffe/018/test.prototxt diff --git a/contrib/enco/test/caffe/018/BUILD b/contrib/enco/test/caffe/018/BUILD new file mode 100644 index 0000000..e69de29 diff --git a/contrib/enco/test/caffe/018/INFERENCE b/contrib/enco/test/caffe/018/INFERENCE new file mode 100644 index 0000000..e69de29 diff --git a/contrib/enco/test/caffe/018/test.prototxt b/contrib/enco/test/caffe/018/test.prototxt new file mode 100644 index 0000000..3eef071 --- /dev/null +++ b/contrib/enco/test/caffe/018/test.prototxt @@ -0,0 +1,20 @@ +layer { + name: "data" + type: "Input" + top: "lhs" + top: "rhs" + input_param { + shape: { dim: 1 dim: 3 dim: 16 dim: 16 } + shape: { dim: 1 dim: 3 dim: 16 dim: 16 } + } +} +layer { + name: "prod" + type: "Eltwise" + bottom: "lhs" + bottom: "rhs" + top: "prod" + eltwise_param { + operation: PROD + } +} -- 2.7.4