mirror of
https://github.com/ollama/ollama.git
synced 2026-06-05 21:05:00 +08:00
* broad lint fixes to sidestep CI scope glitch * runner: Remove CGO engines, use llama-server exclusively for GGML models Remove the vendored GGML and llama.cpp backend, CGO runner, Go model implementations, and sample. llama-server (built from upstream llama.cpp via FetchContent) is now the sole inference engine for GGUF-based models. (Safetensor based models continue to run on the new MLX engine.) This allows us to more rapidly pick up new capabilities and fixes from llama.cpp as they come out. On windows this now requires recent AMD driver versions to support ROCm v7 as llama.cpp currently does not support building against v6. * llama/compat: load Ollama-format GGUFs in llama-server Squashed from upstream/jmorganca/llama-compat on 2026-04-29. Source tip:0c33775d37. Original source commits: -25223160dllama/compat: add in-memory shim so llama-server can load Ollama-format GGUFs -7449b539allm,server: route Ollama-format gemma3 blobs through llama/compat -436f2e2b1llama/compat: make patch-apply idempotent -8c2c9d4c8llama/compat: extend gemma3 handler to cover 1B and 270M blobs -021389f7bllama/compat: shrink clip.cpp injection from 18 lines to 1 -61b367ec2llama/compat: shrink patch to pure call-site hooks (34 -> 20 lines) -36049361cllama/compat: simplify shim (gemma3-tested) -8fa664865llama/compat: add qwen35moe text handler -db0c74530llama/compat: add qwen35moe vision (clip) support -2a388da77llama/compat: split shared infra into a util TU -9a69a17dcllama/compat: document non-public API dependencies -d0f38a915llama/compat: add gpt-oss and lfm2 handlers -086071822llama/compat: add mistral3 text handler (vision TODO) -63bde9ff7llama/compat: add mistral3 vision (clip) support -3a57b89d5llama/compat: apply LLaMA RoPE permute to mistral3 vision Q/K -99cb87439llama/compat: add qwen35, gemma4, deepseek-ocr handlers -2c7850dballama/compat: add nemotron_h_moe handler (latent FFN + MTP skip) -9e3b54225llama/compat: add llama4 text + clip handlers -034fee349llama/compat: add gemma4 clip handler (gemma4v projector) -9945c5a93server: remove dhiltgen/* compat redirect table -5d4539101llama/compat: rewrite gemma4 tokenizer model to BPE -7e0765327llama/compat: add glm-ocr text handler + text-loader load-op hook -f1bd1a25allama/compat: add glm-ocr clip handler (glm4v projector) -4b5cf3420llama/compat: collapse text-loader hook back to one new patch line -eb4ecf4fcllama/compat: extend gemma4 clip handler to gemma4a (audio) -a23a5e76fllama/compat: fix gemma4a per-block norm tensor mapping -cd2dcaff4llama/compat: add embeddinggemma handler -1ce8a6b26llama/compat: add qwen3-vl + qwen2.5-vl handlers -fd98ffa1ellama/compat: add gemma3n + glm4moelite handlers -cc7bdf0bcllama/compat: handle null buft in maybe_load_tensor -0c33775d3llama/compat: disable mmap when load_op transforms text-side tensors * refine implementation * ci: fix windows MLX build * ci: fix windows llama-server build * ci: fix windows rocm build * ci: windows mlx tuning Shorten long-tail on build, and get OllamaSetup.exe back under 2g limit * ci: fix windows dependencies * win: fix dependency gathering * disable openmp * win: arm64 cross-compile build also DRY out CI steps * scheduler improvements * ci: improvements from #15982 * win: favor ninja for faster developer builds * win: fix build * win: fix arm64 cross-compile * win: avoid spaces in compiler path * misc discovery fixes, and bos handling * lint fixes * win: fix arm cross-compile build/CI bugs * llama.cpp update * win: handle multiple CRT dirs * vulkan: add windows iGPU detection * fix creation bugs for patched models, other refactoring work * tune batch size for better performance * ci and lint fixes * fix repeat_last_n bug * build: revamp build for better developer UX * amd, sampler, qwen3next fixes * version bump * fix mlx build * revamp GPU discovery Scanning the output of llama-server is turning out to be too error prone across llama.cpp updates, so this switches to a thin dynamic library load against the bundled GGML libraries so more details can be gathered from the API. * version bump * missing file * ci: fix cache miss on rocm build * refine vulkan dep handling * fix ps reporting bug on full GPU load * improve cmake wiring for customized local builds * version bump * docker build arg cleanup * improve windows exit error logs * fix community gemma4 support and ci flakes * fix mlx unit test * tighten up ps logic to avoid double counting fit log lines * version bump * fix ps view for full gpu layer offload * add MTP wiring for llama-server and create with GGUFs * pick best template by capabilities * version bump * ci: harden apt repos * remove unused cpu core discovery * adjust batch default logic to reduce OOMs * support larger tool calls * fix audio support, template show * qwen35 mtp patch support * flesh out dtypes * rocm deps * version bump * lint fix * block broken gfx1150 on windows * fix qwen3.5 moe mtp tensors in patch * mmproj oom fallback and vulkan on by default * qwen MTP compat fix * version bump * ci: fix WoA cross-compile * ci: workaround ui tool in cross-compile * version bump * win: enable OpenMP for CPU builds * build: improve developer UX * ci: windows path workaround for CPU build * win: fix WoA dependencies * win: fix large offset reads for mmproj patched loads * version bump * fix vulkan dup detection * add OLLAMA_IGPU_ENABLE and largely disable iGPUs by default * opt-in MTP, win large offset, integraton fixes * fix unit test scheduler interaction hang * fix multi-gpu filtering * version bump * review comments * fix thinking level * fix linux rocm ordering and granite 3.3 template * version bump * ci fix - non-shallow MLX checkout * bypass linux sysfs unit test on windows --------- Co-authored-by: jmorganca <jmorganca@gmail.com>
354 lines
9.1 KiB
Go
354 lines
9.1 KiB
Go
package model
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
_ "image/jpeg"
|
|
_ "image/png"
|
|
"log/slog"
|
|
"os"
|
|
"reflect"
|
|
"strconv"
|
|
"strings"
|
|
|
|
_ "golang.org/x/image/bmp"
|
|
_ "golang.org/x/image/tiff"
|
|
_ "golang.org/x/image/webp"
|
|
|
|
"github.com/ollama/ollama/fs"
|
|
fsggml "github.com/ollama/ollama/fs/ggml"
|
|
"github.com/ollama/ollama/kvcache"
|
|
"github.com/ollama/ollama/logutil"
|
|
"github.com/ollama/ollama/ml"
|
|
"github.com/ollama/ollama/ml/nn/pooling"
|
|
"github.com/ollama/ollama/model/input"
|
|
"github.com/ollama/ollama/tokenizer"
|
|
)
|
|
|
|
var (
|
|
ErrNoVisionModel = errors.New("this model is missing data required for image input")
|
|
ErrUnsupportedModel = errors.New("model not supported")
|
|
ErrUnsupportedTokenizer = errors.New("tokenizer not supported")
|
|
)
|
|
|
|
// Model implements a specific model architecture, defining the forward pass and any model-specific configuration
|
|
type Model interface {
|
|
Forward(ml.Context, input.Batch) (ml.Tensor, error)
|
|
|
|
Backend() ml.Backend
|
|
Config() config
|
|
}
|
|
|
|
// Validator is an optional interface that models can implement to perform
|
|
// validation after tensors have been loaded. If validation fails, model
|
|
// loading will fail with the returned error.
|
|
type Validator interface {
|
|
Validate() error
|
|
}
|
|
|
|
// PostLoader is an optional interface that models can implement to run
|
|
// initialization steps after backend weights have been loaded.
|
|
type PostLoader interface {
|
|
PostLoad() error
|
|
}
|
|
|
|
// MultimodalProcessor must be implemented by multimodal models.
|
|
type MultimodalProcessor interface {
|
|
// EncodeMultimodal processes a single input (such as an image) and
|
|
// generates an output (typically an embedding) that can be used by the model.
|
|
//
|
|
// The return value is one or more tensors, each with optional model-specific
|
|
// opaque metadata. Typically, the tensors might be views into an embedding
|
|
// with each view representing a chunk of data that can be processed independently
|
|
// in different batches.
|
|
//
|
|
// The result may be cached by the runner.
|
|
EncodeMultimodal(ml.Context, []byte) ([]input.Multimodal, error)
|
|
|
|
// PostTokenize is called after tokenization to allow the model to edit the
|
|
// input stream to correctly arrange multimodal elements.
|
|
//
|
|
// The input is a slice of tokens with the results of EncodeMultimodal interleaved
|
|
// in the order that the user provided them. Each element of the slice will be
|
|
// either a single token or single multimodal object.
|
|
//
|
|
// The model must ensure that inputs are stored according to how they will be
|
|
// processed and stored in the cache. For example, Llava-style models should insert
|
|
// placeholder tokens equal to the feature size of the corresponding image with
|
|
// the image itself attached to and split across these tokens. When Forward is called
|
|
// a partial subset of these tokens may be submitted according to the batch size.
|
|
//
|
|
// This function is also responsible for updating MultimodalHash for any Multimodal
|
|
// that is modified to ensure that there is a unique hash value that accurately
|
|
// represents the contents.
|
|
PostTokenize([]*input.Input) ([]*input.Input, error)
|
|
}
|
|
|
|
// Base implements the common fields and methods for all models
|
|
type Base struct {
|
|
b ml.Backend
|
|
config
|
|
}
|
|
|
|
type config struct {
|
|
Cache kvcache.Cache
|
|
}
|
|
|
|
// Backend returns the underlying backend that will run the model
|
|
func (m *Base) Backend() ml.Backend {
|
|
return m.b
|
|
}
|
|
|
|
func (m *Base) Config() config {
|
|
return m.config
|
|
}
|
|
|
|
var models = make(map[string]func(fs.Config) (Model, error))
|
|
|
|
// Register registers a model constructor for the given architecture
|
|
func Register(name string, f func(fs.Config) (Model, error)) {
|
|
if _, ok := models[name]; ok {
|
|
panic("model: model already registered")
|
|
}
|
|
|
|
models[name] = f
|
|
}
|
|
|
|
// New initializes a new model instance with the provided configuration based on the metadata in the model file
|
|
func New(modelPath string, params ml.BackendParams) (Model, error) {
|
|
b, err := ml.NewBackend(modelPath, params)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
m, err := modelForArch(b.Config())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
base := Base{b: b, config: m.Config()}
|
|
v := reflect.ValueOf(m)
|
|
v.Elem().Set(populateFields(base, v.Elem()))
|
|
|
|
if validator, ok := m.(Validator); ok {
|
|
if err := validator.Validate(); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return m, nil
|
|
}
|
|
|
|
func NewTextProcessor(s string) (tokenizer.Tokenizer, error) {
|
|
r, err := os.Open(s)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer r.Close()
|
|
|
|
meta, err := fsggml.Decode(r, -1)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
m, err := modelForArch(meta.KV())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
tp, ok := m.(tokenizer.Tokenizer)
|
|
if !ok {
|
|
return nil, ErrUnsupportedTokenizer
|
|
}
|
|
return tp, nil
|
|
}
|
|
|
|
func modelForArch(c fs.Config) (Model, error) {
|
|
arch := c.Architecture()
|
|
if pooling.Type(c.Uint("pooling_type")) != pooling.TypeNone {
|
|
arch = arch + "_embed"
|
|
}
|
|
|
|
f, ok := models[arch]
|
|
if !ok {
|
|
return nil, ErrUnsupportedModel
|
|
}
|
|
|
|
return f(c)
|
|
}
|
|
|
|
func populateFields(base Base, v reflect.Value, tags ...Tag) reflect.Value {
|
|
t := v.Type()
|
|
|
|
if t.Kind() == reflect.Struct {
|
|
allNil := true
|
|
for i := range t.NumField() {
|
|
tt := t.Field(i).Type
|
|
vv := v.Field(i)
|
|
if !vv.CanSet() {
|
|
continue
|
|
}
|
|
|
|
// make a copy
|
|
tagsCopy := tags
|
|
if tag := t.Field(i).Tag.Get("gguf"); tag != "" {
|
|
tagsCopy = append(tagsCopy, parseTag(tag))
|
|
}
|
|
|
|
if tt == reflect.TypeOf((*Base)(nil)).Elem() {
|
|
vv.Set(reflect.ValueOf(base))
|
|
} else if tt == reflect.TypeOf((*ml.Tensor)(nil)).Elem() {
|
|
var fn func([]Tag, string, string) [][]string
|
|
fn = func(tags []Tag, prefix, suffix string) (fullNames [][]string) {
|
|
if len(tags) > 0 {
|
|
var names []string
|
|
if tags[0].name != "" {
|
|
for _, n := range append([]string{tags[0].name}, tags[0].alternatives...) {
|
|
names = append(names, prefix+n+suffix)
|
|
}
|
|
}
|
|
childNames := fn(tags[1:], tags[0].prefix, tags[0].suffix)
|
|
if len(names) == 0 {
|
|
// current tag has no name, use child names only
|
|
fullNames = append(fullNames, childNames...)
|
|
} else if len(childNames) == 0 {
|
|
// current tag has names but no children, create branches for each name
|
|
for _, name := range names {
|
|
fullNames = append(fullNames, []string{name})
|
|
}
|
|
} else {
|
|
// merge each name with each child
|
|
for _, name := range names {
|
|
for _, childName := range childNames {
|
|
fullNames = append(fullNames, append([]string{name}, childName...))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return fullNames
|
|
}
|
|
|
|
names := fn(tagsCopy, "", "")
|
|
for _, name := range names {
|
|
if tensor := base.Backend().Get(strings.Join(name, ".")); tensor != nil {
|
|
logutil.Trace("found tensor", "", tensor)
|
|
vv.Set(reflect.ValueOf(tensor))
|
|
break
|
|
}
|
|
}
|
|
} else if tt.Kind() == reflect.Pointer || tt.Kind() == reflect.Interface {
|
|
setPointer(base, vv, tagsCopy)
|
|
} else if tt.Kind() == reflect.Slice || tt.Kind() == reflect.Array {
|
|
for i := range vv.Len() {
|
|
vvv := vv.Index(i)
|
|
if vvv.Kind() == reflect.Pointer || vvv.Kind() == reflect.Interface {
|
|
setPointer(base, vvv, append(tagsCopy, Tag{name: strconv.Itoa(i)}))
|
|
} else {
|
|
vvv.Set(populateFields(base, vvv, append(tagsCopy, Tag{name: strconv.Itoa(i)})...))
|
|
}
|
|
}
|
|
}
|
|
|
|
if !canNil(tt) || !vv.IsNil() {
|
|
allNil = false
|
|
}
|
|
}
|
|
|
|
if allNil {
|
|
return reflect.Zero(t)
|
|
}
|
|
}
|
|
|
|
return v
|
|
}
|
|
|
|
func setPointer(base Base, v reflect.Value, tags []Tag) {
|
|
vv := v
|
|
if v.Kind() == reflect.Interface {
|
|
if v.IsNil() {
|
|
return
|
|
}
|
|
|
|
vv = vv.Elem()
|
|
}
|
|
|
|
vv = reflect.Indirect(vv)
|
|
if v.IsNil() {
|
|
vv = reflect.New(v.Type().Elem()).Elem()
|
|
}
|
|
|
|
if f := populateFields(base, vv, tags...); f.CanAddr() {
|
|
v.Set(f.Addr())
|
|
}
|
|
}
|
|
|
|
type Tag struct {
|
|
name,
|
|
// prefix and suffix are applied to child tags
|
|
prefix,
|
|
suffix string
|
|
alternatives []string
|
|
}
|
|
|
|
func parseTag(s string) (tag Tag) {
|
|
parts := strings.Split(s, ",")
|
|
if len(parts) > 0 {
|
|
tag.name = parts[0]
|
|
|
|
for _, part := range parts[1:] {
|
|
if value, ok := strings.CutPrefix(part, "alt:"); ok && tag.name == "" {
|
|
// elevate alternative to primary if no primary given
|
|
tag.name = value
|
|
slog.Warn("gguf tag has alt: but no primary name", "tag", s)
|
|
} else if ok {
|
|
tag.alternatives = append(tag.alternatives, value)
|
|
}
|
|
if value, ok := strings.CutPrefix(part, "pre:"); ok {
|
|
tag.prefix = value
|
|
}
|
|
if value, ok := strings.CutPrefix(part, "suf:"); ok {
|
|
tag.suffix = value
|
|
}
|
|
}
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
func canNil(t reflect.Type) bool {
|
|
return t.Kind() == reflect.Chan ||
|
|
t.Kind() == reflect.Func ||
|
|
t.Kind() == reflect.Interface ||
|
|
t.Kind() == reflect.Map ||
|
|
t.Kind() == reflect.Pointer ||
|
|
t.Kind() == reflect.Slice
|
|
}
|
|
|
|
func Forward(ctx ml.Context, m Model, batch input.Batch) (ml.Tensor, error) {
|
|
if len(batch.Positions) != len(batch.Sequences) {
|
|
return nil, fmt.Errorf("length of positions (%v) must match length of seqs (%v)", len(batch.Positions), len(batch.Sequences))
|
|
}
|
|
|
|
if len(batch.Positions) < 1 {
|
|
return nil, errors.New("batch size cannot be less than 1")
|
|
}
|
|
|
|
cache := m.Config().Cache
|
|
if cache != nil {
|
|
err := cache.StartForward(ctx, batch, false)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
t, err := m.Forward(ctx, batch)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
ctx.Forward(t)
|
|
|
|
return t, nil
|
|
}
|