Search Criteria
Package Details: stable-diffusion.cpp-cublas-git r108.48bcce4-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/stable-diffusion.cpp-git.git (read-only, click to copy) |
---|---|
Package Base: | stable-diffusion.cpp-git |
Description: | Stable Diffusion in pure C/C++ (with NVIDIA CUDA optimizations) |
Upstream URL: | https://github.com/leejet/stable-diffusion.cpp |
Licenses: | MIT |
Conflicts: | stable-diffusion.cpp-git |
Provides: | stable-diffusion.cpp-git |
Submitter: | robertfoster |
Maintainer: | robertfoster |
Last Packager: | robertfoster |
Votes: | 2 |
Popularity: | 0.002987 |
First Submitted: | 2023-12-24 16:37 (UTC) |
Last Updated: | 2024-03-26 10:14 (UTC) |
Dependencies (7)
- cuda (cuda11.1AUR, cuda-12.2AUR, cuda12.0AUR, cuda11.4AUR, cuda11.4-versionedAUR, cuda12.0-versionedAUR)
- ccache (ccache-gitAUR) (make)
- cmake (cmake-gitAUR) (make)
- cuda (cuda11.1AUR, cuda-12.2AUR, cuda12.0AUR, cuda11.4AUR, cuda11.4-versionedAUR, cuda12.0-versionedAUR) (make)
- git (git-gitAUR, git-glAUR) (make)
- openblas (openblas-lapackAUR) (make)
- rocm-hip-sdk (opencl-amd-devAUR) (make)
Latest Comments
« First ‹ Previous 1 2
dreieck commented on 2024-02-08 15:03 (UTC)
You need to rework your
pkgver()
:It must generate a higher version number with each upstream commit.
But for this package, this is erratic:
master
is a constant, and then follows the git commit hash, which has no ordering.Please make sure that
$pkgver
increases with each upstream commit; as a last resort user<commit_count>
where<commit_count>
can be retrieved programmatically withgit rev-list --count HEAD
.ALSO
please follow the Arch Linux guide on git submodules and list all submodules in the
source
array and then only reference them inprepare()
.Regards and thanks for maintaining!
« First ‹ Previous 1 2