Skip to content

Releases: leejet/stable-diffusion.cpp

master-69efe3c

09 Dec 09:39
Compare
Choose a tag to compare
chore: make code cleaner

master-2eac844

09 Dec 06:41
Compare
Choose a tag to compare
fix: generate image correctly in img2img mode

master-134883a

05 Dec 14:42
134883a
Compare
Choose a tag to compare
feat: add TAESD implementation - faster autoencoder (#88)

* add taesd implementation

* taesd gpu offloading

* show seed when generating image with -s -1

* less restrictive with larger images

* cuda: im2col speedup x2

* cuda: group norm speedup x90

* quantized models now works in cuda :)

* fix cal mem size

---------

Co-authored-by: leejet <[email protected]>

master-f99bcd1

03 Dec 12:34
Compare
Choose a tag to compare
fix: detect model format base on file content

master-d7af2c2

03 Dec 07:50
d7af2c2
Compare
Choose a tag to compare
feat: load weights from safetensors and ckpt (#101)

master-8a87b27

03 Dec 09:15
Compare
Choose a tag to compare
fix: allow model and vae using different format

master-47dd704

28 Nov 12:51
47dd704
Compare
Choose a tag to compare
fix: avoid build fail on msvc (#93)

master-f469b83

27 Nov 13:39
f469b83
Compare
Choose a tag to compare
fix: reading memory of stack allocated object past its scope (#91)

master-8124588

26 Nov 11:04
8124588
Compare
Choose a tag to compare
feat: ggml-alloc integration and gpu acceleration (#75)

* set ggml url to FSSRepo/ggml

* ggml-alloc integration

* offload all functions to gpu

* gguf format + native converter

* merge custom vae to a model

* full offload to gpu

* improve pretty progress

---------

Co-authored-by: leejet <[email protected]>

master-ae1d5dc

20 Nov 14:28
ae1d5dc
Compare
Choose a tag to compare
feat: allow LoRAs with negative multiplier (#83)

* Allow Loras with negative weight, too.

There are a couple of loras, which serve to adjust certain concepts in
both positive and negative directions (like exposure, detail level etc).

The current code rejects them if loaded with a negative weight, but I
suggest that this check can simply be dropped.

* ignore lora in the case of multiplier == 0.f

---------

Co-authored-by: Urs Ganse <[email protected]>
Co-authored-by: leejet <[email protected]>