"examples/model_compress/pruning/amc/amc_search.py" did not exist on "e12f6113a947637e28502026ff2bb7cc99997df7"
ext_server_windows.go 466 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
package llm

import (
	"github.com/jmorganca/ollama/api"
)

func newDefaultExtServer(model string, adapters, projectors []string, numLayers int64, opts api.Options) (extServer, error) {
	// On windows we always load the llama.cpp libraries dynamically to avoid startup DLL dependencies
	// This ensures we can update the PATH at runtime to get everything loaded

11
	return newDynamicShimExtServer(AvailableShims["cpu"], model, adapters, projectors, numLayers, opts)
12
}