Skip to content

Commit 3da7e32

Browse files
committed
Revert 2e23615
1 parent 2e23615 commit 3da7e32

File tree

3 files changed

+8
-14
lines changed

3 files changed

+8
-14
lines changed

docs/index.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
<!DOCTYPE html>
22
<html>
33
<body>
4-
<a href="llama-cpp-python.html">llama-cpp-python</a>
4+
<a href="cu116">CUDA 11.6</a><br/>
5+
<a href="cu117">CUDA 11.7</a><br/>
6+
<a href="cu118">CUDA 11.8</a><br/>
7+
<a href="cu120">CUDA 12.0</a><br/>
8+
<a href="cu121">CUDA 12.1</a><br/>
59
</body>
610
</html>

docs/llama-cpp-python.html

Lines changed: 0 additions & 10 deletions
This file was deleted.

generate-html.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ $packageVersions = "0.1.62","0.1.66"
66
$pythonVersions = "3.7","3.8","3.9","3.10","3.11"
77
$supportedSystems = 'linux_x86_64','win_amd64'
88
$wheelSource = 'https://github.com/jllllll/llama-cpp-python-cuBLAS-wheels/releases/download/wheels'
9+
$indexName = 'index'
910

1011

1112
$indexContent = "<!DOCTYPE html>`n<html>`n <body>`n "
@@ -27,10 +28,9 @@ ForEach ($cudaVersion in $cudaVersions)
2728
}
2829
$cuContent += "`n "
2930
}
30-
$indexContent += "<a href=`"cu$cu.html`">CUDA $cudaVersion</a><br/>`n "
31+
$indexContent += "<a href=`"cu$cu`">CUDA $cudaVersion</a><br/>`n "
3132
$cuContent.TrimEnd() + "`n </body>`n</html>" > $(Join-Path $destinationDir "cu$cu.html")
3233
}
33-
$indexContent.TrimEnd() + "`n </body>`n</html>" > $(Join-Path $destinationDir "llama-cpp-python.html")
34-
"<!DOCTYPE html>`n<html>`n <body>`n <a href=`"llama-cpp-python.html`">llama-cpp-python</a>`n </body>`n</html>" > $(Join-Path $destinationDir "index.html")
34+
$indexContent.TrimEnd() + "`n </body>`n</html>" > $(Join-Path $destinationDir "$indexName.html")
3535

3636
pause

0 commit comments

Comments
 (0)