ollama/llm/llm.go

97 lines
2.6 KiB
Go
Raw Normal View History

2023-07-21 20:33:56 +00:00
package llm
import (
"context"
2023-07-21 20:33:56 +00:00
"fmt"
"log"
2023-07-21 20:33:56 +00:00
"os"
"runtime"
2023-07-21 20:33:56 +00:00
"github.com/pbnjay/memory"
2023-07-21 20:33:56 +00:00
"github.com/jmorganca/ollama/api"
2023-10-12 16:34:16 +00:00
"github.com/jmorganca/ollama/format"
"github.com/jmorganca/ollama/gpu"
2023-07-21 20:33:56 +00:00
)
type LLM interface {
2023-12-05 19:57:33 +00:00
Predict(context.Context, PredictOpts, func(PredictResult)) error
Embedding(context.Context, string) ([]float64, error)
Encode(context.Context, string) ([]int, error)
Decode(context.Context, []int) (string, error)
2023-07-21 20:33:56 +00:00
Close()
}
var AvailableShims = map[string]string{}
2023-11-30 18:30:23 +00:00
func New(workDir, model string, adapters, projectors []string, opts api.Options) (LLM, error) {
2023-07-21 20:33:56 +00:00
if _, err := os.Stat(model); err != nil {
return nil, err
}
f, err := os.Open(model)
if err != nil {
return nil, err
}
2023-08-14 23:08:02 +00:00
defer f.Close()
2023-07-21 20:33:56 +00:00
2023-09-07 17:55:37 +00:00
ggml, err := DecodeGGML(f)
2023-07-21 20:33:56 +00:00
if err != nil {
return nil, err
}
if runtime.GOOS == "darwin" {
2023-10-13 21:41:51 +00:00
var requiredMemory int64
var f16Multiplier int64 = 2
2023-10-12 17:36:23 +00:00
2023-10-13 21:41:51 +00:00
switch ggml.ModelType() {
case "3B", "7B":
requiredMemory = 8 * format.GigaByte
case "13B":
requiredMemory = 16 * format.GigaByte
case "30B", "34B", "40B":
requiredMemory = 32 * format.GigaByte
2024-01-04 00:46:16 +00:00
case "47B":
requiredMemory = 48 * format.GigaByte
2023-10-13 21:41:51 +00:00
case "65B", "70B":
requiredMemory = 64 * format.GigaByte
case "180B":
requiredMemory = 128 * format.GigaByte
f16Multiplier = 4
}
2023-10-12 17:36:23 +00:00
2023-10-13 21:41:51 +00:00
systemMemory := int64(memory.TotalMemory())
2023-10-12 17:36:23 +00:00
2023-10-13 21:41:51 +00:00
if ggml.FileType() == "F16" && requiredMemory*f16Multiplier > systemMemory {
2024-01-04 00:47:18 +00:00
return nil, fmt.Errorf("F16 model requires at least %s of memory", format.HumanBytes(requiredMemory))
2023-10-13 21:41:51 +00:00
} else if requiredMemory > systemMemory {
2024-01-04 00:47:18 +00:00
return nil, fmt.Errorf("model requires at least %s of memory", format.HumanBytes(requiredMemory))
2023-10-13 21:41:51 +00:00
}
}
opts.NumGQA = 0
opts.RopeFrequencyBase = 0.0
opts.RopeFrequencyScale = 0.0
gpuInfo := gpu.GetGPUInfo()
return newLlmServer(gpuInfo.Library, model, adapters, projectors, ggml.NumLayers(), opts)
}
// Give any native cgo implementations an opportunity to initialize
func Init(workdir string) error {
return nativeInit(workdir)
2023-07-21 20:33:56 +00:00
}
func newLlmServer(library, model string, adapters, projectors []string, numLayers int64, opts api.Options) (extServer, error) {
if _, libPresent := AvailableShims[library]; libPresent && library != "default" {
srv, err := newDynamicShimExtServer(AvailableShims[library], model, adapters, projectors, numLayers, opts)
if err == nil {
return srv, nil
}
log.Printf("Failed to load dynamic library %s - falling back to CPU mode %s", library, err)
// TODO - update some state to indicate we were unable to load the GPU library for future "info" ux
}
return newDefaultExtServer(model, adapters, projectors, numLayers, opts)
}