Skip to content

Tags: JoPmt/stable-diffusion.cpp

Tags

master-697d000

Toggle master-697d000's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: add SYCL Backend Support for Intel GPUs (leejet#330)

* update ggml and add SYCL CMake option

Signed-off-by: zhentaoyu <zhentao.yu@intel.com>

* hacky CMakeLists.txt for updating ggml in cpu backend

Signed-off-by: zhentaoyu <zhentao.yu@intel.com>

* rebase and clean code

Signed-off-by: zhentaoyu <zhentao.yu@intel.com>

* add sycl in README

Signed-off-by: zhentaoyu <zhentao.yu@intel.com>

* rebase ggml commit

Signed-off-by: zhentaoyu <zhentao.yu@intel.com>

* refine README

Signed-off-by: zhentaoyu <zhentao.yu@intel.com>

* update ggml for supporting sycl tsembd op

Signed-off-by: zhentaoyu <zhentao.yu@intel.com>

---------

Signed-off-by: zhentaoyu <zhentao.yu@intel.com>

master-3d854f7

Toggle master-3d854f7's commit message
sync: update ggml submodule url

master-73c2176

Toggle master-73c2176's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: add sd3 support (leejet#298)

master-4a6e36e

Toggle master-4a6e36e's commit message
sync: update ggml

master-9c51d87

Toggle master-9c51d87's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: fix cuda CI (leejet#286)

master-e1384de

Toggle master-e1384de's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
perf: make crc32 100x faster on x86-64 (leejet#278)

This change makes checkpoints load significantly faster by optimizing
pkzip's cyclic redundancy check. This code was developed by Intel and
Google and Mozilla. See Chromium's zlib codebase for further details.

master-8142803

Toggle master-8142803's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: update artifact actions (leejet#267)

master-1d2af5c

Toggle master-1d2af5c's commit message
fix: set n_dims of tensor storage to 1 when it's 0

master-ce1bcc7

Toggle master-ce1bcc7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: add AYS(Align Your Steps) scheduler (leejet#241)

Added NVIDEA's new "Align Your Steps" style scheduler in accordance with their
quick start guide. Currently has handling for SD1.5, SDXL, and SVD, using the
noise levels from their paper to generate the sigma values. Can be selected
using the --schedule ays command line switch. Updates the main.cpp help
message and README to reflect this option, also they now inform the user
of the --color switch as well.

---------

Co-authored-by: leejet <leejet714@gmail.com>

master-760cfaa

Toggle master-760cfaa's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: ignore tensors with the particular dim while loading (leejet#233)