Skip to content

Commit 6c837e8

Browse files
authored
add standalone support
adds a standalone release for ubuntu-22-cuda (works without having to download about 7 Gigs for nvidia's cuda toolkit and deps)
1 parent 528b036 commit 6c837e8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,10 @@ jobs:
294294
run: |
295295
cp LICENSE ./build/bin/
296296
zip -r llama-${{ steps.tag.outputs.name }}-bin-ubuntu-cuda-${{ matrix.cuda }}-x64.zip ./build/bin/*
297-
297+
cp /usr/local/cuda-${{ matrix.cuda }}/lib64/libcublas.so.12 ./build/bin/
298+
cp /usr/local/cuda-${{ matrix.cuda }}/lib64/libcublasLt.so.12 ./build/bin/
299+
cp /usr/local/cuda-${{ matrix.cuda }}/lib64/libcudart.so.12 ./build/bin/
300+
zip -r llama-${{ steps.tag.outputs.name }}-bin-ubuntu-cuda-${{ matrix.cuda }}-x64-standalone.zip ./build/bin/*
298301
- name: Upload artifacts
299302
uses: actions/upload-artifact@v4
300303
with:

0 commit comments

Comments
 (0)