feat: replace cuda13 flavour with per-GPU-generation packages
All checks were successful
deploy-ui / build-and-deploy (push) Successful in 44s
All checks were successful
deploy-ui / build-and-deploy (push) Successful in 44s
Build separate packages for each GPU generation instead of a single cuda13 package: - mistralrs-ampere (sm_86, RTX 3060) - mistralrs-ada (sm_89, RTX 4090) - mistralrs-blackwell (sm_120, RTX 5090) All use the same CUDA 13.0 toolkit and features (cuda, cudnn, flash-attn, nccl), varying only the compute capability target. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -28,7 +28,7 @@ jobs:
|
||||
run: |
|
||||
version="${UPSTREAM_TAG#v}"
|
||||
needs_build=false
|
||||
for target in "43:cuda13"; do
|
||||
for target in "43:ampere" "43:ada" "43:blackwell"; do
|
||||
fedora_version="${target%%:*}"
|
||||
flavour="${target##*:}"
|
||||
base_url="https://rpm.lair.cafe/fedora/${fedora_version}/x86_64"
|
||||
@@ -116,7 +116,7 @@ jobs:
|
||||
run: |
|
||||
prerelease="0.1.${UPSTREAM_DATE}git${UPSTREAM_SHORT_SHA}"
|
||||
needs_build=false
|
||||
for target in "43:cuda13"; do
|
||||
for target in "43:ampere" "43:ada" "43:blackwell"; do
|
||||
fedora_version="${target%%:*}"
|
||||
flavour="${target##*:}"
|
||||
base_url="https://rpm.lair.cafe/fedora/${fedora_version}/x86_64/unstable"
|
||||
|
||||
Reference in New Issue
Block a user