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