Merge branch 'comfyanonymous:master' into master

This commit is contained in:
patientx 2024-08-21 19:19:41 +03:00 committed by GitHub
commit 0774774bb9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -250,7 +250,7 @@ def fp8_linear(self, input):
return None
if len(input.shape) == 3:
inn = input.view(-1, input.shape[2]).to(dtype)
inn = input.reshape(-1, input.shape[2]).to(dtype)
non_blocking = comfy.model_management.device_supports_non_blocking(input.device)
w = cast_to(self.weight, device=input.device, non_blocking=non_blocking).t()
@ -259,7 +259,7 @@ def fp8_linear(self, input):
else:
o, _ = torch._scaled_mm(inn, w, out_dtype=input.dtype)
return o.view((-1, input.shape[1], self.weight.shape[0]))
return o.reshape((-1, input.shape[1], self.weight.shape[0]))
return None
class fp8_ops(manual_cast):