Fix onnx export not working on flux.

This commit is contained in:
comfyanonymous 2024-09-06 03:21:52 -04:00
parent 0c7c98a965
commit c27ebeb1c2
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ except:
rms_norm_torch = None
def rms_norm(x, weight, eps=1e-6):
if rms_norm_torch is not None:
if rms_norm_torch is not None and not (torch.jit.is_tracing() or torch.jit.is_scripting()):
return rms_norm_torch(x, weight.shape, weight=comfy.ops.cast_to(weight, dtype=x.dtype, device=x.device), eps=eps)
else:
rrms = torch.rsqrt(torch.mean(x**2, dim=-1, keepdim=True) + eps)