From cf8989f6250721418177c5b78cdedb7b6c56f74d Mon Sep 17 00:00:00 2001 From: Jeremy Johnson Date: Thu, 13 Oct 2022 12:50:15 +0100 Subject: Updating DATA_LAYOUT tests for FP16 and accumulator types Signed-off-by: Jeremy Johnson Change-Id: I605e4528c4b31c393e4a8ee88de332ecbc2f1421 --- .../test.json | 55 ++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 operators/data_layout/transpose/transpose_ERRORIF_WrongOutputType_10x2_b_perm0/test.json (limited to 'operators/data_layout/transpose/transpose_ERRORIF_WrongOutputType_10x2_b_perm0/test.json') diff --git a/operators/data_layout/transpose/transpose_ERRORIF_WrongOutputType_10x2_b_perm0/test.json b/operators/data_layout/transpose/transpose_ERRORIF_WrongOutputType_10x2_b_perm0/test.json new file mode 100644 index 000000000..8a754f174 --- /dev/null +++ b/operators/data_layout/transpose/transpose_ERRORIF_WrongOutputType_10x2_b_perm0/test.json @@ -0,0 +1,55 @@ +{ + version: { + _major: 0, + _minor: 41, + _patch: 0, + _draft: true + }, + blocks: [ + { + name: "main", + operators: [ + { + op: "TRANSPOSE", + attribute_type: "TransposeAttribute", + attribute: { + perms: [ + 0, + 1 + ] + }, + inputs: [ + "input-0" + ], + outputs: [ + "result-0" + ] + } + ], + tensors: [ + { + name: "input-0", + shape: [ + 10, + 2 + ], + type: "BOOL" + }, + { + name: "result-0", + shape: [ + 10, + 2 + ], + type: "INT16" + } + ], + inputs: [ + "input-0" + ], + outputs: [ + "result-0" + ] + } + ] +} -- cgit v1.2.1