From 4129b45c7464197b7a3415c6865282352a7fa40e Mon Sep 17 00:00:00 2001 From: Jeremy Johnson Date: Thu, 13 Oct 2022 13:54:23 +0100 Subject: Updating ARGMAX tests for FP16 and accumulator types Signed-off-by: Jeremy Johnson Change-Id: I96337ce765a04870b548f7905ab869c2e0287808 --- .../test.json | 55 ++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 operators/tensor/argmax/argmax_ERRORIF_ArgmaxOutputShapeMismatch_10x11x2x5_i16_axis0/test.json (limited to 'operators/tensor/argmax/argmax_ERRORIF_ArgmaxOutputShapeMismatch_10x11x2x5_i16_axis0/test.json') diff --git a/operators/tensor/argmax/argmax_ERRORIF_ArgmaxOutputShapeMismatch_10x11x2x5_i16_axis0/test.json b/operators/tensor/argmax/argmax_ERRORIF_ArgmaxOutputShapeMismatch_10x11x2x5_i16_axis0/test.json new file mode 100644 index 000000000..dfcb9d861 --- /dev/null +++ b/operators/tensor/argmax/argmax_ERRORIF_ArgmaxOutputShapeMismatch_10x11x2x5_i16_axis0/test.json @@ -0,0 +1,55 @@ +{ + version: { + _major: 0, + _minor: 41, + _patch: 0, + _draft: true + }, + blocks: [ + { + name: "main", + operators: [ + { + op: "ARGMAX", + attribute_type: "AxisAttribute", + attribute: { + axis: 0 + }, + inputs: [ + "input-0" + ], + outputs: [ + "result-0" + ] + } + ], + tensors: [ + { + name: "input-0", + shape: [ + 10, + 11, + 2, + 5 + ], + type: "INT16" + }, + { + name: "result-0", + shape: [ + 18, + 11, + 6 + ], + type: "INT32" + } + ], + inputs: [ + "input-0" + ], + outputs: [ + "result-0" + ] + } + ] +} -- cgit v1.2.1