"docs/vscode:/vscode.git/clone" did not exist on "8fa26ae4f89c165c452b1f55b82045c1b8984363"
Unverified Commit 69ce44b3 authored by frob's avatar frob Committed by GitHub
Browse files

envconfig: Remove no longer supported max vram var (#10623)


Co-authored-by: default avatarRichard Lyons <frob@cloudstaff.com>
parent 5969674c
...@@ -209,8 +209,6 @@ var ( ...@@ -209,8 +209,6 @@ var (
MaxRunners = Uint("OLLAMA_MAX_LOADED_MODELS", 0) MaxRunners = Uint("OLLAMA_MAX_LOADED_MODELS", 0)
// MaxQueue sets the maximum number of queued requests. MaxQueue can be configured via the OLLAMA_MAX_QUEUE environment variable. // MaxQueue sets the maximum number of queued requests. MaxQueue can be configured via the OLLAMA_MAX_QUEUE environment variable.
MaxQueue = Uint("OLLAMA_MAX_QUEUE", 512) MaxQueue = Uint("OLLAMA_MAX_QUEUE", 512)
// MaxVRAM sets a maximum VRAM override in bytes. MaxVRAM can be configured via the OLLAMA_MAX_VRAM environment variable.
MaxVRAM = Uint("OLLAMA_MAX_VRAM", 0)
) )
func Uint64(key string, defaultValue uint64) func() uint64 { func Uint64(key string, defaultValue uint64) func() uint64 {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment