From faf8012f82ea6179603b392f5aa63b6f7701b8c9 Mon Sep 17 00:00:00 2001 From: Jeremy Johnson Date: Thu, 13 Oct 2022 13:57:52 +0100 Subject: Updating CONV3D_1X2X1 tests for FP16 and accumulator types Signed-off-by: Jeremy Johnson Change-Id: I62ba20964a0410a225307dccfc0cd511c48bb1b8 --- .../test.json | 132 +++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 operators/tensor/conv3d_1x2x1/conv3d_1x2x1_1x9x11x12x3_i8xi8_acci32_st111_pad000000_dilat111/test.json (limited to 'operators/tensor/conv3d_1x2x1/conv3d_1x2x1_1x9x11x12x3_i8xi8_acci32_st111_pad000000_dilat111/test.json') diff --git a/operators/tensor/conv3d_1x2x1/conv3d_1x2x1_1x9x11x12x3_i8xi8_acci32_st111_pad000000_dilat111/test.json b/operators/tensor/conv3d_1x2x1/conv3d_1x2x1_1x9x11x12x3_i8xi8_acci32_st111_pad000000_dilat111/test.json new file mode 100644 index 000000000..a3ff8824e --- /dev/null +++ b/operators/tensor/conv3d_1x2x1/conv3d_1x2x1_1x9x11x12x3_i8xi8_acci32_st111_pad000000_dilat111/test.json @@ -0,0 +1,132 @@ +{ + version: { + _major: 0, + _minor: 41, + _patch: 0, + _draft: true + }, + blocks: [ + { + name: "main", + operators: [ + { + op: "CONST", + attribute_type: "NONE", + inputs: [ + + ], + outputs: [ + "const-1" + ] + }, + { + op: "CONST", + attribute_type: "NONE", + inputs: [ + + ], + outputs: [ + "const-2" + ] + }, + { + op: "CONV3D", + attribute_type: "ConvAttribute", + attribute: { + pad: [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + stride: [ + 1, + 1, + 1 + ], + dilation: [ + 1, + 1, + 1 + ], + input_zp: -116, + weight_zp: -113, + accum_dtype: "INT32" + }, + inputs: [ + "input-0", + "const-1", + "const-2" + ], + outputs: [ + "result-0" + ] + } + ], + tensors: [ + { + name: "input-0", + shape: [ + 1, + 9, + 11, + 12, + 3 + ], + type: "INT8" + }, + { + name: "const-1", + shape: [ + 1, + 1, + 2, + 1, + 3 + ], + type: "INT8", + data: [ + 43, + 109, + 64, + 130, + 176, + 251 + ] + }, + { + name: "const-2", + shape: [ + 1 + ], + type: "INT32", + data: [ + 15, + 255, + 76, + 251 + ] + }, + { + name: "result-0", + shape: [ + 1, + 9, + 10, + 12, + 1 + ], + type: "INT32" + } + ], + inputs: [ + "input-0" + ], + outputs: [ + "result-0" + ] + } + ] +} -- cgit v1.2.1