mirror of
https://github.com/ollama/ollama.git
synced 2026-03-11 17:34:04 -05:00
* prefer rocm v6 on windows Avoid building with v7 - more changes are needed * MLX: add header vendoring and remove go build tag This switches to using a vendoring approach for the mlx-c headers so that Go can build without requiring a cmake first. This enables building the new MLX based code by default. Every time cmake runs, the headers are refreshed, so we can easily keep them in sync when we bump mlx versions. Basic Windows and Linux support are verified. * ci: harden for flaky choco repo servers CI sometimes fails due to choco not actually installing cache. Since it just speeds up the build, we can proceed without. * review comments
11 lines
317 B
Go
11 lines
317 B
Go
package mlxrunner
|
|
|
|
import (
|
|
_ "github.com/ollama/ollama/x/models/gemma3"
|
|
_ "github.com/ollama/ollama/x/models/glm4_moe_lite"
|
|
_ "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"
|
|
)
|