Skip to content

Commit 45f3be6

Browse files
committed
No code changes made in proxy.py and setup.py
1 parent 1599ff1 commit 45f3be6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

setup.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
import os
1616
import sys
1717
import site
18-
import hashlib
19-
import sysconfig
2018
import functools
2119
import urllib.request
2220
from packaging.version import Version
@@ -25,7 +23,6 @@
2523
from setuptools.command.build_ext import build_ext
2624
import importlib
2725
import logging
28-
import fcntl
2926

3027
# Configure logging with basic settings
3128
logging.basicConfig(

tilelang/language/proxy.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,8 @@ def _construct_strides(shape: Tuple[Any]):
151151
return tuple(reversed(strides))
152152

153153
def __call__(self, shape: Tuple[Any], dtype: str = "float32", data=None) -> tir.Buffer:
154-
return super().__call__(shape, dtype=dtype, strides=TensorProxy._construct_strides(shape), data=data)
154+
return super().__call__(
155+
shape, dtype=dtype, strides=TensorProxy._construct_strides(shape), data=data)
155156

156157

157158
class StridedTensorProxy(BaseTensorProxy):

0 commit comments

Comments
 (0)