Skip to content

Releases: leejet/stable-diffusion.cpp

master-9a9f3da

19 Nov 09:45
Compare
Choose a tag to compare
feat: add LoRA support

master-51b53d4

19 Nov 15:23
Compare
Choose a tag to compare
chore: typo remote => remove

master-176a00b

19 Nov 11:37
Compare
Choose a tag to compare
chore: add .clang-format

master-0d9b801

19 Nov 15:21
Compare
Choose a tag to compare
fix: fix multi loras prompt parse

master-536f3af

17 Nov 14:56
Compare
Choose a tag to compare
feat: add lcm sampler support

This referenced an issue discussion of the stable-diffusion-webui at
https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/13952, which
may not be too perfect.

master-3bf1665

28 Oct 12:57
Compare
Choose a tag to compare
chore: clear the msvc compilation warning

master-ed37498

26 Oct 16:53
Compare
Choose a tag to compare
fix: set eps of ggml_norm(LayerNorm) to 1e-5

master-fbd18e1

23 Oct 13:14
Compare
Choose a tag to compare
fix: avoid stack overflow on MSVC

master-09cab2a

22 Oct 07:01
Compare
Choose a tag to compare
chore: set default BUILD_SHARED_LIBS to OFF

master-afec505

18 Sep 13:11
afec505
Compare
Choose a tag to compare
feat: write generation parameter exif data into output png (#57)

* Write generation parameter exif data into output pngs.

This adds prompt, negative prompt (if nonempty) and other generation
parameters to the output file as a tEXt PNG block, in the same format as
AUTOMATIC1111 webui does.

In order to keep everything free of external library dependencies, I
have somewhat dirtily hacked this into the stb_image_write
implementation.

* Mention png text data in README.md, include "karras" in sampler text

* add Steps/Model/RNG to parameter string

---------

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