summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/Ex/reduce_sum_ex_4D_float.mod.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/nnapi/specs/Ex/reduce_sum_ex_4D_float.mod.py')
-rw-r--r--tests/nnapi/specs/Ex/reduce_sum_ex_4D_float.mod.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/nnapi/specs/Ex/reduce_sum_ex_4D_float.mod.py b/tests/nnapi/specs/Ex/reduce_sum_ex_4D_float.mod.py
new file mode 100644
index 000000000..15b8dd7b2
--- /dev/null
+++ b/tests/nnapi/specs/Ex/reduce_sum_ex_4D_float.mod.py
@@ -0,0 +1,18 @@
+# model
+model = Model()
+i1 = Input("input", "TENSOR_FLOAT32", "{1, 3, 4, 1}")
+axis = Int32Scalar("axis", 1)
+out1 = Output("output", "TENSOR_FLOAT32", "{1, 4, 1}")
+model = model.Operation("REDUCE_SUM_EX", i1, axis).To(out1)
+
+# Example 1. Input in operand 0, 1
+input0 = {i1: # input 0
+ [6.4, 7.3, 19.3, -2.3,
+ 8.3, 2.0, 11.8, -3.4,
+ 22.8, 3.0, -28.7, 4.9]}
+
+output0 = {out1: # output 0
+ [37.5, 12.3, 2.3999977, -0.7999997]}
+
+# Instantiate an example
+Example((input0, output0))