diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-11-27 09:54:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-27 09:54:45 +0000 |
commit | 6df49457183fedec635d30dd0c611844b0932c85 (patch) | |
tree | 7cd692e17d8ff273916c52d30c77370f1871de54 /modules/sd_hijack_checkpoint.py | |
parent | 45fd785436068f3b1c09fb7bc575118b6059fc7b (diff) | |
parent | b48b7999c86fd6d7f006f76adf5a484175782c37 (diff) | |
download | stable-diffusion-webui-gfx803-6df49457183fedec635d30dd0c611844b0932c85.tar.gz stable-diffusion-webui-gfx803-6df49457183fedec635d30dd0c611844b0932c85.tar.bz2 stable-diffusion-webui-gfx803-6df49457183fedec635d30dd0c611844b0932c85.zip |
Merge branch 'master' into DPM++SDE
Diffstat (limited to 'modules/sd_hijack_checkpoint.py')
-rw-r--r-- | modules/sd_hijack_checkpoint.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/sd_hijack_checkpoint.py b/modules/sd_hijack_checkpoint.py new file mode 100644 index 00000000..5712972f --- /dev/null +++ b/modules/sd_hijack_checkpoint.py @@ -0,0 +1,10 @@ +from torch.utils.checkpoint import checkpoint + +def BasicTransformerBlock_forward(self, x, context=None): + return checkpoint(self._forward, x, context) + +def AttentionBlock_forward(self, x): + return checkpoint(self._forward, x) + +def ResBlock_forward(self, x, emb): + return checkpoint(self._forward, x, emb)
\ No newline at end of file |