We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f55c98a commit 6484ac8Copy full SHA for 6484ac8
comfy/quant_ops.py
@@ -235,8 +235,8 @@ def data_ptr(self):
235
def is_pinned(self):
236
return self._qdata.is_pinned()
237
238
- def is_contiguous(self):
239
- return self._qdata.is_contiguous()
+ def is_contiguous(self, *arg, **kwargs):
+ return self._qdata.is_contiguous(*arg, **kwargs)
240
241
# ==============================================================================
242
# Generic Utilities (Layout-Agnostic Operations)
0 commit comments