mirror of
https://github.com/leejet/stable-diffusion.cpp.git
synced 2026-01-02 10:43:35 +00:00
Compare commits
No commits in common. "eed97a5e1d054f9c1e7ac01982ae480411d4157e" and "bd1eaef93eed70ab227997c3771d9a814d27208c" have entirely different histories.
eed97a5e1d
...
bd1eaef93e
@ -410,7 +410,6 @@ These projects use `stable-diffusion.cpp` as a backend for their image generatio
|
|||||||
- [Stable Diffusion CLI-GUI](https://github.com/piallai/stable-diffusion.cpp)
|
- [Stable Diffusion CLI-GUI](https://github.com/piallai/stable-diffusion.cpp)
|
||||||
- [Local Diffusion](https://github.com/rmatif/Local-Diffusion)
|
- [Local Diffusion](https://github.com/rmatif/Local-Diffusion)
|
||||||
- [sd.cpp-webui](https://github.com/daniandtheweb/sd.cpp-webui)
|
- [sd.cpp-webui](https://github.com/daniandtheweb/sd.cpp-webui)
|
||||||
- [LocalAI](https://github.com/mudler/LocalAI)
|
|
||||||
|
|
||||||
## Contributors
|
## Contributors
|
||||||
|
|
||||||
|
|||||||
2
ggml
2
ggml
@ -1 +1 @@
|
|||||||
Subproject commit 56938c4a3b2d923f42040f9ad32d229c76c466cd
|
Subproject commit 9e4bee1c5afc2d677a5b32ecb90cbdb483e81fff
|
||||||
@ -112,7 +112,7 @@ __STATIC_INLINE__ struct ggml_tensor* ggml_merge_lora(ggml_context* ctx, struct
|
|||||||
// [ne03,ne02,ne01,ne00] x [ne13,ne12,ne11,ne10] => [ne03*ne13,ne02*ne12,ne01*ne11,ne00*ne10]
|
// [ne03,ne02,ne01,ne00] x [ne13,ne12,ne11,ne10] => [ne03*ne13,ne02*ne12,ne01*ne11,ne00*ne10]
|
||||||
__STATIC_INLINE__ struct ggml_tensor* ggml_kronecker(ggml_context* ctx, struct ggml_tensor* a, struct ggml_tensor* b) {
|
__STATIC_INLINE__ struct ggml_tensor* ggml_kronecker(ggml_context* ctx, struct ggml_tensor* a, struct ggml_tensor* b) {
|
||||||
return ggml_mul(ctx,
|
return ggml_mul(ctx,
|
||||||
ggml_interpolate(ctx,
|
ggml_upscale_ext(ctx,
|
||||||
a,
|
a,
|
||||||
a->ne[0] * b->ne[0],
|
a->ne[0] * b->ne[0],
|
||||||
a->ne[1] * b->ne[1],
|
a->ne[1] * b->ne[1],
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user