From d8e6b6b5148a3d61b378e6e5259ca421a709abef Mon Sep 17 00:00:00 2001 From: James Ward Date: Mon, 21 Nov 2022 11:51:55 +0000 Subject: Create MI tests for Data Layout: CONCAT, PAD, RESHAPE, REVERSE, SLICE, TILE, TRANSPOSE Signed-off-by: James Ward Change-Id: Icbbe8f63e35d04a3b2cc64bd760ca92c22fd4aa7 --- .../tile/tile_31x15x13_f16_perm4/test.json | 58 ++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 operators/data_layout/tile/tile_31x15x13_f16_perm4/test.json (limited to 'operators/data_layout/tile/tile_31x15x13_f16_perm4/test.json') diff --git a/operators/data_layout/tile/tile_31x15x13_f16_perm4/test.json b/operators/data_layout/tile/tile_31x15x13_f16_perm4/test.json new file mode 100644 index 000000000..e7b8f2f72 --- /dev/null +++ b/operators/data_layout/tile/tile_31x15x13_f16_perm4/test.json @@ -0,0 +1,58 @@ +{ + version: { + _major: 0, + _minor: 41, + _patch: 0, + _draft: true + }, + blocks: [ + { + name: "main", + operators: [ + { + op: "TILE", + attribute_type: "TileAttribute", + attribute: { + multiples: [ + 2, + 3, + 3 + ] + }, + inputs: [ + "input-0" + ], + outputs: [ + "result-0" + ] + } + ], + tensors: [ + { + name: "input-0", + shape: [ + 31, + 15, + 13 + ], + type: "FP16" + }, + { + name: "result-0", + shape: [ + 62, + 45, + 39 + ], + type: "FP16" + } + ], + inputs: [ + "input-0" + ], + outputs: [ + "result-0" + ] + } + ] +} -- cgit v1.2.1