Skip to content

Commit f03351f

Browse files
committed
Remove te tensor arguments
1 parent c2f7099 commit f03351f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/python/contrib/test_hexagon/topi/test_clip.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def test_clip_slice(
7474
hexagon_session,
7575
):
7676
# establish target and input placeholder
77-
target_hexagon = tvm.target.hexagon("v68")
77+
target_hexagon = tvm.target.hexagon("v69")
7878
A = te.placeholder(input_shape, name="A", dtype=dtype)
7979

8080
# get the compute function and schedule
@@ -87,7 +87,7 @@ def test_clip_slice(
8787
# build the function
8888
with tvm.transform.PassContext(opt_level=3):
8989
func = tvm.build(
90-
sch, [A, M], tvm.target.Target(target_hexagon, host=target_hexagon), name="clip"
90+
sch, tvm.target.Target(target_hexagon, host=target_hexagon), name="clip"
9191
)
9292

9393
# allocate input and output nd arrays

0 commit comments

Comments
 (0)