From bf2fa2d4108faf81ff5a88b9a9c77db924898064 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: Wed, 29 Aug 2018 11:33:12 +0900 Subject: [PATCH] [enco] Add convolution test (#1223) This commit adds a simple caffe model with one convolution layer as a testcase. Note that inference test is not yet enabled. Signed-off-by: Jonghyun Park --- contrib/enco/test/caffe/001/BUILD | 0 contrib/enco/test/caffe/001/test.prototxt | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 contrib/enco/test/caffe/001/BUILD create mode 100644 contrib/enco/test/caffe/001/test.prototxt diff --git a/contrib/enco/test/caffe/001/BUILD b/contrib/enco/test/caffe/001/BUILD new file mode 100644 index 0000000..e69de29 diff --git a/contrib/enco/test/caffe/001/test.prototxt b/contrib/enco/test/caffe/001/test.prototxt new file mode 100644 index 0000000..a69753c --- /dev/null +++ b/contrib/enco/test/caffe/001/test.prototxt @@ -0,0 +1,19 @@ +layer { + name: "data" + type: "Input" + top: "data" + input_param { + shape: { dim: 1 dim: 3 dim: 244 dim: 244 } + } +} +layer { + name: "conv" + type: "Convolution" + bottom: "data" + top: "conv" + convolution_param { + bias_term: false + num_output: 1 + kernel_size: 1 + } +} -- 2.7.4