summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/V1_0/resize_bilinear.mod.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/nnapi/specs/V1_0/resize_bilinear.mod.py')
-rw-r--r--tests/nnapi/specs/V1_0/resize_bilinear.mod.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/nnapi/specs/V1_0/resize_bilinear.mod.py b/tests/nnapi/specs/V1_0/resize_bilinear.mod.py
new file mode 100644
index 000000000..c596407ac
--- /dev/null
+++ b/tests/nnapi/specs/V1_0/resize_bilinear.mod.py
@@ -0,0 +1,18 @@
+# model
+model = Model()
+i1 = Input("op1", "TENSOR_FLOAT32", "{1, 2, 2, 1}")
+i2 = Output("op2", "TENSOR_FLOAT32", "{1, 3, 3, 1}")
+h = Int32Scalar("height", 3) # an int32_t scalar bias
+w = Int32Scalar("width", 3)
+model = model.Operation("RESIZE_BILINEAR", i1, h, w).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))