summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/skip/V1_2/floor_float16.mod.py
blob: 5944b9bb985eb5608418817ff0a2e19b9a4b7bb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# model
model = Model()
i1 = Input("op1", "TENSOR_FLOAT16", "{1, 2, 2, 2}")
i2 = Output("op2", "TENSOR_FLOAT16", "{1, 2, 2, 2}")
model = model.Operation("FLOOR", i1).To(i2)

# Example 1. Input in operand 0,
input0 = {i1: # input 0
          [-1.5, -1.0, -0.5, 0.0,
            .5,   1.0,  1.5, 10.2]}

output0 = {i2: # output 0
           [-2.0, -1.0, -1.0, 0.0,
             0.0,  1.0,  1.0, 10]}

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