From 038816bfb8bd0eedbd9f03fcd64c75ad66ac8df4 Mon Sep 17 00:00:00 2001 From: Jeremy Johnson Date: Fri, 17 Jun 2022 13:07:39 +0100 Subject: Updating CONV2D_3X1 tests for v0.30.0 release Signed-off-by: Jeremy Johnson Change-Id: I6eb9b4f9d99fc660bbd344e73748be89d22a8d40 --- .../test.json | 121 +++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 operators/tensor/conv2d_3x1/conv2d_3x1_1x5x65536x1_i8xi8_st11_pad0000_dilat11/test.json (limited to 'operators/tensor/conv2d_3x1/conv2d_3x1_1x5x65536x1_i8xi8_st11_pad0000_dilat11/test.json') diff --git a/operators/tensor/conv2d_3x1/conv2d_3x1_1x5x65536x1_i8xi8_st11_pad0000_dilat11/test.json b/operators/tensor/conv2d_3x1/conv2d_3x1_1x5x65536x1_i8xi8_st11_pad0000_dilat11/test.json new file mode 100644 index 000000000..0dfc3e3b3 --- /dev/null +++ b/operators/tensor/conv2d_3x1/conv2d_3x1_1x5x65536x1_i8xi8_st11_pad0000_dilat11/test.json @@ -0,0 +1,121 @@ +{ + version: { + _major: 0, + _minor: 30, + _patch: 0, + _draft: false + }, + blocks: [ + { + name: "main", + operators: [ + { + op: "CONST", + attribute_type: "NONE", + inputs: [ + + ], + outputs: [ + "const-1" + ] + }, + { + op: "CONST", + attribute_type: "NONE", + inputs: [ + + ], + outputs: [ + "const-2" + ] + }, + { + op: "CONV2D", + attribute_type: "ConvAttribute", + attribute: { + pad: [ + 0, + 0, + 0, + 0 + ], + stride: [ + 1, + 1 + ], + dilation: [ + 1, + 1 + ], + input_zp: 76, + weight_zp: -80 + }, + inputs: [ + "input-0", + "const-1", + "const-2" + ], + outputs: [ + "result-0" + ] + } + ], + tensors: [ + { + name: "input-0", + shape: [ + 1, + 5, + 65536, + 1 + ], + type: "INT8" + }, + { + name: "const-1", + shape: [ + 1, + 3, + 1, + 1 + ], + type: "INT8", + data: [ + 245, + 182, + 233 + ] + }, + { + name: "const-2", + shape: [ + 1 + ], + type: "INT32", + data: [ + 253, + 13, + 148, + 37 + ] + }, + { + name: "result-0", + shape: [ + 1, + 3, + 65536, + 1 + ], + type: "INT32" + } + ], + inputs: [ + "input-0" + ], + outputs: [ + "result-0" + ] + } + ] +} -- cgit v1.2.1