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