summaryrefslogtreecommitdiff
path: root/runtimes/tests/neural_networks_test/specs/Ex/cast_ex_int32_to_float32.mod.py
diff options
context:
space:
mode:
Diffstat (limited to 'runtimes/tests/neural_networks_test/specs/Ex/cast_ex_int32_to_float32.mod.py')
-rw-r--r--runtimes/tests/neural_networks_test/specs/Ex/cast_ex_int32_to_float32.mod.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/runtimes/tests/neural_networks_test/specs/Ex/cast_ex_int32_to_float32.mod.py b/runtimes/tests/neural_networks_test/specs/Ex/cast_ex_int32_to_float32.mod.py
deleted file mode 100644
index 4a85dc9c5..000000000
--- a/runtimes/tests/neural_networks_test/specs/Ex/cast_ex_int32_to_float32.mod.py
+++ /dev/null
@@ -1,15 +0,0 @@
-# model
-model = Model()
-i1 = Input("op1", "TENSOR_INT32", "{2, 3}")
-i2 = Output("op2", "TENSOR_FLOAT32", "{2, 3}")
-model = model.Operation("CAST_EX", i1).To(i2)
-
-# Example 1. Input in operand 0,
-input0 = {i1: # input 0
- [100, 200, 300, 400, 500, 600]}
-
-output0 = {i2: # output 0
- [100.0, 200.0, 300.0, 400.0, 500.0, 600.0]}
-
-# Instantiate an example
-Example((input0, output0))