Merge pull request #14689 from AUTOMATIC1111/fix-nested-manual-cast
Fix nested manual cast
This commit is contained in:
commit
c1713bfeac
|
@ -164,7 +164,11 @@ def manual_cast_forward(target_dtype):
|
||||||
|
|
||||||
@contextlib.contextmanager
|
@contextlib.contextmanager
|
||||||
def manual_cast(target_dtype):
|
def manual_cast(target_dtype):
|
||||||
|
applied = False
|
||||||
for module_type in patch_module_list:
|
for module_type in patch_module_list:
|
||||||
|
if hasattr(module_type, "org_forward"):
|
||||||
|
continue
|
||||||
|
applied = True
|
||||||
org_forward = module_type.forward
|
org_forward = module_type.forward
|
||||||
if module_type == torch.nn.MultiheadAttention and has_xpu():
|
if module_type == torch.nn.MultiheadAttention and has_xpu():
|
||||||
module_type.forward = manual_cast_forward(torch.float32)
|
module_type.forward = manual_cast_forward(torch.float32)
|
||||||
|
@ -174,8 +178,11 @@ def manual_cast(target_dtype):
|
||||||
try:
|
try:
|
||||||
yield None
|
yield None
|
||||||
finally:
|
finally:
|
||||||
for module_type in patch_module_list:
|
if applied:
|
||||||
module_type.forward = module_type.org_forward
|
for module_type in patch_module_list:
|
||||||
|
if hasattr(module_type, "org_forward"):
|
||||||
|
module_type.forward = module_type.org_forward
|
||||||
|
delattr(module_type, "org_forward")
|
||||||
|
|
||||||
|
|
||||||
def autocast(disable=False):
|
def autocast(disable=False):
|
||||||
|
|
Loading…
Reference in New Issue