From e7827153b8e9442f1b9a3e7137f8dc0fa702c62e Mon Sep 17 00:00:00 2001 From: Jeremy Johnson Date: Fri, 17 Jun 2022 13:07:44 +0100 Subject: Updating CONV2D_3X3 tests for v0.30.0 release Signed-off-by: Jeremy Johnson Change-Id: I36b9f5075d999a89414fb8395d4286596aa9cf1e --- .../test.json | 123 +++++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 operators/tensor/conv2d_3x3/conv2d_3x3_1x5x65536x1_i8xi4_st11_pad1110_dilat11/test.json (limited to 'operators/tensor/conv2d_3x3/conv2d_3x3_1x5x65536x1_i8xi4_st11_pad1110_dilat11/test.json') diff --git a/operators/tensor/conv2d_3x3/conv2d_3x3_1x5x65536x1_i8xi4_st11_pad1110_dilat11/test.json b/operators/tensor/conv2d_3x3/conv2d_3x3_1x5x65536x1_i8xi4_st11_pad1110_dilat11/test.json new file mode 100644 index 000000000..ca4a96d5e --- /dev/null +++ b/operators/tensor/conv2d_3x3/conv2d_3x3_1x5x65536x1_i8xi4_st11_pad1110_dilat11/test.json @@ -0,0 +1,123 @@ +{ + 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: [ + 1, + 1, + 1, + 0 + ], + stride: [ + 1, + 1 + ], + dilation: [ + 1, + 1 + ], + input_zp: -6, + weight_zp: 0 + }, + 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, + 3, + 1 + ], + type: "INT4", + data: [ + 91, + 6, + 82, + 65, + 9 + ] + }, + { + name: "const-2", + shape: [ + 1 + ], + type: "INT32", + data: [ + 103, + 235, + 96, + 206 + ] + }, + { + name: "result-0", + shape: [ + 1, + 5, + 65535, + 1 + ], + type: "INT32" + } + ], + inputs: [ + "input-0" + ], + outputs: [ + "result-0" + ] + } + ] +} -- cgit v1.2.1