Skip to content

Commit 47e1b1b

Browse files
committedMay 30, 2024
Add verbose option
1 parent 7098b43 commit 47e1b1b

File tree

2 files changed

+17
-12
lines changed

2 files changed

+17
-12
lines changed
 

‎examples/server.ps1

+16-11
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ Specifies the number of layers offloaded into the GPU.
2222
.PARAMETER modelContextLength
2323
Specifies the models context length it was trained on.
2424
25+
.PARAMETER verbose
26+
Increases the verbosity of the llama.cpp server.
27+
2528
.EXAMPLE
2629
.\server.ps1 -model "..\vendor\llama.cpp\models\openchat-3.5-0106.Q5_K_M.gguf"
2730
@@ -33,6 +36,9 @@ Specifies the models context length it was trained on.
3336
3437
.EXAMPLE
3538
.\server.ps1 -model "C:\models\openchat-3.5-0106.Q5_K_M.gguf" -port 8081
39+
40+
.EXAMPLE
41+
.\server.ps1 -model "..\vendor\llama.cpp\models\openchat-3.5-0106.Q5_K_M.gguf" -verbose
3642
#>
3743

3844
Param (
@@ -75,6 +81,9 @@ Param (
7581
$modelContextLength=-1
7682
)
7783

84+
# The -verbose option is a default PowerShell parameter.
85+
$verbose = $PSCmdlet.MyInvocation.BoundParameters["Verbose"].IsPresent -eq $true
86+
7887
# We are resolving the absolute path to the llama.cpp project directory.
7988
$llamaCppPath = Resolve-Path -Path "${PSScriptRoot}\..\vendor\llama.cpp"
8089

@@ -251,16 +260,7 @@ Start-Job -Name 'BrowserJob' -ScriptBlock {
251260

252261
Write-Host "Starting llama.cpp server with custom options..." -ForegroundColor "Yellow"
253262

254-
[PSCustomObject]@{
255-
"Context Size" = $contextSize
256-
"Group Attention Factor" = $groupAttentionFactor
257-
"Group Attention Width" = $groupAttentionWidth
258-
"Physical CPU Cores" = $numberOfPhysicalCores
259-
"GPU Layers" = "${numberOfGPULayers}/${maximumNumberOfLayers}"
260-
"Parallel Slots" = "${parallel}"
261-
} | Format-List | Out-String | ForEach-Object { $_.Trim("`r","`n") }
262-
263-
Invoke-Expression "${llamaCppPath}\build\bin\Release\server ``
263+
$command = "${llamaCppPath}\build\bin\Release\server ``
264264
--n-predict 1024 ``
265265
--log-disable ``
266266
--port '${port}' ``
@@ -272,4 +272,9 @@ Invoke-Expression "${llamaCppPath}\build\bin\Release\server ``
272272
--parallel '${parallel}' ``
273273
--grp-attn-n '${groupAttentionFactor}' ``
274274
--grp-attn-w '${groupAttentionWidth}' ``
275-
$(if ($enableFlashAttention) {" --flash-attn"})"
275+
$(if ($enableFlashAttention) {"--flash-attn"}) ``
276+
$(if ($verbose) {"--verbose"})"
277+
278+
Write-Host $command -ForegroundColor "Green"
279+
280+
Invoke-Expression $command

‎vendor/llama.cpp

0 commit comments

Comments
 (0)
Please sign in to comment.