summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/V1_0/resize_bilinear.mod.py
blob: 17fb34007763d4dd015287ea3f9b6a5bf2ae6e49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# model
model = Model()
i1 = Input("op1", "TENSOR_FLOAT32", "{1, 2, 2, 1}")
i2 = Output("op2", "TENSOR_FLOAT32", "{1, 3, 3, 1}")
w = Int32Scalar("width", 3)
h = Int32Scalar("height", 3)
model = model.Operation("RESIZE_BILINEAR", i1, w, h).To(i2)

# Example 1. Input in operand 0,
input0 = {i1: # input 0
          [1.0, 1.0, 2.0, 2.0]}
output0 = {i2: # output 0
           [1.0, 1.0, 1.0,
            1.666666667, 1.666666667, 1.666666667,
            2.0, 2.0, 2.0]}

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