Skip to content

Commit

Permalink
Upload Files
Browse files Browse the repository at this point in the history
  • Loading branch information
jllllll committed Jun 26, 2023
1 parent 28b67ca commit d0a2be3
Show file tree
Hide file tree
Showing 9 changed files with 337 additions and 0 deletions.
76 changes: 76 additions & 0 deletions .github/workflows/build-wheels-0.1.62.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
name: Build Wheels 0.1.62 AVX2

on: workflow_dispatch

jobs:
build_wheels:
name: Build wheels for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-latest]
pyver: ["3.7", "3.8", "3.9", "3.10", "3.11"]
cuda: ["11.6.2", "11.7.1", "11.8.0", "12.0.1", "12.1.0"]
defaults:
run:
shell: pwsh
env:
CUDAVER: ${{ matrix.cuda }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
repository: 'abetlen/llama-cpp-python'
ref: 'v0.1.62'
path: 'llama-cpp-python'
submodules: 'recursive'

- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.pyver }}

- name: Setup Mamba
uses: conda-incubator/setup-miniconda@v2.2.0
with:
activate-environment: "build"
python-version: ${{ matrix.pyver }}
miniforge-variant: Mambaforge
miniforge-version: latest
use-mamba: true
add-pip-as-python-dependency: true
auto-activate-base: false

- name: Install CUDA Toolkit Linux
if: runner.os == 'Linux'
uses: Jimver/cuda-toolkit@v0.2.10
with:
cuda: ${{ matrix.cuda }}
method: 'network'

