Skip to content

Commit 6484ac8

Browse files
authored
fix QuantizedTensor.is_contiguous (Comfy-Org#10956) (Comfy-Org#10959)
1 parent f55c98a commit 6484ac8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

comfy/quant_ops.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,8 +235,8 @@ def data_ptr(self):
235235
def is_pinned(self):
236236
return self._qdata.is_pinned()
237237

238-
def is_contiguous(self):
239-
return self._qdata.is_contiguous()
238+
def is_contiguous(self, *arg, **kwargs):
239+
return self._qdata.is_contiguous(*arg, **kwargs)
240240

241241
# ==============================================================================
242242
# Generic Utilities (Layout-Agnostic Operations)

0 commit comments

Comments
 (0)