Skip to content

Commit c2d90bf

Browse files
committed
address comments
Change-Id: I7196a0fa468eb7c6a96f2b8a68f3a2dcf5a5693c
1 parent bcb7005 commit c2d90bf

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

tests/python/contrib/test_ethosu/test_codegen.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1000,7 +1000,6 @@ def split_func(x):
10001000
)
10011001
def test_ethosu_requantize(accel_type, ifm_shape, ifm_scale, ifm_zp, ofm_scale, ofm_zp):
10021002
dtype = "int8"
1003-
ifm_shape = [1, 8, 8, 3]
10041003

10051004
def create_model():
10061005
ifm = relay.var("ifm", shape=ifm_shape, dtype="int8")

tests/python/contrib/test_ethosu/test_legalize.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1509,7 +1509,6 @@ def verify(ext_func):
15091509
)
15101510
def test_ethosu_requantize(ifm_shape, ifm_scale, ifm_zp, ofm_scale, ofm_zp):
15111511
dtype = "int8"
1512-
ifm_shape = [1, 8, 8, 3]
15131512

15141513
def create_model():
15151514
ifm = relay.var("ifm", shape=ifm_shape, dtype="int8")
@@ -1561,7 +1560,7 @@ def verify(ext_func):
15611560

15621561
def test_multiple_requantize_offload():
15631562
"""
1564-
Testing requantize offload in the case one requauntize operation is part of
1563+
Testing requantize offload in the case one requantize operation is part of
15651564
an existing pattern (in this case Mean: cast->mean->requantize) and the
15661565
other is a stand-alone requantize.
15671566
"""

0 commit comments

Comments
 (0)