We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32ddc1a commit 3c9961eCopy full SHA for 3c9961e
tilelang/language/proxy.py
@@ -178,9 +178,6 @@ def __call__(self,
178
scope=None) -> tir.Buffer:
179
if len(shape) != len(strides):
180
raise ValueError("Invalid shape/strides' dimensions")
181
- if not bool(strides[-1] == 1):
182
- # TODO(chenggang): shall we support non-contiguous even for the last dimension?
183
- raise ValueError("The stride of the last dimension must be 1 (contiguous)")
184
return super().__call__(shape, dtype=dtype, strides=strides, scope=scope)
185
186
0 commit comments