mirror of
https://github.com/ollama/ollama.git
synced 2026-06-03 05:53:55 -04: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>
289 lines
6.5 KiB
Go
289 lines
6.5 KiB
Go
package server
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/binary"
|
|
"errors"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/ollama/ollama/api"
|
|
"github.com/ollama/ollama/manifest"
|
|
)
|
|
|
|
func TestConvertFromSafetensors(t *testing.T) {
|
|
t.Setenv("OLLAMA_MODELS", t.TempDir())
|
|
|
|
// Helper function to create a new layer and return its digest
|
|
makeTemp := func(content string) string {
|
|
l, err := manifest.NewLayer(strings.NewReader(content), "application/octet-stream")
|
|
if err != nil {
|
|
t.Fatalf("Failed to create layer: %v", err)
|
|
}
|
|
return l.Digest
|
|
}
|
|
|
|
// Create a safetensors compatible file with empty JSON content
|
|
var buf bytes.Buffer
|
|
headerSize := int64(len("{}"))
|
|
binary.Write(&buf, binary.LittleEndian, headerSize)
|
|
buf.WriteString("{}")
|
|
|
|
model := makeTemp(buf.String())
|
|
config := makeTemp(`{
|
|
"architectures": ["LlamaForCausalLM"],
|
|
"vocab_size": 32000
|
|
}`)
|
|
tokenizer := makeTemp(`{
|
|
"version": "1.0",
|
|
"truncation": null,
|
|
"padding": null,
|
|
"added_tokens": [
|
|
{
|
|
"id": 0,
|
|
"content": "<|endoftext|>",
|
|
"single_word": false,
|
|
"lstrip": false,
|
|
"rstrip": false,
|
|
"normalized": false,
|
|
"special": true
|
|
}
|
|
]
|
|
}`)
|
|
|
|
tests := []struct {
|
|
name string
|
|
filePath string
|
|
wantErr error
|
|
}{
|
|
// Invalid
|
|
{
|
|
name: "InvalidRelativePathShallow",
|
|
filePath: filepath.Join("..", "file.safetensors"),
|
|
wantErr: errFilePath,
|
|
},
|
|
{
|
|
name: "InvalidRelativePathDeep",
|
|
filePath: filepath.Join("..", "..", "..", "..", "..", "..", "data", "file.txt"),
|
|
wantErr: errFilePath,
|
|
},
|
|
{
|
|
name: "InvalidNestedPath",
|
|
filePath: filepath.Join("dir", "..", "..", "..", "..", "..", "other.safetensors"),
|
|
wantErr: errFilePath,
|
|
},
|
|
{
|
|
name: "AbsolutePathOutsideRoot",
|
|
filePath: filepath.Join(os.TempDir(), "model.safetensors"),
|
|
wantErr: errFilePath, // Should fail since it's outside tmpDir
|
|
},
|
|
{
|
|
name: "ValidRelativePath",
|
|
filePath: "model.safetensors",
|
|
wantErr: nil,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
// Create the minimum required file map for convertFromSafetensors
|
|
files := map[string]string{
|
|
tt.filePath: model,
|
|
"config.json": config,
|
|
"tokenizer.json": tokenizer,
|
|
}
|
|
|
|
_, err := convertFromSafetensors(files, nil, false, "", true, func(resp api.ProgressResponse) {})
|
|
|
|
if (tt.wantErr == nil && err != nil) ||
|
|
(tt.wantErr != nil && err == nil) ||
|
|
(tt.wantErr != nil && !errors.Is(err, tt.wantErr)) {
|
|
t.Errorf("convertFromSafetensors() error = %v, wantErr %v", err, tt.wantErr)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestRemoteURL(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
input string
|
|
expected string
|
|
hasError bool
|
|
}{
|
|
{
|
|
name: "absolute path",
|
|
input: "/foo/bar",
|
|
expected: "http://localhost:11434/foo/bar",
|
|
hasError: false,
|
|
},
|
|
{
|
|
name: "absolute path with cleanup",
|
|
input: "/foo/../bar",
|
|
expected: "http://localhost:11434/bar",
|
|
hasError: false,
|
|
},
|
|
{
|
|
name: "root path",
|
|
input: "/",
|
|
expected: "http://localhost:11434/",
|
|
hasError: false,
|
|
},
|
|
{
|
|
name: "host without scheme",
|
|
input: "example.com",
|
|
expected: "http://example.com:11434",
|
|
hasError: false,
|
|
},
|
|
{
|
|
name: "host with port",
|
|
input: "example.com:8080",
|
|
expected: "http://example.com:8080",
|
|
hasError: false,
|
|
},
|
|
{
|
|
name: "full URL",
|
|
input: "https://example.com:8080/path",
|
|
expected: "https://example.com:8080/path",
|
|
hasError: false,
|
|
},
|
|
{
|
|
name: "full URL with path cleanup",
|
|
input: "https://example.com:8080/path/../other",
|
|
expected: "https://example.com:8080/other",
|
|
hasError: false,
|
|
},
|
|
{
|
|
name: "ollama.com special case",
|
|
input: "ollama.com",
|
|
expected: "https://ollama.com:443",
|
|
hasError: false,
|
|
},
|
|
{
|
|
name: "http ollama.com special case",
|
|
input: "http://ollama.com",
|
|
expected: "https://ollama.com:443",
|
|
hasError: false,
|
|
},
|
|
{
|
|
name: "URL with only host",
|
|
input: "http://example.com",
|
|
expected: "http://example.com:11434",
|
|
hasError: false,
|
|
},
|
|
{
|
|
name: "URL with root path cleaned",
|
|
input: "http://example.com/",
|
|
expected: "http://example.com:11434",
|
|
hasError: false,
|
|
},
|
|
{
|
|
name: "invalid URL",
|
|
input: "http://[::1]:namedport", // invalid port
|
|
expected: "",
|
|
hasError: true,
|
|
},
|
|
{
|
|
name: "empty string",
|
|
input: "",
|
|
expected: "http://localhost:11434",
|
|
hasError: false,
|
|
},
|
|
{
|
|
name: "host with scheme but no port",
|
|
input: "http://localhost",
|
|
expected: "http://localhost:11434",
|
|
hasError: false,
|
|
},
|
|
{
|
|
name: "complex path cleanup",
|
|
input: "/a/b/../../c/./d",
|
|
expected: "http://localhost:11434/c/d",
|
|
hasError: false,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
result, err := remoteURL(tt.input)
|
|
|
|
if tt.hasError {
|
|
if err == nil {
|
|
t.Errorf("expected error but got none")
|
|
}
|
|
return
|
|
}
|
|
|
|
if err != nil {
|
|
t.Errorf("unexpected error: %v", err)
|
|
return
|
|
}
|
|
|
|
if result != tt.expected {
|
|
t.Errorf("expected %q, got %q", tt.expected, result)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestRemoteURL_Idempotent(t *testing.T) {
|
|
// Test that applying remoteURL twice gives the same result as applying it once
|
|
testInputs := []string{
|
|
"/foo/bar",
|
|
"example.com",
|
|
"https://example.com:8080/path",
|
|
"ollama.com",
|
|
"http://localhost:11434",
|
|
}
|
|
|
|
for _, input := range testInputs {
|
|
t.Run(input, func(t *testing.T) {
|
|
firstResult, err := remoteURL(input)
|
|
if err != nil {
|
|
t.Fatalf("first call failed: %v", err)
|
|
}
|
|
|
|
secondResult, err := remoteURL(firstResult)
|
|
if err != nil {
|
|
t.Fatalf("second call failed: %v", err)
|
|
}
|
|
|
|
if firstResult != secondResult {
|
|
t.Errorf("function is not idempotent: first=%q, second=%q", firstResult, secondResult)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestSetTemplate(t *testing.T) {
|
|
t.Setenv("OLLAMA_MODELS", t.TempDir())
|
|
|
|
t.Run("valid template", func(t *testing.T) {
|
|
layers, err := setTemplate(nil, "{{ .Prompt }}")
|
|
if err != nil {
|
|
t.Fatalf("setTemplate returned error for valid template: %v", err)
|
|
}
|
|
|
|
if len(layers) != 1 {
|
|
t.Fatalf("expected 1 layer, got %d", len(layers))
|
|
}
|
|
|
|
if got, want := layers[0].MediaType, "application/vnd.ollama.image.template"; got != want {
|
|
t.Fatalf("unexpected media type: got %q, want %q", got, want)
|
|
}
|
|
})
|
|
|
|
t.Run("invalid template", func(t *testing.T) {
|
|
_, err := setTemplate(nil, "{{ if .Prompt }}")
|
|
if err == nil {
|
|
t.Fatal("expected error for invalid template, got nil")
|
|
}
|
|
|
|
if !errors.Is(err, errBadTemplate) {
|
|
t.Fatalf("expected errBadTemplate, got %v", err)
|
|
}
|
|
})
|
|
}
|