"vscode:/vscode.git/clone" did not exist on "2db86b4676ed2b5c8551beea25dd2ef3fe3c4f66"
Commit 805c36ac authored by comfyanonymous's avatar comfyanonymous
Browse files

Make Stable Cascade work on old pytorch 2.0

parent f2d1d16f
......@@ -150,7 +150,11 @@ class ResBlock(nn.Module):
mods = self.gammas
x_temp = self._norm(x, self.norm1) * (1 + mods[0]) + mods[1]
x = x + self.depthwise(x_temp) * mods[2]
try:
x = x + self.depthwise(x_temp) * mods[2]
except: #operation not implemented for bf16
x_temp = self.depthwise[0](x_temp.float()).to(x.dtype)
x = x + self.depthwise[1](x_temp) * mods[2]
x_temp = self._norm(x, self.norm2) * (1 + mods[3]) + mods[4]
x = x + self.channelwise(x_temp.permute(0, 2, 3, 1)).permute(0, 3, 1, 2) * mods[5]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment