aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/test/test_supported_operators.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/test/test_supported_operators.py')
-rw-r--r--ethosu/vela/test/test_supported_operators.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethosu/vela/test/test_supported_operators.py b/ethosu/vela/test/test_supported_operators.py
index 666a5ecc..38308154 100644
--- a/ethosu/vela/test/test_supported_operators.py
+++ b/ethosu/vela/test/test_supported_operators.py
@@ -246,7 +246,7 @@ def test_constraint_bias_40bit():
op = testutil.create_op_with_quant_tensors(Op.Conv2DBias, [1, 1, 1, 1], [1, 1, 1, 1], weights_shape=[1, 1, 1, 1])
op.attrs = {"stride_w": 1, "stride_h": 1}
bias = Tensor([1, 1, 1, 1], DataType.int64, "bias")
- bias.quant_values = np.array([0x01FF_FFFF_FFFF])
+ bias.values = np.array([0x01FF_FFFF_FFFF])
op.add_input_tensor(bias)
assert not support.is_operator_supported(op)