Merge branch 'comfyanonymous:master' into master

This commit is contained in:
patientx 2025-11-28 01:43:26 +03:00 committed by GitHub
commit 9a060c049b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -425,7 +425,8 @@ class TensorCoreFP8Layout(QuantizedLayout):
@staticmethod
def dequantize(qdata, scale, orig_dtype, **kwargs):
plain_tensor = torch.ops.aten._to_copy.default(qdata, dtype=orig_dtype)
return plain_tensor * scale
plain_tensor.mul_(scale)
return plain_tensor
@classmethod
def get_plain_tensors(cls, qtensor):

View File

@ -1,5 +1,5 @@
comfyui-frontend-package==1.32.9
comfyui-workflow-templates==0.7.20
comfyui-workflow-templates==0.7.23
comfyui-embedded-docs==0.3.1
torch
torchsde