Skip to content

Commit a32a0f1

Browse files
authored
Merge pull request #2 from sanjskrish/texture-lower-ffi
Removed Comments
2 parents a3cd6eb + 172573b commit a32a0f1

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

python/tvm/dlight/adreno/convolution.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ class Conv2d(AdrenoScheduleRule):
3131

3232
@staticmethod
3333
def schedule_conv2d(sch: tir.Schedule, blk: tir.schedule.BlockRV):
34-
# TODO: Loop Pattern mayn't be reliable, need to perform better analysis.
3534
n, oc, oh, ow, ob, ic, kh, kw = sch.get_loops(blk)
3635

3736
bz, vz, tz = sch.split(oc, [None, 8, 1], preserve_unit_iters=True)

python/tvm/dlight/adreno/layout_transform.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ def apply( # pylint: disable=too-many-locals
8686
[lpv_read, lpv_write] if sch.get(lpv_read) != sch.get(lpv_write) else (lpv_read,)
8787
)
8888
sch.reorder(*block_loops, *vec_loops)
89-
# TODO: Additional Pragmas and stuff
9089
if local_cache:
9190
if sch.get(lpv_read) != sch.get(lpv_write):
9291
blp_read, vlp_read = sch.split(

0 commit comments

Comments
 (0)