1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 15:04:50 +08:00

Same thing but for the other places where it's used.

This commit is contained in:
comfyanonymous
2023-02-09 12:43:29 -05:00
parent df40d4f3bf
commit 773cdabfce
2 changed files with 11 additions and 2 deletions

View File

@@ -16,6 +16,10 @@ except:
XFORMERS_IS_AVAILBLE = False
print("No module 'xformers'. Proceeding without it.")
try:
OOM_EXCEPTION = torch.cuda.OutOfMemoryError
except:
OOM_EXCEPTION = Exception
def get_timestep_embedding(timesteps, embedding_dim):
"""
@@ -229,7 +233,7 @@ class AttnBlock(nn.Module):
r1[:, :, i:end] = torch.bmm(v, s2)
del s2
break
except torch.cuda.OutOfMemoryError as e:
except OOM_EXCEPTION as e:
if first_op_done == False:
steps *= 2
if steps > 128: