Skip to content

Tags: vvhh2002/stable-diffusion.cpp

Tags

master-f99bcd1

Toggle master-f99bcd1's commit message
fix: detect model format base on file content

master-d7af2c2

Toggle master-d7af2c2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: load weights from safetensors and ckpt (leejet#101)

master-8a87b27

Toggle master-8a87b27's commit message
fix: allow model and vae using different format

master-47dd704

Toggle master-47dd704's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: avoid build fail on msvc (leejet#93)

master-f469b83

Toggle master-f469b83's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: reading memory of stack allocated object past its scope (leejet#91)

master-8124588

Toggle master-8124588's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: ggml-alloc integration and gpu acceleration (leejet#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 <leejet714@gmail.com>

master-ae1d5dc

Toggle master-ae1d5dc's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: allow LoRAs with negative multiplier (leejet#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 <urs@nerd2nerd.org>
Co-authored-by: leejet <leejet714@gmail.com>

master-176a00b

Toggle master-176a00b's commit message
chore: add .clang-format

master-51b53d4

Toggle master-51b53d4's commit message
chore: typo remote => remove

master-9a9f3da

Toggle master-9a9f3da's commit message
feat: add LoRA support