From d2f0a9657439fe7ad7c60208a9eacafdcb1af5be Mon Sep 17 00:00:00 2001 From: Jeremy Johnson Date: Fri, 17 Jun 2022 13:07:05 +0100 Subject: Updating REDUCE_MAX tests for v0.30.0 release Signed-off-by: Jeremy Johnson Change-Id: Ifad1bf01c9285e09596729029bd9cba05a6042a1 --- .../reduce_max_23x24x23_i16_axis2/test.json | 54 ++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 operators/reduction/reduce_max/reduce_max_23x24x23_i16_axis2/test.json (limited to 'operators/reduction/reduce_max/reduce_max_23x24x23_i16_axis2/test.json') diff --git a/operators/reduction/reduce_max/reduce_max_23x24x23_i16_axis2/test.json b/operators/reduction/reduce_max/reduce_max_23x24x23_i16_axis2/test.json new file mode 100644 index 000000000..4616818f7 --- /dev/null +++ b/operators/reduction/reduce_max/reduce_max_23x24x23_i16_axis2/test.json @@ -0,0 +1,54 @@ +{ + version: { + _major: 0, + _minor: 30, + _patch: 0, + _draft: false + }, + blocks: [ + { + name: "main", + operators: [ + { + op: "REDUCE_MAX", + attribute_type: "AxisAttribute", + attribute: { + axis: 2 + }, + inputs: [ + "input-0" + ], + outputs: [ + "result-0" + ] + } + ], + tensors: [ + { + name: "input-0", + shape: [ + 23, + 24, + 23 + ], + type: "INT16" + }, + { + name: "result-0", + shape: [ + 23, + 24, + 1 + ], + type: "INT16" + } + ], + inputs: [ + "input-0" + ], + outputs: [ + "result-0" + ] + } + ] +} -- cgit v1.2.1