Skip to content

Commit 17cd762

Browse files
committed
delete layout_free_buffers
1 parent 1aa9492 commit 17cd762

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/python/relax/test_transform_split_layout_rewrite_preproc.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ def tir_func_prepacked(
6666
W_rewrite: T.Buffer((4, 4, 56, 56), "float32"),
6767
Out: T.Buffer((224, 224), "float32"),
6868
):
69-
T.func_attr({"layout_free_buffers": [1]})
7069
for i0, j0, i1, j1 in T.grid(4, 4, 56, 56):
7170
with T.block("Out"):
7271
vi = T.axis.spatial(224, i0 * 56 + i1)
@@ -78,7 +77,6 @@ def tir_func_weight_prepack(
7877
W: T.Buffer((224, 224), "float32"),
7978
W_rewrite: T.Buffer((4, 4, 56, 56), "float32"),
8079
):
81-
T.func_attr({"layout_free_buffers": [1]})
8280
for i, j in T.grid(224, 224):
8381
with T.block("W_rewrite"):
8482
vi, vj = T.axis.remap("SS", [i, j])

0 commit comments

Comments
 (0)