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>
968 lines
27 KiB
Go
968 lines
27 KiB
Go
//go:build integration
|
|
|
|
package integration
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"log/slog"
|
|
"math"
|
|
"math/rand"
|
|
"net"
|
|
"net/http"
|
|
"net/url"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
"runtime"
|
|
"slices"
|
|
"strconv"
|
|
"strings"
|
|
"sync"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/ollama/ollama/api"
|
|
"github.com/ollama/ollama/format"
|
|
"github.com/ollama/ollama/types/model"
|
|
)
|
|
|
|
var (
|
|
smol = "llama3.2:1b"
|
|
stream = false
|
|
|
|
// testModel is set via OLLAMA_TEST_MODEL env var. When set, all tests
|
|
// that loop over model lists will test only this model, and smol is
|
|
// also overridden to use it.
|
|
testModel string
|
|
)
|
|
|
|
var (
|
|
started = time.Now()
|
|
|
|
// Note: add newer models at the top of the list to test them first
|
|
ollamaEngineChatModels = []string{
|
|
"nemotron3:33b",
|
|
// "laguna-xs.2:q4_K_M", // TODO: re-enable when llama.cpp supports laguna.
|
|
"gemma4",
|
|
"lfm2.5-thinking",
|
|
"ministral-3",
|
|
"qwen3-coder:30b",
|
|
"gpt-oss:20b",
|
|
"gemma3n:e2b",
|
|
"mistral-small3.2:latest",
|
|
"deepseek-r1:1.5b",
|
|
// "llama3.2-vision:latest", // TODO: re-enable when llama.cpp supports mllama.
|
|
"qwen2.5-coder:latest",
|
|
"qwen2.5vl:3b",
|
|
"qwen3:0.6b", // dense
|
|
"qwen3:1.7b", // dense
|
|
"qwen3:30b", // MOE
|
|
"gemma3:1b",
|
|
"llama3.1:latest",
|
|
"llama3.2:latest",
|
|
"gemma2:latest",
|
|
"minicpm-v:latest", // arch=qwen2
|
|
"granite-code:latest", // arch=llama
|
|
}
|
|
// MLX-backed safetensors tags. These exercise the mlxrunner subprocess
|
|
// on platforms where MLX is available (today: macOS; Linux/Windows CUDA
|
|
// coming). On other platforms, skipIfMLXUnsupported turns the load
|
|
// failure into a test skip.
|
|
mlxEngineChatModels = []string{
|
|
"laguna-xs.2:nvfp4",
|
|
"qwen3.5:2b-nvfp4", // ~2.5GB, Qwen3_5 arch
|
|
"gemma4:e2b-nvfp4", // ~7.1GB, Gemma4 arch (skipped under low VRAM)
|
|
}
|
|
llamaRunnerChatModels = []string{
|
|
"mistral:latest",
|
|
"falcon3:latest",
|
|
"granite3-moe:latest",
|
|
"command-r:latest",
|
|
"nemotron-mini:latest",
|
|
"phi3.5:latest",
|
|
"internlm2:latest",
|
|
"codellama:latest", // arch=llama
|
|
"phi3:latest",
|
|
}
|
|
|
|
// Some library models are quite large - ensure large VRAM and sufficient disk space
|
|
// before running scenarios based on this set
|
|
libraryChatModels = []string{
|
|
"alfred",
|
|
"athene-v2",
|
|
"aya-expanse",
|
|
"aya",
|
|
"bakllava",
|
|
"bespoke-minicheck",
|
|
"codebooga",
|
|
"codegeex4",
|
|
"codegemma",
|
|
"codellama",
|
|
"codeqwen",
|
|
"codestral",
|
|
"codeup",
|
|
"cogito",
|
|
"command-a",
|
|
"command-r-plus",
|
|
"command-r",
|
|
"command-r7b-arabic",
|
|
"command-r7b",
|
|
"dbrx",
|
|
"deepcoder",
|
|
"deepscaler",
|
|
"deepseek-coder-v2",
|
|
"deepseek-coder",
|
|
"deepseek-llm",
|
|
"deepseek-r1",
|
|
// "deepseek-v2.5", // requires 155 GB VRAM
|
|
"deepseek-v2",
|
|
// "deepseek-v3", // requires 482 GB VRAM
|
|
"devstral",
|
|
"dolphin-llama3",
|
|
"dolphin-mistral",
|
|
"dolphin-mixtral",
|
|
"dolphin-phi",
|
|
"dolphin3",
|
|
"dolphincoder",
|
|
"duckdb-nsql",
|
|
"everythinglm",
|
|
"exaone-deep",
|
|
"exaone3.5",
|
|
"falcon",
|
|
"falcon2",
|
|
"falcon3",
|
|
"firefunction-v2",
|
|
"gemma",
|
|
"gemma2",
|
|
"gemma3",
|
|
"gemma3n",
|
|
"gemma4",
|
|
"glm4",
|
|
"goliath",
|
|
"gpt-oss:20b",
|
|
"granite-code",
|
|
"granite3-dense",
|
|
"granite3-guardian",
|
|
"granite3-moe",
|
|
"granite3.1-dense",
|
|
"granite3.1-moe",
|
|
"granite3.2-vision",
|
|
"granite3.2",
|
|
"granite3.3",
|
|
"hermes3",
|
|
"internlm2",
|
|
"lfm2.5-thinking",
|
|
"llama-guard3",
|
|
"llama-pro",
|
|
"llama2-chinese",
|
|
"llama2-uncensored",
|
|
"llama2",
|
|
"llama3-chatqa",
|
|
"llama3-gradient",
|
|
"llama3-groq-tool-use",
|
|
"llama3.1",
|
|
// "llama3.2-vision", // TODO: re-enable when llama.cpp supports mllama.
|
|
"llama3.2",
|
|
"llama3.3",
|
|
"llama3",
|
|
"llama4",
|
|
"llava-llama3",
|
|
"llava-phi3",
|
|
"llava",
|
|
"magicoder",
|
|
"magistral",
|
|
"marco-o1",
|
|
"mathstral",
|
|
"meditron",
|
|
"medllama2",
|
|
"megadolphin",
|
|
"minicpm-v",
|
|
"ministral-3",
|
|
"mistral-large",
|
|
"mistral-nemo",
|
|
"mistral-openorca",
|
|
"mistral-small",
|
|
"mistral-small3.1",
|
|
"mistral-small3.2",
|
|
"mistral",
|
|
"mistrallite",
|
|
"mixtral",
|
|
"moondream",
|
|
"nemotron-mini",
|
|
"nemotron",
|
|
"neural-chat",
|
|
"nexusraven",
|
|
"notus",
|
|
"nous-hermes",
|
|
"nous-hermes2-mixtral",
|
|
"nous-hermes2",
|
|
"nuextract",
|
|
"olmo2",
|
|
"open-orca-platypus2",
|
|
"openchat",
|
|
"opencoder",
|
|
"openhermes",
|
|
"openthinker",
|
|
"orca-mini",
|
|
"orca2",
|
|
// "phi", // unreliable
|
|
"phi3.5",
|
|
"phi3",
|
|
"phi4-mini-reasoning",
|
|
"phi4-mini",
|
|
"phi4-reasoning",
|
|
"phi4",
|
|
"phind-codellama",
|
|
"qwen",
|
|
"qwen2-math",
|
|
"qwen2.5-coder",
|
|
"qwen2.5",
|
|
"qwen2.5vl",
|
|
"qwen2",
|
|
"qwen3:0.6b", // dense
|
|
"qwen3:30b", // MOE
|
|
"qwq",
|
|
"r1-1776",
|
|
"reader-lm",
|
|
"reflection",
|
|
"sailor2",
|
|
"samantha-mistral",
|
|
"shieldgemma",
|
|
"smallthinker",
|
|
"smollm",
|
|
"smollm2",
|
|
"solar",
|
|
"sqlcoder",
|
|
"stable-beluga",
|
|
"stable-code",
|
|
"stablelm-zephyr",
|
|
"stablelm2",
|
|
"starcoder",
|
|
"starcoder2",
|
|
"starling-lm",
|
|
"tinydolphin",
|
|
"tinyllama",
|
|
"tulu3",
|
|
"vicuna",
|
|
"wizard-math",
|
|
"wizard-vicuna-uncensored",
|
|
"wizard-vicuna",
|
|
"wizardcoder",
|
|
"wizardlm-uncensored",
|
|
"wizardlm2",
|
|
"xwinlm",
|
|
"yarn-llama2",
|
|
"yarn-mistral",
|
|
"yi-coder",
|
|
"yi",
|
|
"zephyr",
|
|
}
|
|
libraryEmbedModels = []string{
|
|
"embeddinggemma",
|
|
"nomic-embed-text",
|
|
"all-minilm",
|
|
"bge-large",
|
|
"bge-m3",
|
|
"granite-embedding",
|
|
"mxbai-embed-large",
|
|
"paraphrase-multilingual",
|
|
"snowflake-arctic-embed",
|
|
"snowflake-arctic-embed2",
|
|
"qwen3-embedding",
|
|
}
|
|
libraryToolsModels = []string{
|
|
"nemotron3:33b",
|
|
// "laguna-xs.2", // TODO: re-enable when llama.cpp supports laguna.
|
|
"gemma4",
|
|
"lfm2.5-thinking",
|
|
"qwen3-vl",
|
|
"gpt-oss:20b",
|
|
"gpt-oss:120b",
|
|
"qwen3",
|
|
"llama3.1",
|
|
"llama3.2",
|
|
"mistral",
|
|
"qwen2.5",
|
|
"ministral-3",
|
|
"mistral-nemo",
|
|
"mistral-small",
|
|
"mixtral:8x22b",
|
|
"qwq",
|
|
"granite3.3",
|
|
}
|
|
|
|
blueSkyPrompt = "why is the sky blue? Be brief but factual in your reply"
|
|
blueSkyExpected = []string{"rayleigh", "scatter", "atmosphere", "nitrogen", "oxygen", "wavelength", "interact"}
|
|
|
|
rainbowPrompt = "how do rainbows form? Be brief but factual in your reply"
|
|
rainbowFollowups = []string{
|
|
"Explain the physics involved in them. Be brief in your reply",
|
|
"Explain the chemistry involved in them. Be brief in your reply",
|
|
"What are common myths related to them? Be brief in your reply",
|
|
"Can they form if there is no rain? Be brief in your reply",
|
|
"Can they form if there are no clouds? Be brief in your reply",
|
|
"Do they happen on other planets? Be brief in your reply",
|
|
}
|
|
rainbowExpected = []string{"water", "droplet", "mist", "glow", "refract", "reflect", "scatter", "particles", "wave", "color", "spectrum", "raindrop", "atmosphere", "frequency", "shower", "sky", "shimmer", "light", "storm", "sunny", "sunburst", "phenomenon", "mars", "venus", "jupiter", "rain", "sun", "rainbow", "optical", "gold", "cloud", "planet", "prism", "fog", "ice"}
|
|
)
|
|
|
|
func init() {
|
|
logger := slog.New(slog.NewTextHandler(os.Stdout, &slog.HandlerOptions{Level: slog.LevelDebug}))
|
|
slog.SetDefault(logger)
|
|
|
|
testModel = os.Getenv("OLLAMA_TEST_MODEL")
|
|
if testModel != "" {
|
|
slog.Info("test model override", "model", testModel)
|
|
smol = testModel
|
|
}
|
|
}
|
|
|
|
// testModels returns the override model as a single-element slice when
|
|
// OLLAMA_TEST_MODEL is set, otherwise returns the provided default list.
|
|
func testModels(defaults []string) []string {
|
|
if testModel != "" {
|
|
return []string{testModel}
|
|
}
|
|
return defaults
|
|
}
|
|
|
|
// requireCapability skips the test if the model does not advertise the
|
|
// given capability. If the model is missing locally, it first goes through
|
|
// the normal pull-if-missing path so tests still behave correctly on cold
|
|
// hosts. For local-only models where Show may not return capabilities
|
|
// (e.g. models created via ollama create), this is a best-effort check.
|
|
func requireCapability(ctx context.Context, t *testing.T, client *api.Client, modelName string, cap model.Capability) {
|
|
t.Helper()
|
|
|
|
resp, err := client.Show(ctx, &api.ShowRequest{Name: modelName})
|
|
var statusError api.StatusError
|
|
if errors.As(err, &statusError) && statusError.StatusCode == http.StatusNotFound {
|
|
if err := PullIfMissing(ctx, client, modelName); err != nil {
|
|
t.Skipf("model %s not available: %v", modelName, err)
|
|
}
|
|
|
|
resp, err = client.Show(ctx, &api.ShowRequest{Name: modelName})
|
|
}
|
|
|
|
if err != nil {
|
|
t.Fatalf("failed to show model %s: %v", modelName, err)
|
|
}
|
|
if len(resp.Capabilities) > 0 && !slices.Contains(resp.Capabilities, cap) {
|
|
t.Skipf("model %s does not have capability %q (has %v)", modelName, cap, resp.Capabilities)
|
|
}
|
|
}
|
|
|
|
// pullOrSkip pulls a model if it isn't already present locally. If the
|
|
// pull fails (e.g. model not in registry), the test is skipped instead
|
|
// of failed. PullIfMissing already checks Show first, so local-only
|
|
// models that exist will return immediately without hitting the registry.
|
|
func pullOrSkip(ctx context.Context, t *testing.T, client *api.Client, modelName string) {
|
|
t.Helper()
|
|
if err := PullIfMissing(ctx, client, modelName); err != nil {
|
|
t.Skipf("model %s not available: %v", modelName, err)
|
|
}
|
|
}
|
|
|
|
func FindPort() string {
|
|
port := 0
|
|
if a, err := net.ResolveTCPAddr("tcp", "localhost:0"); err == nil {
|
|
var l *net.TCPListener
|
|
if l, err = net.ListenTCP("tcp", a); err == nil {
|
|
port = l.Addr().(*net.TCPAddr).Port
|
|
l.Close()
|
|
}
|
|
}
|
|
if port == 0 {
|
|
port = rand.Intn(65535-49152) + 49152 // get a random port in the ephemeral range
|
|
}
|
|
return strconv.Itoa(port)
|
|
}
|
|
|
|
func GetTestEndpoint() (*api.Client, string) {
|
|
defaultPort := "11434"
|
|
ollamaHost := os.Getenv("OLLAMA_HOST")
|
|
|
|
scheme, hostport, ok := strings.Cut(ollamaHost, "://")
|
|
if !ok {
|
|
scheme, hostport = "http", ollamaHost
|
|
}
|
|
|
|
// trim trailing slashes
|
|
hostport = strings.TrimRight(hostport, "/")
|
|
|
|
host, port, err := net.SplitHostPort(hostport)
|
|
if err != nil {
|
|
host, port = "127.0.0.1", defaultPort
|
|
if ip := net.ParseIP(strings.Trim(hostport, "[]")); ip != nil {
|
|
host = ip.String()
|
|
} else if hostport != "" {
|
|
host = hostport
|
|
}
|
|
}
|
|
|
|
if os.Getenv("OLLAMA_TEST_EXISTING") == "" && runtime.GOOS != "windows" && port == defaultPort {
|
|
port = FindPort()
|
|
}
|
|
|
|
slog.Info("server connection", "host", host, "port", port)
|
|
|
|
return api.NewClient(
|
|
&url.URL{
|
|
Scheme: scheme,
|
|
Host: net.JoinHostPort(host, port),
|
|
},
|
|
http.DefaultClient), fmt.Sprintf("%s:%s", host, port)
|
|
}
|
|
|
|
// Server lifecycle management
|
|
var (
|
|
serverMutex sync.Mutex
|
|
serverReady bool
|
|
serverLog bytes.Buffer
|
|
serverDone chan int
|
|
serverCmd *exec.Cmd
|
|
)
|
|
|
|
func startServer(t *testing.T, ctx context.Context, ollamaHost string) error {
|
|
// Make sure the server has been built
|
|
CLIName, err := filepath.Abs("../ollama")
|
|
if err != nil {
|
|
return fmt.Errorf("failed to get absolute path: %w", err)
|
|
}
|
|
|
|
if runtime.GOOS == "windows" {
|
|
CLIName += ".exe"
|
|
}
|
|
_, err = os.Stat(CLIName)
|
|
if err != nil {
|
|
return fmt.Errorf("CLI missing, did you forget to 'go build .' first? %w", err)
|
|
}
|
|
serverMutex.Lock()
|
|
defer serverMutex.Unlock()
|
|
if serverReady {
|
|
return nil
|
|
}
|
|
serverDone = make(chan int)
|
|
serverLog.Reset()
|
|
|
|
if tmp := os.Getenv("OLLAMA_HOST"); tmp != ollamaHost {
|
|
slog.Info("setting env", "OLLAMA_HOST", ollamaHost)
|
|
t.Setenv("OLLAMA_HOST", ollamaHost)
|
|
}
|
|
|
|
serverCmd = exec.Command(CLIName, "serve")
|
|
serverCmd.Stderr = &serverLog
|
|
serverCmd.Stdout = &serverLog
|
|
go func() {
|
|
slog.Info("starting server", "url", ollamaHost)
|
|
if err := serverCmd.Run(); err != nil {
|
|
// "signal: killed" expected during normal shutdown
|
|
if !strings.Contains(err.Error(), "signal") {
|
|
slog.Info("failed to run server", "error", err)
|
|
}
|
|
}
|
|
var code int
|
|
if serverCmd.ProcessState != nil {
|
|
code = serverCmd.ProcessState.ExitCode()
|
|
}
|
|
slog.Info("server exited")
|
|
serverDone <- code
|
|
}()
|
|
|
|
serverReady = true
|
|
return nil
|
|
}
|
|
|
|
func PullIfMissing(ctx context.Context, client *api.Client, modelName string) error {
|
|
slog.Info("checking status of model", "model", modelName)
|
|
showReq := &api.ShowRequest{Name: modelName}
|
|
|
|
showCtx, cancel := context.WithDeadlineCause(
|
|
ctx,
|
|
time.Now().Add(20*time.Second),
|
|
fmt.Errorf("show for existing model %s took too long", modelName),
|
|
)
|
|
defer cancel()
|
|
_, err := client.Show(showCtx, showReq)
|
|
var statusError api.StatusError
|
|
switch {
|
|
case errors.As(err, &statusError) && statusError.StatusCode == http.StatusNotFound:
|
|
break
|
|
case err != nil:
|
|
return err
|
|
default:
|
|
slog.Info("model already present", "model", modelName)
|
|
return nil
|
|
}
|
|
slog.Info("model missing", "model", modelName)
|
|
|
|
stallDuration := 60 * time.Second // This includes checksum verification, which can take a while on larger models, and slower systems
|
|
stallTimer := time.NewTimer(stallDuration)
|
|
fn := func(resp api.ProgressResponse) error {
|
|
// fmt.Print(".")
|
|
if !stallTimer.Reset(stallDuration) {
|
|
return errors.New("stall was detected, aborting status reporting")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
stream := true
|
|
pullReq := &api.PullRequest{Name: modelName, Stream: &stream}
|
|
|
|
var pullError error
|
|
|
|
done := make(chan int)
|
|
go func() {
|
|
pullError = client.Pull(ctx, pullReq, fn)
|
|
done <- 0
|
|
}()
|
|
|
|
select {
|
|
case <-stallTimer.C:
|
|
return errors.New("download stalled")
|
|
case <-done:
|
|
return pullError
|
|
}
|
|
}
|
|
|
|
var serverProcMutex sync.Mutex
|
|
|
|
// Returns an Client, the testEndpoint, and a cleanup function, fails the test on errors
|
|
// Starts the server if needed
|
|
func InitServerConnection(ctx context.Context, t *testing.T) (*api.Client, string, func()) {
|
|
client, testEndpoint := GetTestEndpoint()
|
|
cleanup := func() {}
|
|
if os.Getenv("OLLAMA_TEST_EXISTING") == "" && runtime.GOOS != "windows" {
|
|
var err error
|
|
err = startServer(t, ctx, testEndpoint)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
cleanup = func() {
|
|
serverMutex.Lock()
|
|
defer serverMutex.Unlock()
|
|
serverReady = false
|
|
|
|
slog.Info("shutting down server")
|
|
serverCmd.Process.Signal(os.Interrupt)
|
|
slog.Info("waiting for server to exit")
|
|
<-serverDone
|
|
slog.Info("terminate complete")
|
|
|
|
if t.Failed() || os.Getenv("OLLAMA_TEST_LOG_SERVER") != "" {
|
|
slog.Warn("SERVER LOG FOLLOWS")
|
|
io.Copy(os.Stderr, &serverLog)
|
|
slog.Warn("END OF SERVER")
|
|
}
|
|
slog.Info("cleanup complete", "failed", t.Failed())
|
|
}
|
|
}
|
|
// Make sure server is online and healthy before returning
|
|
for {
|
|
select {
|
|
case <-ctx.Done():
|
|
t.Fatalf("context done before server ready: %v", ctx.Err())
|
|
break
|
|
default:
|
|
}
|
|
listCtx, cancel := context.WithDeadlineCause(
|
|
ctx,
|
|
time.Now().Add(10*time.Second),
|
|
fmt.Errorf("list models took too long"),
|
|
)
|
|
defer cancel()
|
|
models, err := client.ListRunning(listCtx)
|
|
if err != nil {
|
|
if runtime.GOOS == "windows" {
|
|
t.Fatalf("did you forget to start the server: %v", err)
|
|
}
|
|
time.Sleep(10 * time.Millisecond)
|
|
continue
|
|
}
|
|
if len(models.Models) > 0 {
|
|
names := make([]string, len(models.Models))
|
|
for i, m := range models.Models {
|
|
names[i] = m.Name
|
|
}
|
|
slog.Info("currently loaded", "models", names)
|
|
}
|
|
break
|
|
}
|
|
|
|
return client, testEndpoint, cleanup
|
|
}
|
|
|
|
func ChatTestHelper(ctx context.Context, t *testing.T, req api.ChatRequest, anyResp []string) {
|
|
client, _, cleanup := InitServerConnection(ctx, t)
|
|
defer cleanup()
|
|
pullOrSkip(ctx, t, client, req.Model)
|
|
DoChat(ctx, t, client, req, anyResp, 30*time.Second, 10*time.Second)
|
|
}
|
|
|
|
func DoGenerate(ctx context.Context, t *testing.T, client *api.Client, genReq api.GenerateRequest, anyResp []string, initialTimeout, streamTimeout time.Duration) []int {
|
|
stallTimer := time.NewTimer(initialTimeout)
|
|
var buf bytes.Buffer
|
|
var context []int
|
|
fn := func(response api.GenerateResponse) error {
|
|
// fmt.Print(".")
|
|
buf.Write([]byte(response.Response))
|
|
if !stallTimer.Reset(streamTimeout) {
|
|
return errors.New("stall was detected while streaming response, aborting")
|
|
}
|
|
if len(response.Context) > 0 {
|
|
context = response.Context
|
|
}
|
|
return nil
|
|
}
|
|
|
|
stream := true
|
|
genReq.Stream = &stream
|
|
done := make(chan int)
|
|
var genErr error
|
|
go func() {
|
|
genErr = client.Generate(ctx, &genReq, fn)
|
|
done <- 0
|
|
}()
|
|
|
|
var response string
|
|
verify := func() {
|
|
// Verify the response contains the expected data
|
|
response = buf.String()
|
|
atLeastOne := false
|
|
for _, resp := range anyResp {
|
|
if strings.Contains(strings.ToLower(response), resp) {
|
|
atLeastOne = true
|
|
break
|
|
}
|
|
}
|
|
if !atLeastOne {
|
|
t.Fatalf("%s: none of %v found in %s", genReq.Model, anyResp, response)
|
|
}
|
|
}
|
|
|
|
select {
|
|
case <-stallTimer.C:
|
|
if buf.Len() == 0 {
|
|
t.Errorf("generate never started. Timed out after :%s", initialTimeout.String())
|
|
} else {
|
|
t.Errorf("generate stalled. Response so far:%s", buf.String())
|
|
}
|
|
case <-done:
|
|
if genErr != nil && strings.Contains(genErr.Error(), "model requires more system memory") {
|
|
slog.Warn("model is too large for the target test system", "model", genReq.Model, "error", genErr)
|
|
return context
|
|
}
|
|
if genErr != nil {
|
|
t.Fatalf("%s failed with %s request prompt %s", genErr, genReq.Model, genReq.Prompt)
|
|
}
|
|
verify()
|
|
slog.Info("test pass", "model", genReq.Model, "prompt", genReq.Prompt, "contains", anyResp, "response", response)
|
|
case <-ctx.Done():
|
|
// On slow systems, we might timeout before some models finish rambling, so check what we have so far to see
|
|
// if it's considered a pass - the stallTimer will detect hangs, but we want to consider slow systems a pass
|
|
// if they are still generating valid responses
|
|
slog.Warn("outer test context done while waiting for generate")
|
|
verify()
|
|
}
|
|
return context
|
|
}
|
|
|
|
// Generate a set of requests
|
|
// By default each request uses llama3.2 as the model
|
|
func GenerateRequests() ([]api.GenerateRequest, [][]string) {
|
|
return []api.GenerateRequest{
|
|
{
|
|
Model: smol,
|
|
Prompt: "why is the ocean blue? Be brief but factual in your reply",
|
|
Stream: &stream,
|
|
KeepAlive: &api.Duration{Duration: 10 * time.Second},
|
|
}, {
|
|
Model: smol,
|
|
Prompt: "why is the color of dirt brown? Be brief but factual in your reply",
|
|
Stream: &stream,
|
|
KeepAlive: &api.Duration{Duration: 10 * time.Second},
|
|
}, {
|
|
Model: smol,
|
|
Prompt: rainbowPrompt,
|
|
Stream: &stream,
|
|
KeepAlive: &api.Duration{Duration: 10 * time.Second},
|
|
}, {
|
|
Model: smol,
|
|
Prompt: "what is the origin of independence day? Be brief but factual in your reply",
|
|
Stream: &stream,
|
|
KeepAlive: &api.Duration{Duration: 10 * time.Second},
|
|
}, {
|
|
Model: smol,
|
|
Prompt: "what is the composition of air? Be brief but factual in your reply",
|
|
Stream: &stream,
|
|
KeepAlive: &api.Duration{Duration: 10 * time.Second},
|
|
},
|
|
},
|
|
[][]string{
|
|
{"sunlight", "scatter", "interact", "color", "surface", "depth", "red", "orange", "yellow", "absorb", "wavelength", "water", "molecule"},
|
|
{"soil", "organic", "earth", "black", "tan", "chemical", "processes", "pigment", "particle", "iron oxide", "rust", "air", "water", "wet", "mixture", "mixing", "mineral", "element", "decomposed", "matter", "wavelength"},
|
|
rainbowExpected,
|
|
{"fourth", "july", "declaration", "independence"},
|
|
{"nitrogen", "oxygen", "carbon", "dioxide", "water", "vapor", "fluid", "particles", "gas"},
|
|
}
|
|
}
|
|
|
|
// summarizeMessages returns a compact string form of the messages suitable
|
|
// for logs and error output. Image byte payloads are replaced with a
|
|
// "<image: N bytes>" marker so vision tests don't dump huge integer arrays.
|
|
func summarizeMessages(msgs []api.Message) string {
|
|
var b strings.Builder
|
|
b.WriteByte('[')
|
|
for i, m := range msgs {
|
|
if i > 0 {
|
|
b.WriteString(", ")
|
|
}
|
|
fmt.Fprintf(&b, "{Role:%s Content:%q", m.Role, m.Content)
|
|
if m.Thinking != "" {
|
|
fmt.Fprintf(&b, " Thinking:%q", m.Thinking)
|
|
}
|
|
if len(m.Images) > 0 {
|
|
b.WriteString(" Images:[")
|
|
for j, img := range m.Images {
|
|
if j > 0 {
|
|
b.WriteString(", ")
|
|
}
|
|
fmt.Fprintf(&b, "<image: %d bytes>", len(img))
|
|
}
|
|
b.WriteByte(']')
|
|
}
|
|
if len(m.ToolCalls) > 0 {
|
|
fmt.Fprintf(&b, " ToolCalls:%+v", m.ToolCalls)
|
|
}
|
|
if m.ToolName != "" {
|
|
fmt.Fprintf(&b, " ToolName:%s", m.ToolName)
|
|
}
|
|
if m.ToolCallID != "" {
|
|
fmt.Fprintf(&b, " ToolCallID:%s", m.ToolCallID)
|
|
}
|
|
b.WriteByte('}')
|
|
}
|
|
b.WriteByte(']')
|
|
return b.String()
|
|
}
|
|
|
|
func DoChat(ctx context.Context, t *testing.T, client *api.Client, req api.ChatRequest, anyResp []string, initialTimeout, streamTimeout time.Duration) *api.Message {
|
|
stallTimer := time.NewTimer(initialTimeout)
|
|
var buf bytes.Buffer
|
|
role := "assistant"
|
|
fn := func(response api.ChatResponse) error {
|
|
// fmt.Print(".")
|
|
role = response.Message.Role
|
|
buf.Write([]byte(response.Message.Content))
|
|
if !stallTimer.Reset(streamTimeout) {
|
|
return errors.New("stall was detected while streaming response, aborting")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
stream := true
|
|
req.Stream = &stream
|
|
done := make(chan int)
|
|
var genErr error
|
|
go func() {
|
|
genErr = client.Chat(ctx, &req, fn)
|
|
done <- 0
|
|
}()
|
|
|
|
var response string
|
|
verify := func() {
|
|
// Verify the response contains the expected data
|
|
response = buf.String()
|
|
atLeastOne := false
|
|
for _, resp := range anyResp {
|
|
if strings.Contains(strings.ToLower(response), resp) {
|
|
atLeastOne = true
|
|
break
|
|
}
|
|
}
|
|
if !atLeastOne {
|
|
t.Fatalf("%s: none of %v found in \"%s\" -- request was:%s", req.Model, anyResp, response, summarizeMessages(req.Messages))
|
|
}
|
|
}
|
|
|
|
select {
|
|
case <-stallTimer.C:
|
|
if buf.Len() == 0 {
|
|
t.Errorf("generate never started. Timed out after :%s", initialTimeout.String())
|
|
} else {
|
|
t.Errorf("generate stalled. Response so far:%s", buf.String())
|
|
}
|
|
case <-done:
|
|
if genErr != nil && strings.Contains(genErr.Error(), "model requires more system memory") {
|
|
slog.Warn("model is too large for the target test system", "model", req.Model, "error", genErr)
|
|
return nil
|
|
}
|
|
if genErr != nil {
|
|
t.Fatalf("%s failed with %s request prompt %s", genErr, req.Model, summarizeMessages(req.Messages))
|
|
}
|
|
verify()
|
|
slog.Info("test pass", "model", req.Model, "messages", summarizeMessages(req.Messages), "contains", anyResp, "response", response)
|
|
case <-ctx.Done():
|
|
// On slow systems, we might timeout before some models finish rambling, so check what we have so far to see
|
|
// if it's considered a pass - the stallTimer will detect hangs, but we want to consider slow systems a pass
|
|
// if they are still generating valid responses
|
|
slog.Warn("outer test context done while waiting for chat")
|
|
verify()
|
|
}
|
|
return &api.Message{Role: role, Content: buf.String()}
|
|
}
|
|
|
|
func ChatRequests() ([]api.ChatRequest, [][]string) {
|
|
genReqs, results := GenerateRequests()
|
|
reqs := make([]api.ChatRequest, len(genReqs))
|
|
// think := api.ThinkValue{Value: "low"}
|
|
for i := range reqs {
|
|
reqs[i].Model = genReqs[i].Model
|
|
reqs[i].Stream = genReqs[i].Stream
|
|
reqs[i].KeepAlive = genReqs[i].KeepAlive
|
|
// reqs[i].Think = &think
|
|
reqs[i].Messages = []api.Message{
|
|
{
|
|
Role: "user",
|
|
Content: genReqs[i].Prompt,
|
|
},
|
|
}
|
|
}
|
|
return reqs, results
|
|
}
|
|
|
|
// skipIfMLXUnsupported converts an MLX runner startup error into a test skip
|
|
// when the fingerprint matches "the MLX stack is not wired up on this host",
|
|
// and only on platforms where MLX is not yet expected to work. On Apple
|
|
// Silicon (darwin/arm64) MLX must work, so the same errors there fall
|
|
// through and fail the test — we never want to mask a real Mac regression.
|
|
//
|
|
// The fingerprints are the exact wrapper strings produced by the MLX code
|
|
// paths (see x/mlxrunner/server.go, x/mlxrunner/mlx/dynamic.go,
|
|
// x/imagegen/mlx/mlx.go, x/imagegen/memory.go). Model-level errors
|
|
// (unsupported architecture, tensor mismatches, runtime failures) do not
|
|
// contain these strings, so this helper will not mask them.
|
|
func skipIfMLXUnsupported(t *testing.T, err error) {
|
|
t.Helper()
|
|
if err == nil {
|
|
return
|
|
}
|
|
if runtime.GOOS == "darwin" && runtime.GOARCH == "arm64" {
|
|
return
|
|
}
|
|
msg := err.Error()
|
|
for _, s := range []string{
|
|
"MLX not available:",
|
|
"failed to load MLX dynamic library",
|
|
"failed to load MLX function symbols",
|
|
"image generation on macOS requires Apple Silicon",
|
|
"image generation is not supported on",
|
|
} {
|
|
if strings.Contains(msg, s) {
|
|
t.Skipf("MLX not available on %s/%s: %v", runtime.GOOS, runtime.GOARCH, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
// skipIfModelTooLargeForVRAM skips the test when the model's on-disk size
|
|
// is larger than OLLAMA_MAX_VRAM by enough that even partial GPU offload
|
|
// won't help. Uses the same 0.75x gate as TestPerfModels (model_perf_test.go)
|
|
// so vision/audio tests stay runnable on systems where the model is slightly
|
|
// over VRAM and a portion legitimately spills to CPU. No-op when
|
|
// OLLAMA_MAX_VRAM is unset.
|
|
func skipIfModelTooLargeForVRAM(ctx context.Context, t *testing.T, client *api.Client, modelName string) {
|
|
t.Helper()
|
|
s := os.Getenv("OLLAMA_MAX_VRAM")
|
|
if s == "" {
|
|
return
|
|
}
|
|
maxVram, err := strconv.ParseUint(s, 10, 64)
|
|
if err != nil {
|
|
t.Fatalf("invalid OLLAMA_MAX_VRAM %v", err)
|
|
}
|
|
resp, err := client.List(ctx)
|
|
if err != nil {
|
|
t.Fatalf("list models failed %v", err)
|
|
}
|
|
for _, m := range resp.Models {
|
|
if m.Name == modelName && float32(m.Size)*0.75 > float32(maxVram) {
|
|
t.Skipf("model %s is too large %s for available VRAM %s", modelName, format.HumanBytes(m.Size), format.HumanBytes(int64(maxVram)))
|
|
}
|
|
}
|
|
}
|
|
|
|
func skipUnderMinVRAM(t *testing.T, gb uint64) {
|
|
// TODO use info API in the future
|
|
if s := os.Getenv("OLLAMA_MAX_VRAM"); s != "" {
|
|
maxVram, err := strconv.ParseUint(s, 10, 64)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
// Don't hammer on small VRAM cards...
|
|
if maxVram < gb*format.GibiByte {
|
|
t.Skip("skipping with small VRAM to avoid timeouts")
|
|
}
|
|
}
|
|
}
|
|
|
|
// Skip if the target model isn't X% GPU loaded to avoid excessive runtime
|
|
func skipIfNotGPULoaded(ctx context.Context, t *testing.T, client *api.Client, model string, minPercent int) {
|
|
gpuPercent := getGPUPercent(ctx, t, client, model)
|
|
if gpuPercent < minPercent {
|
|
// Unload the model if we're going to skip
|
|
client.Generate(ctx, &api.GenerateRequest{Model: model, KeepAlive: &api.Duration{Duration: 0}}, func(rsp api.GenerateResponse) error { return nil })
|
|
t.Skip(fmt.Sprintf("test requires minimum %d%% GPU load, but model %s only has %d%%", minPercent, model, gpuPercent))
|
|
}
|
|
}
|
|
|
|
func getGPUPercent(ctx context.Context, t *testing.T, client *api.Client, model string) int {
|
|
models, err := client.ListRunning(ctx)
|
|
if err != nil {
|
|
t.Fatalf("failed to list running models: %s", err)
|
|
}
|
|
loaded := []string{}
|
|
for _, m := range models.Models {
|
|
loaded = append(loaded, m.Name)
|
|
if strings.Contains(model, ":") {
|
|
if m.Name != model {
|
|
continue
|
|
}
|
|
} else if strings.Contains(m.Name, ":") {
|
|
if !strings.HasPrefix(m.Name, model+":") {
|
|
continue
|
|
}
|
|
}
|
|
gpuPercent := 0
|
|
switch {
|
|
case m.SizeVRAM == 0:
|
|
gpuPercent = 0
|
|
case m.SizeVRAM == m.Size:
|
|
gpuPercent = 100
|
|
case m.SizeVRAM > m.Size || m.Size == 0:
|
|
t.Logf("unexpected size detected: %d", m.SizeVRAM)
|
|
default:
|
|
sizeCPU := m.Size - m.SizeVRAM
|
|
cpuPercent := math.Round(float64(sizeCPU) / float64(m.Size) * 110)
|
|
gpuPercent = int(100 - cpuPercent)
|
|
}
|
|
return gpuPercent
|
|
}
|
|
t.Fatalf("model %s not loaded - actually loaded: %v", model, loaded)
|
|
return 0
|
|
}
|
|
|
|
func getTimeouts(t *testing.T) (soft time.Duration, hard time.Duration) {
|
|
deadline, hasDeadline := t.Deadline()
|
|
if !hasDeadline {
|
|
return 8 * time.Minute, 10 * time.Minute
|
|
} else if deadline.Compare(time.Now().Add(2*time.Minute)) <= 0 {
|
|
t.Skip("too little time")
|
|
return time.Duration(0), time.Duration(0)
|
|
}
|
|
return -time.Since(deadline.Add(-2 * time.Minute)), -time.Since(deadline.Add(-20 * time.Second))
|
|
}
|