Skip to content

Commit 7da5ae6

Browse files
committed
Add 0.1.71 builds to package index
Also revert previous API workaround
1 parent 3b0938a commit 7da5ae6

File tree

32 files changed

+326
-128
lines changed

32 files changed

+326
-128
lines changed

.github/workflows/build-wheels-0.1.62.yml

Lines changed: 10 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -68,31 +68,20 @@ jobs:
6868
if ($env:AVXVER -eq 'AVX512') {$env:CMAKE_ARGS = $env:CMAKE_ARGS + ' -DLLAMA_AVX512=on'}
6969
$env:CUDAFLAGS = '-arch=all'
7070
python -m build --wheel -C--build-option=egg_info "-C--build-option=--tag-build=+cu$cudaVersion"
71-
72-
- uses: actions/upload-artifact@v3
73-
with:
74-
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
75-
path: ./dist/*.whl
76-
77-
upload_release_assets:
78-
name: Upload wheels to a GitHub release
79-
needs: build_wheels
80-
runs-on: ubuntu-latest
81-
strategy:
82-
matrix:
83-
releasetag: ["AVX","wheels","AVX512"]
84-
85-
steps:
86-
- uses: actions/download-artifact@v3
87-
with:
88-
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
8971
90-
- name: Upload ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }} wheels to a GitHub release
72+
- name: Upload files to a GitHub release
9173
id: upload-release
9274
uses: svenstaro/upload-release-action@2.6.1
75+
continue-on-error: true
9376
with:
94-
file: ./**.whl
77+
file: ./dist/*.whl
9578
tag: ${{ matrix.releasetag }}
9679
file_glob: true
9780
make_latest: false
98-
overwrite: ${{ github.run_attempt == '1' && 'true' || 'false' }}
81+
overwrite: true
82+
83+
- uses: actions/upload-artifact@v3
84+
if: steps.upload-release.outcome == 'failure'
85+
with:
86+
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
87+
path: ./dist/*.whl

.github/workflows/build-wheels-0.1.66.yml

Lines changed: 10 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -67,31 +67,20 @@ jobs:
6767
if ($env:AVXVER -eq 'AVX') {$env:CMAKE_ARGS = $env:CMAKE_ARGS + ' -DLLAMA_AVX2=off'}
6868
if ($env:AVXVER -eq 'AVX512') {$env:CMAKE_ARGS = $env:CMAKE_ARGS + ' -DLLAMA_AVX512=on'}
6969
python -m build --wheel -C--build-option=egg_info "-C--build-option=--tag-build=+cu$cudaVersion"
70-
71-
- uses: actions/upload-artifact@v3
72-
with:
73-
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
74-
path: ./dist/*.whl
75-
76-
upload_release_assets:
77-
name: Upload wheels to a GitHub release
78-
needs: build_wheels
79-
runs-on: ubuntu-latest
80-
strategy:
81-
matrix:
82-
releasetag: ["AVX","wheels","AVX512"]
83-
84-
steps:
85-
- uses: actions/download-artifact@v3
86-
with:
87-
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
8870
89-
- name: Upload ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }} wheels to a GitHub release
71+
- name: Upload files to a GitHub release
9072
id: upload-release
9173
uses: svenstaro/upload-release-action@2.6.1
74+
continue-on-error: true
9275
with:
93-
file: ./**.whl
76+
file: ./dist/*.whl
9477
tag: ${{ matrix.releasetag }}
9578
file_glob: true
9679
make_latest: false
97-
overwrite: ${{ github.run_attempt == '1' && 'true' || 'false' }}
80+
overwrite: true
81+
82+
- uses: actions/upload-artifact@v3
83+
if: steps.upload-release.outcome == 'failure'
84+
with:
85+
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
86+
path: ./dist/*.whl

.github/workflows/build-wheels-0.1.67.yml

Lines changed: 10 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -67,31 +67,20 @@ jobs:
6767
if ($env:AVXVER -eq 'AVX') {$env:CMAKE_ARGS = $env:CMAKE_ARGS + ' -DLLAMA_AVX2=off'}
6868
if ($env:AVXVER -eq 'AVX512') {$env:CMAKE_ARGS = $env:CMAKE_ARGS + ' -DLLAMA_AVX512=on'}
6969
python -m build --wheel -C--build-option=egg_info "-C--build-option=--tag-build=+cu$cudaVersion"
70-
71-
- uses: actions/upload-artifact@v3
72-
with:
73-
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
74-
path: ./dist/*.whl
75-
76-
upload_release_assets:
77-
name: Upload wheels to a GitHub release
78-
needs: build_wheels
79-
runs-on: ubuntu-latest
80-
strategy:
81-
matrix:
82-
releasetag: ["AVX","wheels","AVX512"]
83-
84-
steps:
85-
- uses: actions/download-artifact@v3
86-
with:
87-
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
8870
89-
- name: Upload ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }} wheels to a GitHub release
71+
- name: Upload files to a GitHub release
9072
id: upload-release
9173
uses: svenstaro/upload-release-action@2.6.1
74+
continue-on-error: true
9275
with:
93-
file: ./**.whl
76+
file: ./dist/*.whl
9477
tag: ${{ matrix.releasetag }}
9578
file_glob: true
9679
make_latest: false
97-
overwrite: ${{ github.run_attempt == '1' && 'true' || 'false' }}
80+
overwrite: true
81+
82+
- uses: actions/upload-artifact@v3
83+
if: steps.upload-release.outcome == 'failure'
84+
with:
85+
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
86+
path: ./dist/*.whl

.github/workflows/build-wheels-0.1.68.yml

Lines changed: 10 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -67,31 +67,20 @@ jobs:
6767
if ($env:AVXVER -eq 'AVX') {$env:CMAKE_ARGS = $env:CMAKE_ARGS + ' -DLLAMA_AVX2=off'}
6868
if ($env:AVXVER -eq 'AVX512') {$env:CMAKE_ARGS = $env:CMAKE_ARGS + ' -DLLAMA_AVX512=on'}
6969
python -m build --wheel -C--build-option=egg_info "-C--build-option=--tag-build=+cu$cudaVersion"
70-
71-
- uses: actions/upload-artifact@v3
72-
with:
73-
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
74-
path: ./dist/*.whl
75-
76-
upload_release_assets:
77-
name: Upload wheels to a GitHub release
78-
needs: build_wheels
79-
runs-on: ubuntu-latest
80-
strategy:
81-
matrix:
82-
releasetag: ["AVX","wheels","AVX512"]
83-
84-
steps:
85-
- uses: actions/download-artifact@v3
86-
with:
87-
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
8870
89-
- name: Upload ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }} wheels to a GitHub release
71+
- name: Upload files to a GitHub release
9072
id: upload-release
9173
uses: svenstaro/upload-release-action@2.6.1
74+
continue-on-error: true
9275
with:
93-
file: ./**.whl
76+
file: ./dist/*.whl
9477
tag: ${{ matrix.releasetag }}
9578
file_glob: true
9679
make_latest: false
97-
overwrite: ${{ github.run_attempt == '1' && 'true' || 'false' }}
80+
overwrite: true
81+
82+
- uses: actions/upload-artifact@v3
83+
if: steps.upload-release.outcome == 'failure'
84+
with:
85+
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
86+
path: ./dist/*.whl

.github/workflows/build-wheels-0.1.70.yml

Lines changed: 10 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -69,31 +69,20 @@ jobs:
6969
if ($env:AVXVER -eq 'AVX') {$env:CMAKE_ARGS = $env:CMAKE_ARGS + ' -DLLAMA_AVX2=off'}
7070
if ($env:AVXVER -eq 'AVX512') {$env:CMAKE_ARGS = $env:CMAKE_ARGS + ' -DLLAMA_AVX512=on'}
7171
python -m build --wheel -C--build-option=egg_info "-C--build-option=--tag-build=+cu$cudaVersion"
72-
73-
- uses: actions/upload-artifact@v3
74-
with:
75-
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
76-
path: ./dist/*.whl
77-
78-
upload_release_assets:
79-
name: Upload wheels to a GitHub release
80-
needs: build_wheels
81-
runs-on: ubuntu-latest
82-
strategy:
83-
matrix:
84-
releasetag: ["AVX","wheels","AVX512"]
85-
86-
steps:
87-
- uses: actions/download-artifact@v3
88-
with:
89-
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
9072
91-
- name: Upload ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }} wheels to a GitHub release
73+
- name: Upload files to a GitHub release
9274
id: upload-release
9375
uses: svenstaro/upload-release-action@2.6.1
76+
continue-on-error: true
9477
with:
95-
file: ./**.whl
78+
file: ./dist/*.whl
9679
tag: ${{ matrix.releasetag }}
9780
file_glob: true
9881
make_latest: false
99-
overwrite: ${{ github.run_attempt == '1' && 'true' || 'false' }}
82+
overwrite: true
83+
84+
- uses: actions/upload-artifact@v3
85+
if: steps.upload-release.outcome == 'failure'
86+
with:
87+
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
88+
path: ./dist/*.whl

.github/workflows/build-wheels-0.1.71.yml

Lines changed: 10 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -69,31 +69,20 @@ jobs:
6969
if ($env:AVXVER -eq 'AVX') {$env:CMAKE_ARGS = $env:CMAKE_ARGS + ' -DLLAMA_AVX2=off'}
7070
if ($env:AVXVER -eq 'AVX512') {$env:CMAKE_ARGS = $env:CMAKE_ARGS + ' -DLLAMA_AVX512=on'}
7171
python -m build --wheel -C--build-option=egg_info "-C--build-option=--tag-build=+cu$cudaVersion"
72-
73-
- uses: actions/upload-artifact@v3
74-
with:
75-
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
76-
path: ./dist/*.whl
77-
78-
upload_release_assets:
79-
name: Upload wheels to a GitHub release
80-
needs: build_wheels
81-
runs-on: ubuntu-latest
82-
strategy:
83-
matrix:
84-
releasetag: ["AVX","wheels","AVX512"]
85-
86-
steps:
87-
- uses: actions/download-artifact@v3
88-
with:
89-
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
9072
91-
- name: Upload ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }} wheels to a GitHub release
73+
- name: Upload files to a GitHub release
9274
id: upload-release
9375
uses: svenstaro/upload-release-action@2.6.1
76+
continue-on-error: true
9477
with:
95-
file: ./**.whl
78+
file: ./dist/*.whl
9679
tag: ${{ matrix.releasetag }}
9780
file_glob: true
9881
make_latest: false
99-
overwrite: ${{ github.run_attempt == '1' && 'true' || 'false' }}
82+
overwrite: true
83+
84+
- uses: actions/upload-artifact@v3
85+
if: steps.upload-release.outcome == 'failure'
86+
with:
87+
name: ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
88+
path: ./dist/*.whl

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# llama-cpp-python cuBLAS wheels
22
Wheels for [llama-cpp-python](https://github.com/abetlen/llama-cpp-python) compiled with cuBLAS support.
33

4-
Includes 0.1.62, 0.1.66, 0.1.67, 0.1.68, 0.1.69 and 0.1.70.
4+
Includes 0.1.62, 0.1.66, 0.1.67, 0.1.68, 0.1.69, 0.1.70 and 0.1.71.
55

66
Requirements:
77
- Windows and Linux x86_64

docs/AVX/cu116/llama-cpp-python/index.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,16 @@
6666
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.70+cu116-cp310-cp310-win_amd64.whl">llama_cpp_python-0.1.70+cu116-cp310-cp310-win_amd64.whl</a><br/>
6767
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.70+cu116-cp311-cp311-linux_x86_64.whl">llama_cpp_python-0.1.70+cu116-cp311-cp311-linux_x86_64.whl</a><br/>
6868
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.70+cu116-cp311-cp311-win_amd64.whl">llama_cpp_python-0.1.70+cu116-cp311-cp311-win_amd64.whl</a><br/>
69+
70+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu116-cp37-cp37m-linux_x86_64.whl">llama_cpp_python-0.1.71+cu116-cp37-cp37m-linux_x86_64.whl</a><br/>
71+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu116-cp37-cp37m-win_amd64.whl">llama_cpp_python-0.1.71+cu116-cp37-cp37m-win_amd64.whl</a><br/>
72+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu116-cp38-cp38-linux_x86_64.whl">llama_cpp_python-0.1.71+cu116-cp38-cp38-linux_x86_64.whl</a><br/>
73+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu116-cp38-cp38-win_amd64.whl">llama_cpp_python-0.1.71+cu116-cp38-cp38-win_amd64.whl</a><br/>
74+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu116-cp39-cp39-linux_x86_64.whl">llama_cpp_python-0.1.71+cu116-cp39-cp39-linux_x86_64.whl</a><br/>
75+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu116-cp39-cp39-win_amd64.whl">llama_cpp_python-0.1.71+cu116-cp39-cp39-win_amd64.whl</a><br/>
76+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu116-cp310-cp310-linux_x86_64.whl">llama_cpp_python-0.1.71+cu116-cp310-cp310-linux_x86_64.whl</a><br/>
77+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu116-cp310-cp310-win_amd64.whl">llama_cpp_python-0.1.71+cu116-cp310-cp310-win_amd64.whl</a><br/>
78+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu116-cp311-cp311-linux_x86_64.whl">llama_cpp_python-0.1.71+cu116-cp311-cp311-linux_x86_64.whl</a><br/>
79+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu116-cp311-cp311-win_amd64.whl">llama_cpp_python-0.1.71+cu116-cp311-cp311-win_amd64.whl</a><br/>
6980
</body>
7081
</html>

docs/AVX/cu117/llama-cpp-python/index.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,16 @@
6666
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.70+cu117-cp310-cp310-win_amd64.whl">llama_cpp_python-0.1.70+cu117-cp310-cp310-win_amd64.whl</a><br/>
6767
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.70+cu117-cp311-cp311-linux_x86_64.whl">llama_cpp_python-0.1.70+cu117-cp311-cp311-linux_x86_64.whl</a><br/>
6868
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.70+cu117-cp311-cp311-win_amd64.whl">llama_cpp_python-0.1.70+cu117-cp311-cp311-win_amd64.whl</a><br/>
69+
70+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu117-cp37-cp37m-linux_x86_64.whl">llama_cpp_python-0.1.71+cu117-cp37-cp37m-linux_x86_64.whl</a><br/>
71+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu117-cp37-cp37m-win_amd64.whl">llama_cpp_python-0.1.71+cu117-cp37-cp37m-win_amd64.whl</a><br/>
72+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu117-cp38-cp38-linux_x86_64.whl">llama_cpp_python-0.1.71+cu117-cp38-cp38-linux_x86_64.whl</a><br/>
73+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu117-cp38-cp38-win_amd64.whl">llama_cpp_python-0.1.71+cu117-cp38-cp38-win_amd64.whl</a><br/>
74+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu117-cp39-cp39-linux_x86_64.whl">llama_cpp_python-0.1.71+cu117-cp39-cp39-linux_x86_64.whl</a><br/>
75+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu117-cp39-cp39-win_amd64.whl">llama_cpp_python-0.1.71+cu117-cp39-cp39-win_amd64.whl</a><br/>
76+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu117-cp310-cp310-linux_x86_64.whl">llama_cpp_python-0.1.71+cu117-cp310-cp310-linux_x86_64.whl</a><br/>
77+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu117-cp310-cp310-win_amd64.whl">llama_cpp_python-0.1.71+cu117-cp310-cp310-win_amd64.whl</a><br/>
78+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu117-cp311-cp311-linux_x86_64.whl">llama_cpp_python-0.1.71+cu117-cp311-cp311-linux_x86_64.whl</a><br/>
79+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu117-cp311-cp311-win_amd64.whl">llama_cpp_python-0.1.71+cu117-cp311-cp311-win_amd64.whl</a><br/>
6980
</body>
7081
</html>

docs/AVX/cu118/llama-cpp-python/index.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,16 @@
6666
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.70+cu118-cp310-cp310-win_amd64.whl">llama_cpp_python-0.1.70+cu118-cp310-cp310-win_amd64.whl</a><br/>
6767
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.70+cu118-cp311-cp311-linux_x86_64.whl">llama_cpp_python-0.1.70+cu118-cp311-cp311-linux_x86_64.whl</a><br/>
6868
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.70+cu118-cp311-cp311-win_amd64.whl">llama_cpp_python-0.1.70+cu118-cp311-cp311-win_amd64.whl</a><br/>
69+
70+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu118-cp37-cp37m-linux_x86_64.whl">llama_cpp_python-0.1.71+cu118-cp37-cp37m-linux_x86_64.whl</a><br/>
71+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu118-cp37-cp37m-win_amd64.whl">llama_cpp_python-0.1.71+cu118-cp37-cp37m-win_amd64.whl</a><br/>
72+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu118-cp38-cp38-linux_x86_64.whl">llama_cpp_python-0.1.71+cu118-cp38-cp38-linux_x86_64.whl</a><br/>
73+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu118-cp38-cp38-win_amd64.whl">llama_cpp_python-0.1.71+cu118-cp38-cp38-win_amd64.whl</a><br/>
74+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu118-cp39-cp39-linux_x86_64.whl">llama_cpp_python-0.1.71+cu118-cp39-cp39-linux_x86_64.whl</a><br/>
75+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu118-cp39-cp39-win_amd64.whl">llama_cpp_python-0.1.71+cu118-cp39-cp39-win_amd64.whl</a><br/>
76+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu118-cp310-cp310-linux_x86_64.whl">llama_cpp_python-0.1.71+cu118-cp310-cp310-linux_x86_64.whl</a><br/>
77+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu118-cp310-cp310-win_amd64.whl">llama_cpp_python-0.1.71+cu118-cp310-cp310-win_amd64.whl</a><br/>
78+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu118-cp311-cp311-linux_x86_64.whl">llama_cpp_python-0.1.71+cu118-cp311-cp311-linux_x86_64.whl</a><br/>
79+
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/AVX/llama_cpp_python-0.1.71+cu118-cp311-cp311-win_amd64.whl">llama_cpp_python-0.1.71+cu118-cp311-cp311-win_amd64.whl</a><br/>
6980
</body>
7081
</html>

0 commit comments

Comments
 (0)