Skip to content

Commit

Permalink
Remove te tensor arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoplin-quic committed Jun 23, 2022
1 parent c2f7099 commit f03351f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/python/contrib/test_hexagon/topi/test_clip.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def test_clip_slice(
hexagon_session,
):
# establish target and input placeholder
target_hexagon = tvm.target.hexagon("v68")
target_hexagon = tvm.target.hexagon("v69")
A = te.placeholder(input_shape, name="A", dtype=dtype)

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

# allocate input and output nd arrays
Expand Down

0 comments on commit f03351f

Please sign in to comment.