summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/Ex/reduce_sum_ex_4D_float_reducing_HW.mod.py
blob: d94bcf79c40ac376861356fc0c286194a552c972 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
batch = 2
rows = 3
cols = 4
depth = 5

input_table = [x for x in range(batch * rows * cols * depth)]

output_table = [0 for x in range(batch * depth)]
for i in range(batch):
  for j in range(rows):
    for k in range(cols):
      for l in range(depth):
        # The value of output_table is the rowwise sum and colwise sum of input_table.
        output_table[i * depth + l] += input_table[i * rows * cols * depth + j * cols * depth + k * depth + l];

model = Model()
i1 = Input("input", "TENSOR_FLOAT32", "{%d, %d, %d, %d}" % (batch, rows, cols, depth))
# Axis value should be in the range [-(rank), rank). And '-n' is the same axis with 'rank - n'. So this test's axis value are the same [1, 2].
axis = Parameter("axis", "TENSOR_INT32", "{4}", [1, 2, -3, -2])
output = Output("output", "TENSOR_FLOAT32", "{%d, %d}" % (batch, depth))

model = model.Operation("REDUCE_SUM_EX", i1, axis).To(output)

# Example 1. Input in operand 0,
input0 = {i1: # input 0
          input_table}

output0 = {output: # output 0
          output_table}

# Instantiate an example
Example((input0, output0))