diff options
author | msglm <msglm@techchud.xyz> | 2024-04-11 23:02:40 -0500 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2024-04-11 23:02:40 -0500 |
commit | 016d82ad3f997bc3755cc75ce8d70c8c17d4f086 (patch) | |
tree | a86048f93c2ca072839315067bf446c675388352 /stablediffusion.scm | |
parent | c5cd5b7c33c64d9ffb5670476c3a30518932bbe2 (diff) | |
download | guix-msglm-016d82ad3f997bc3755cc75ce8d70c8c17d4f086.tar.gz guix-msglm-016d82ad3f997bc3755cc75ce8d70c8c17d4f086.tar.bz2 guix-msglm-016d82ad3f997bc3755cc75ce8d70c8c17d4f086.zip |
New machine learning scm
stable-diffusion, rclip, and clip-cpp
added clip-cpp
Diffstat (limited to 'stablediffusion.scm')
-rw-r--r-- | stablediffusion.scm | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/stablediffusion.scm b/stablediffusion.scm deleted file mode 100644 index ffc0047..0000000 --- a/stablediffusion.scm +++ /dev/null @@ -1,38 +0,0 @@ -(define-module (stablediffusion) - #:use-module (guix build-system cmake) - #:use-module (guix git-download) - #:use-module (guix packages) - #:use-module (guix gexp) - #:use-module (guix download) - #:use-module ((guix licenses) :prefix license:) - #:use-module (gnu packages maths) - ) -(define-public stable-diffusion-cpp - (package - (name "stable-diffusion-cpp") - (version "48bcce493f45a11d9d5a4c69943d03ff919d748f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/leejet/stable-diffusion.cpp.git") - (recursive? #t) - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1sx0y3b2bz9b5nqmav4g0hrsxinih3scyywy3zam8ywamcfpvww1")))) - (build-system cmake-build-system) - (inputs (list openblas)) - (arguments - '( - #:tests? #f - ;#:cmake "--config Release" - ;#:configure-flags (list "-DSD_CUBLAS=ON -DGGML_OPENBLAS=ON --config Release") - #:configure-flags (list "-DGGML_OPENBLAS=ON --config Release") - ) - ) - (home-page "https://github.com/leejet/stable-diffusion.cpp") - (synopsis "Inference of Stable Diffusion in pure C/C++") - (description "Inference of Stable Diffusion in pure C/C++") - (license license:expat))) |