summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/V1_2/reduce_sum_2D_float_nnfw.mod.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/nnapi/specs/V1_2/reduce_sum_2D_float_nnfw.mod.py')
-rwxr-xr-xtests/nnapi/specs/V1_2/reduce_sum_2D_float_nnfw.mod.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/nnapi/specs/V1_2/reduce_sum_2D_float_nnfw.mod.py b/tests/nnapi/specs/V1_2/reduce_sum_2D_float_nnfw.mod.py
new file mode 100755
index 000000000..551ef4aa5
--- /dev/null
+++ b/tests/nnapi/specs/V1_2/reduce_sum_2D_float_nnfw.mod.py
@@ -0,0 +1,19 @@
+# model
+model = Model()
+i1 = Input("input", "TENSOR_FLOAT32", "{3, 4}")
+axis = Int32Scalar("axis", 1)
+keepDims = False
+out1 = Output("output", "TENSOR_FLOAT32", "{3}")
+model = model.Operation("REDUCE_SUM", i1, axis, keepDims).To(out1)
+
+# Example 1. Input in operand 0, 1
+input0 = {i1: # input 0
+ [3.2, 11.47, 3.8, 5.76,
+ 28.2, 0.999, -1.3, -13.5,
+ -3.4, -22.1, -2.2, -49.7]}
+
+output0 = {out1: # output 0
+ [24.23, 14.399002, -77.4]}
+
+# Instantiate an example
+Example((input0, output0))