Skip to content

Commit

Permalink
fix te create_primfunc test
Browse files Browse the repository at this point in the history
  • Loading branch information
masahi committed Nov 15, 2022
1 parent e91f675 commit 405a3d4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/python/unittest/test_te_create_primfunc.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,7 @@ def expected_layout_attr(
C[x, y] = C[x, y] + A[x, k] * B[y, k]
for i0, i1 in T.grid(128, 128):
with T.block("D"):
T.block_attr({"layout_free_placeholders": [C]})
x, y = T.axis.remap("SS", [i0, i1])
D[x, y] = C[x, y] + T.float32(1)

Expand Down

0 comments on commit 405a3d4

Please sign in to comment.