From 9438531ceffbf9f8c6c123b93ec81656f6685fef Mon Sep 17 00:00:00 2001 From: James Ward Date: Wed, 14 Dec 2022 12:22:49 +0000 Subject: Create MI tests for Reduction: REDUCE_MIN, REDUCE_MAX Signed-off-by: James Ward Change-Id: I203c8f2fdfe10342a4b6bf6572b643b7c7eda1e2 --- .../reduce_max/reduce_max_22x7_f32_axis1/test.json | 52 ++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 operators/reduction/reduce_max/reduce_max_22x7_f32_axis1/test.json (limited to 'operators/reduction/reduce_max/reduce_max_22x7_f32_axis1/test.json') diff --git a/operators/reduction/reduce_max/reduce_max_22x7_f32_axis1/test.json b/operators/reduction/reduce_max/reduce_max_22x7_f32_axis1/test.json new file mode 100644 index 000000000..b3169c1dd --- /dev/null +++ b/operators/reduction/reduce_max/reduce_max_22x7_f32_axis1/test.json @@ -0,0 +1,52 @@ +{ + version: { + _major: 0, + _minor: 51, + _patch: 0, + _draft: true + }, + blocks: [ + { + name: "main", + operators: [ + { + op: "REDUCE_MAX", + attribute_type: "AxisAttribute", + attribute: { + axis: 1 + }, + inputs: [ + "input-0" + ], + outputs: [ + "result-0" + ] + } + ], + tensors: [ + { + name: "input-0", + shape: [ + 22, + 7 + ], + type: "FP32" + }, + { + name: "result-0", + shape: [ + 22, + 1 + ], + type: "FP32" + } + ], + inputs: [ + "input-0" + ], + outputs: [ + "result-0" + ] + } + ] +} -- cgit v1.2.1