summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/Ex/tensorflowmax_ex_2D_float.mod.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/nnapi/specs/Ex/tensorflowmax_ex_2D_float.mod.py')
-rw-r--r--tests/nnapi/specs/Ex/tensorflowmax_ex_2D_float.mod.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/nnapi/specs/Ex/tensorflowmax_ex_2D_float.mod.py b/tests/nnapi/specs/Ex/tensorflowmax_ex_2D_float.mod.py
deleted file mode 100644
index 6cf8d83e7..000000000
--- a/tests/nnapi/specs/Ex/tensorflowmax_ex_2D_float.mod.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# model
-model = Model()
-i1 = Input("input", "TENSOR_FLOAT32", "{3, 4}")
-axis = Int32Scalar("axis", 1)
-out1 = Output("output", "TENSOR_FLOAT32", "{3}")
-model = model.Operation("TENSORFLOW_MAX_EX", i1, axis).To(out1)
-
-# Example 1. Input in operand 0, 1
-input0 = {i1: # input 0
- [3.2, 11.47, 3.8, 5.76,
- 28.2, 0.999, -1.3, -13.5,
- -3.4, -22.1, -2.2, -49.7]}
-
-output0 = {out1: # output 0
- [11.47, 28.2, -2.2]}
-
-# Instantiate an example
-Example((input0, output0))