summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/Ex/exp_ex_1D_float.mod.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/nnapi/specs/Ex/exp_ex_1D_float.mod.py')
-rw-r--r--tests/nnapi/specs/Ex/exp_ex_1D_float.mod.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/nnapi/specs/Ex/exp_ex_1D_float.mod.py b/tests/nnapi/specs/Ex/exp_ex_1D_float.mod.py
deleted file mode 100644
index 1979b0aec..000000000
--- a/tests/nnapi/specs/Ex/exp_ex_1D_float.mod.py
+++ /dev/null
@@ -1,15 +0,0 @@
-# model
-model = Model()
-i1 = Input("op1", "TENSOR_FLOAT32", "{4}") # a vector of 4 float32s
-i2 = Output("op2", "TENSOR_FLOAT32", "{4}") # a vector of 4 float32s
-model = model.Operation("EXP_EX", i1).To(i2)
-
-# Example 1. Input in operand 0,
-input0 = {i1: # input 0
- [3.0, 4.0, 5.0, 6.0]}
-
-output0 = {i2: # output 0
- [20.085537, 54.59815, 148.41316, 403.4288]}
-
-# Instantiate an example
-Example((input0, output0))