summaryrefslogtreecommitdiff
path: root/nn/runtime/test/specs/V1_3/while_fib.mod.py
diff options
context:
space:
mode:
Diffstat (limited to 'nn/runtime/test/specs/V1_3/while_fib.mod.py')
-rw-r--r--nn/runtime/test/specs/V1_3/while_fib.mod.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nn/runtime/test/specs/V1_3/while_fib.mod.py b/nn/runtime/test/specs/V1_3/while_fib.mod.py
index d26488fcb..ffd696a9f 100644
--- a/nn/runtime/test/specs/V1_3/while_fib.mod.py
+++ b/nn/runtime/test/specs/V1_3/while_fib.mod.py
@@ -55,7 +55,7 @@ def MakeBodyModel():
fib_out = Output("fib_out", FibType)
i_out = Output("i_out", CounterType)
matrix = Parameter("matrix", ["TENSOR_FLOAT32", [2, 2]], [0, 1, 1, 1])
- zero_bias = Parameter("zero_bias", ["TENSOR_FLOAT32", [2, 1]], [0, 0])
+ zero_bias = Parameter("zero_bias", ["TENSOR_FLOAT32", [2]], [0, 0])
model = Model()
model.IdentifyInputs(fib, i, n)
model.IdentifyOutputs(fib_out, i_out)