- name: Install Dependencies
run: |
$cudaVersion = $env:CUDAVER
$cudaChannels = ''
$cudaNum = [int]$cudaVersion.substring($cudaVersion.LastIndexOf('.')+1)
while ($cudaNum -ge 0) { $cudaChannels += '-c nvidia/label/cuda-' + $cudaVersion.Remove($cudaVersion.LastIndexOf('.')+1) + $cudaNum + ' '; $cudaNum-- }
if ($IsWindows) {mamba install -y 'cuda' $cudaChannels.TrimEnd().Split()}
python -m pip install build wheel
- name: Build Wheel
run: |
$cudaVersion = $env:CUDAVER.Remove($env:CUDAVER.LastIndexOf('.')).Replace('.','')
if ($IsWindows) {$env:CUDA_PATH = $env:CONDA_PREFIX; $env:CUDA_HOME = $env:CONDA_PREFIX}
$env:VERBOSE = '1'
$env:FORCE_CMAKE = '1'
$env:CMAKE_ARGS = '-DLLAMA_CUBLAS=on'
$env:CUDAFLAGS = '-arch=all'
python -m build --wheel -C--build-option=egg_info "-C--build-option=--tag-build=+cu$cudaVersion"
- name: Upload files to a GitHub release
uses: svenstaro/upload-release-action@2.6.1
with:
file: ./dist/*.whl
tag: wheels
file_glob: true
overwrite: true
75 changes: 75 additions & 0 deletions .github/workflows/build-wheels-0.1.66.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
name: Build Wheels 0.1.66 AVX2

on: workflow_dispatch

jobs:
build_wheels:
name: Build wheels for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-latest]
pyver: ["3.7", "3.8", "3.9", "3.10", "3.11"]
cuda: ["11.6.2", "11.7.1", "11.8.0", "12.0.1", "12.1.0"]
defaults:
run:
shell: pwsh
env:
CUDAVER: ${{ matrix.cuda }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
repository: 'abetlen/llama-cpp-python'
ref: 'v0.1.66'
path: 'llama-cpp-python'
submodules: 'recursive'

- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.pyver }}

- name: Setup Mamba
uses: conda-incubator/setup-miniconda@v2.2.0
with:
activate-environment: "build"
python-version: ${{ matrix.pyver }}
miniforge-variant: Mambaforge
miniforge-version: latest
use-mamba: true
add-pip-as-python-dependency: true
auto-activate-base: false

- name: Install CUDA Toolkit Linux
if: runner.os == 'Linux'
uses: Jimver/cuda-toolkit@v0.2.10
with:
cuda: ${{ matrix.cuda }}
method: 'network'

- name: Install Dependencies
run: |
$cudaVersion = $env:CUDAVER
$cudaChannels = ''
$cudaNum = [int]$cudaVersion.substring($cudaVersion.LastIndexOf('.')+1)
while ($cudaNum -ge 0) { $cudaChannels += '-c nvidia/label/cuda-' + $cudaVersion.Remove($cudaVersion.LastIndexOf('.')+1) + $cudaNum + ' '; $cudaNum-- }
if ($IsWindows) {mamba install -y 'cuda' $cudaChannels.TrimEnd().Split()}
python -m pip install build wheel
- name: Build Wheel
run: |
$cudaVersion = $env:CUDAVER.Remove($env:CUDAVER.LastIndexOf('.')).Replace('.','')
if ($IsWindows) {$env:CUDA_PATH = $env:CONDA_PREFIX; $env:CUDA_HOME = $env:CONDA_PREFIX}
$env:VERBOSE = '1'
$env:FORCE_CMAKE = '1'
$env:CMAKE_ARGS = '-DLLAMA_CUBLAS=on -DCMAKE_CUDA_ARCHITECTURES=all'
python -m build --wheel -C--build-option=egg_info "-C--build-option=--tag-build=+cu$cudaVersion"
- name: Upload files to a GitHub release
uses: svenstaro/upload-release-action@2.6.1
with:
file: ./dist/*.whl
tag: wheels
file_glob: true
overwrite: true
26 changes: 26 additions & 0 deletions docs/cu116.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<body>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu116-cp37-cp37-linux_x86_64.whl">llama_cpp_python-0.1.62+cu116-cp37-cp37-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu116-cp37-cp37-win_amd64.whl">llama_cpp_python-0.1.62+cu116-cp37-cp37-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu116-cp38-cp38-linux_x86_64.whl">llama_cpp_python-0.1.62+cu116-cp38-cp38-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu116-cp38-cp38-win_amd64.whl">llama_cpp_python-0.1.62+cu116-cp38-cp38-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu116-cp39-cp39-linux_x86_64.whl">llama_cpp_python-0.1.62+cu116-cp39-cp39-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu116-cp39-cp39-win_amd64.whl">llama_cpp_python-0.1.62+cu116-cp39-cp39-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu116-cp310-cp310-linux_x86_64.whl">llama_cpp_python-0.1.62+cu116-cp310-cp310-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu116-cp310-cp310-win_amd64.whl">llama_cpp_python-0.1.62+cu116-cp310-cp310-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu116-cp311-cp311-linux_x86_64.whl">llama_cpp_python-0.1.62+cu116-cp311-cp311-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu116-cp311-cp311-win_amd64.whl">llama_cpp_python-0.1.62+cu116-cp311-cp311-win_amd64.whl</a><br/>

<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu116-cp37-cp37-linux_x86_64.whl">llama_cpp_python-0.1.66+cu116-cp37-cp37-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu116-cp37-cp37-win_amd64.whl">llama_cpp_python-0.1.66+cu116-cp37-cp37-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu116-cp38-cp38-linux_x86_64.whl">llama_cpp_python-0.1.66+cu116-cp38-cp38-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu116-cp38-cp38-win_amd64.whl">llama_cpp_python-0.1.66+cu116-cp38-cp38-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu116-cp39-cp39-linux_x86_64.whl">llama_cpp_python-0.1.66+cu116-cp39-cp39-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu116-cp39-cp39-win_amd64.whl">llama_cpp_python-0.1.66+cu116-cp39-cp39-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu116-cp310-cp310-linux_x86_64.whl">llama_cpp_python-0.1.66+cu116-cp310-cp310-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu116-cp310-cp310-win_amd64.whl">llama_cpp_python-0.1.66+cu116-cp310-cp310-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu116-cp311-cp311-linux_x86_64.whl">llama_cpp_python-0.1.66+cu116-cp311-cp311-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu116-cp311-cp311-win_amd64.whl">llama_cpp_python-0.1.66+cu116-cp311-cp311-win_amd64.whl</a><br/>
</body>
</html>
27 changes: 27 additions & 0 deletions docs/cu117.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<body>
<a href="cu116">CUDA 11.6</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu117-cp37-cp37-linux_x86_64.whl">llama_cpp_python-0.1.62+cu117-cp37-cp37-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu117-cp37-cp37-win_amd64.whl">llama_cpp_python-0.1.62+cu117-cp37-cp37-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu117-cp38-cp38-linux_x86_64.whl">llama_cpp_python-0.1.62+cu117-cp38-cp38-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu117-cp38-cp38-win_amd64.whl">llama_cpp_python-0.1.62+cu117-cp38-cp38-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu117-cp39-cp39-linux_x86_64.whl">llama_cpp_python-0.1.62+cu117-cp39-cp39-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu117-cp39-cp39-win_amd64.whl">llama_cpp_python-0.1.62+cu117-cp39-cp39-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu117-cp310-cp310-linux_x86_64.whl">llama_cpp_python-0.1.62+cu117-cp310-cp310-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu117-cp310-cp310-win_amd64.whl">llama_cpp_python-0.1.62+cu117-cp310-cp310-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu117-cp311-cp311-linux_x86_64.whl">llama_cpp_python-0.1.62+cu117-cp311-cp311-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu117-cp311-cp311-win_amd64.whl">llama_cpp_python-0.1.62+cu117-cp311-cp311-win_amd64.whl</a><br/>

<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu117-cp37-cp37-linux_x86_64.whl">llama_cpp_python-0.1.66+cu117-cp37-cp37-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu117-cp37-cp37-win_amd64.whl">llama_cpp_python-0.1.66+cu117-cp37-cp37-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu117-cp38-cp38-linux_x86_64.whl">llama_cpp_python-0.1.66+cu117-cp38-cp38-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu117-cp38-cp38-win_amd64.whl">llama_cpp_python-0.1.66+cu117-cp38-cp38-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu117-cp39-cp39-linux_x86_64.whl">llama_cpp_python-0.1.66+cu117-cp39-cp39-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu117-cp39-cp39-win_amd64.whl">llama_cpp_python-0.1.66+cu117-cp39-cp39-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu117-cp310-cp310-linux_x86_64.whl">llama_cpp_python-0.1.66+cu117-cp310-cp310-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu117-cp310-cp310-win_amd64.whl">llama_cpp_python-0.1.66+cu117-cp310-cp310-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu117-cp311-cp311-linux_x86_64.whl">llama_cpp_python-0.1.66+cu117-cp311-cp311-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu117-cp311-cp311-win_amd64.whl">llama_cpp_python-0.1.66+cu117-cp311-cp311-win_amd64.whl</a><br/>
</body>
</html>
28 changes: 28 additions & 0 deletions docs/cu118.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<body>
<a href="cu116">CUDA 11.6</a><br/>
<a href="cu117">CUDA 11.7</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu118-cp37-cp37-linux_x86_64.whl">llama_cpp_python-0.1.62+cu118-cp37-cp37-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu118-cp37-cp37-win_amd64.whl">llama_cpp_python-0.1.62+cu118-cp37-cp37-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu118-cp38-cp38-linux_x86_64.whl">llama_cpp_python-0.1.62+cu118-cp38-cp38-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu118-cp38-cp38-win_amd64.whl">llama_cpp_python-0.1.62+cu118-cp38-cp38-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu118-cp39-cp39-linux_x86_64.whl">llama_cpp_python-0.1.62+cu118-cp39-cp39-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu118-cp39-cp39-win_amd64.whl">llama_cpp_python-0.1.62+cu118-cp39-cp39-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu118-cp310-cp310-linux_x86_64.whl">llama_cpp_python-0.1.62+cu118-cp310-cp310-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu118-cp310-cp310-win_amd64.whl">llama_cpp_python-0.1.62+cu118-cp310-cp310-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu118-cp311-cp311-linux_x86_64.whl">llama_cpp_python-0.1.62+cu118-cp311-cp311-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.62+cu118-cp311-cp311-win_amd64.whl">llama_cpp_python-0.1.62+cu118-cp311-cp311-win_amd64.whl</a><br/>

<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu118-cp37-cp37-linux_x86_64.whl">llama_cpp_python-0.1.66+cu118-cp37-cp37-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu118-cp37-cp37-win_amd64.whl">llama_cpp_python-0.1.66+cu118-cp37-cp37-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu118-cp38-cp38-linux_x86_64.whl">llama_cpp_python-0.1.66+cu118-cp38-cp38-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu118-cp38-cp38-win_amd64.whl">llama_cpp_python-0.1.66+cu118-cp38-cp38-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu118-cp39-cp39-linux_x86_64.whl">llama_cpp_python-0.1.66+cu118-cp39-cp39-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu118-cp39-cp39-win_amd64.whl">llama_cpp_python-0.1.66+cu118-cp39-cp39-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu118-cp310-cp310-linux_x86_64.whl">llama_cpp_python-0.1.66+cu118-cp310-cp310-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu118-cp310-cp310-win_amd64.whl">llama_cpp_python-0.1.66+cu118-cp310-cp310-win_amd64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu118-cp311-cp311-linux_x86_64.whl">llama_cpp_python-0.1.66+cu118-cp311-cp311-linux_x86_64.whl</a><br/>
<a href="https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels/llama_cpp_python-0.1.66+cu118-cp311-cp311-win_amd64.whl">llama_cpp_python-0.1.66+cu118-cp311-cp311-win_amd64.whl</a><br/>
</body>
</html>

0 comments on commit d0a2be3

Please sign in to comment.