From a6ad082a2d12d08b49e0dff675843cba6df7742c Mon Sep 17 00:00:00 2001 From: Jeremy Johnson Date: Fri, 17 Jun 2022 13:08:16 +0100 Subject: Updating MATMUL tests for v0.30.0 release Signed-off-by: Jeremy Johnson Change-Id: I088a6d7f13bda9b10c10f4f381141f0fb93ea18d --- .../tensor/matmul/matmul_1x2x65538_i8/test.json | 66 ++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 operators/tensor/matmul/matmul_1x2x65538_i8/test.json (limited to 'operators/tensor/matmul/matmul_1x2x65538_i8/test.json') diff --git a/operators/tensor/matmul/matmul_1x2x65538_i8/test.json b/operators/tensor/matmul/matmul_1x2x65538_i8/test.json new file mode 100644 index 000000000..e97d4ea01 --- /dev/null +++ b/operators/tensor/matmul/matmul_1x2x65538_i8/test.json @@ -0,0 +1,66 @@ +{ + version: { + _major: 0, + _minor: 30, + _patch: 0, + _draft: false + }, + blocks: [ + { + name: "main", + operators: [ + { + op: "MATMUL", + attribute_type: "MatMulAttribute", + attribute: { + a_zp: -44, + b_zp: -71 + }, + inputs: [ + "input-0", + "input-1" + ], + outputs: [ + "result-0" + ] + } + ], + tensors: [ + { + name: "input-0", + shape: [ + 1, + 2, + 65538 + ], + type: "INT8" + }, + { + name: "input-1", + shape: [ + 1, + 65538, + 1 + ], + type: "INT8" + }, + { + name: "result-0", + shape: [ + 1, + 2, + 1 + ], + type: "INT32" + } + ], + inputs: [ + "input-0", + "input-1" + ], + outputs: [ + "result-0" + ] + } + ] +} -- cgit v1.2.1