From 36989d315242a1c9296bb434ea0691b1304420b0 Mon Sep 17 00:00:00 2001 From: Jeremy Johnson Date: Mon, 13 Feb 2023 12:10:09 +0000 Subject: Create MI tests for Tensor: CONV3D Signed-off-by: Jeremy Johnson Change-Id: I1625af764e1c927aa04cfa8ab8f24ea76b18a053 --- .../test.json | 164 +++++++++++++++++++++ 1 file changed, 164 insertions(+) create mode 100644 operators/tensor/conv3d_1x1x1/conv3d_1x1x1_ERRORIF_WrongRank_1x3x5x5x8x4x3_f32xf32_accf32_st111_pad000000_dilat111/test.json (limited to 'operators/tensor/conv3d_1x1x1/conv3d_1x1x1_ERRORIF_WrongRank_1x3x5x5x8x4x3_f32xf32_accf32_st111_pad000000_dilat111/test.json') diff --git a/operators/tensor/conv3d_1x1x1/conv3d_1x1x1_ERRORIF_WrongRank_1x3x5x5x8x4x3_f32xf32_accf32_st111_pad000000_dilat111/test.json b/operators/tensor/conv3d_1x1x1/conv3d_1x1x1_ERRORIF_WrongRank_1x3x5x5x8x4x3_f32xf32_accf32_st111_pad000000_dilat111/test.json new file mode 100644 index 000000000..7cce3c591 --- /dev/null +++ b/operators/tensor/conv3d_1x1x1/conv3d_1x1x1_ERRORIF_WrongRank_1x3x5x5x8x4x3_f32xf32_accf32_st111_pad000000_dilat111/test.json @@ -0,0 +1,164 @@ +{ + version: { + _major: 0, + _minor: 51, + _patch: 0, + _draft: true + }, + regions: [ + { + name: "main", + 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: 0, + weight_zp: 0 + }, + inputs: [ + "input-0", + "const-1", + "const-2" + ], + outputs: [ + "result-0" + ] + } + ], + tensors: [ + { + name: "input-0", + shape: [ + 1, + 3, + 5, + 5, + 8, + 4, + 3 + ], + type: "FP32" + }, + { + name: "const-1", + shape: [ + 1, + 1, + 1, + 1, + 8 + ], + type: "FP32", + data: [ + 186, + 169, + 7, + 62, + 232, + 155, + 3, + 63, + 160, + 231, + 136, + 62, + 252, + 159, + 1, + 62, + 56, + 222, + 6, + 63, + 125, + 137, + 46, + 63, + 102, + 139, + 104, + 61, + 241, + 58, + 102, + 61 + ] + }, + { + name: "const-2", + shape: [ + 1 + ], + type: "FP32", + data: [ + 202, + 19, + 61, + 63 + ] + }, + { + name: "result-0", + shape: [ + 1, + 3, + 5, + 5, + 1 + ], + type: "FP32" + } + ], + inputs: [ + "input-0" + ], + outputs: [ + "result-0" + ] + } + ] + } + ] +} -- cgit v1.2.1