summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/Ex/tensorflowmax_ex_2D_int32.mod.py
blob: 940dab3c301b866e1cba9f4289de0724c82c5be4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# model
model = Model()
i1 = Input("input", "TENSOR_INT32", "{3, 4}")
axis = Int32Scalar("axis", 1)
out1 = Output("output", "TENSOR_INT32", "{3}")
model = model.Operation("TENSORFLOW_MAX_EX", i1, axis).To(out1)

# Example 1. Input in operand 0, 1
input0 = {i1: # input 0
          [3, 11, 3, 5,
           28, 0, -1, -13,
           -4, -22, -2, -49]}

output0 = {out1: # output 0
           [11, 28, -2]}

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