mirror of
https://github.com/ollama/ollama.git
synced 2026-09-21 13:38:14 -05:00
* glimmer: implement the Muse Glimmer model MLX model (language + vision encoder) with DFlash draft wiring, llama-server DFlash support and rope-interleave fix, renderer and parser, tokenizer fixes, and the import quantization policy. * mlxrunner: report committed prefill chunks after the sweep and eval The drafter's flush evaluates its report, and an eval that runs while the chunk's construction handles are still live cannot free any intermediate buffer. On media chunks that retention keeps the whole vision tower resident and grinds the Metal allocator at its limit until the request dies. Pin the report's inputs across the sweep, report after the chunk materializes, and release media items after the report so a drafter can still capture the rows its deferred flush embeds. * ci: retry CUDA pre-release download
16 lines
553 B
Go
16 lines
553 B
Go
package mlxrunner
|
|
|
|
import (
|
|
_ "github.com/ollama/ollama/x/models/cohere2_moe"
|
|
_ "github.com/ollama/ollama/x/models/dflash"
|
|
_ "github.com/ollama/ollama/x/models/gemma3"
|
|
_ "github.com/ollama/ollama/x/models/gemma4"
|
|
_ "github.com/ollama/ollama/x/models/glimmer"
|
|
_ "github.com/ollama/ollama/x/models/glm4_moe_lite"
|
|
_ "github.com/ollama/ollama/x/models/laguna"
|
|
_ "github.com/ollama/ollama/x/models/llama"
|
|
_ "github.com/ollama/ollama/x/models/qwen3"
|
|
_ "github.com/ollama/ollama/x/models/qwen3_5"
|
|
_ "github.com/ollama/ollama/x/models/qwen3_5_moe"
|
|
)
|