mirror of
https://github.com/ollama/ollama.git
synced 2026-09-19 11:57:56 -04:00
The MLX runner is the only Go inference runner left and is no longer experimental, so its packages leave x/. The bindings become a top-level mlx package beside the carried patches in mlx/compat, mirroring how llama/ holds the llama.cpp integration, and the runner becomes mlxrunner with the architectures nested under the package they implement. Subpackages move with their parent unless listed. x/mlxrunner/mlx mlx x/internal/mlxthread mlx/mlxthread x/internal/mlxthreadtest mlx/mlxthread/mlxthreadtest x/internal/mlxtest mlx/mlxtest x/quant mlx/quant mlx/compat/*.patch mlx/compat/mlx-c (MLX patches go in mlx/compat/mlx) x/mlxrunner mlxrunner x/models/nn mlxrunner/nn x/models/<arch> mlxrunner/model/<arch> x/mlxrunner/imports.go mlxrunner/model/architectures (new package) x/create create x/safetensors fs/safetensors x/tokenizer mlxrunner/tokenizer Every package keeps its name, so the Go changes are the import path rewrites the moves force, and the CMake, Dockerfile, CI cache keys, drift check and Darwin payload script follow the new paths. Four edits are not paths: the runner's blank architecture imports become the package mlxrunner/model/architectures, so the list to extend for a new model sits beside the architecture directories; a depguard rule keeps the two test harnesses out of non-test code, as the x/internal placement used to; the CI change filter's two entries for the long-deleted x/imagegen/mlx now name the bindings' CMake project and the carried patches, so a change to either builds the payload; and the tokenizer parity test reads its fixtures from its own testdata instead of walking out of x/. x/server and x/imagegen/manifest stay for the next two commits.
54 lines
1.1 KiB
Go
54 lines
1.1 KiB
Go
package create
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"sync"
|
|
"sync/atomic"
|
|
|
|
"github.com/ollama/ollama/mlx"
|
|
"github.com/ollama/ollama/mlx/mlxthread"
|
|
)
|
|
|
|
var (
|
|
createMLXThread = sync.OnceValues(func() (*mlxthread.Thread, error) {
|
|
return mlxthread.Start("mlx-create", func() error {
|
|
if err := mlx.CheckInit(); err != nil {
|
|
return err
|
|
}
|
|
if mlx.GPUIsAvailable() {
|
|
mlx.SetDefaultDeviceGPU()
|
|
}
|
|
return nil
|
|
})
|
|
})
|
|
mlxThreadStarted atomic.Bool
|
|
)
|
|
|
|
// runOnMLXThread runs f on the MLX thread and returns its error. The thread is
|
|
// started (and MLX initialized) on first use.
|
|
func runOnMLXThread(ctx context.Context, f func() error) error {
|
|
if err := checkContext(ctx); err != nil {
|
|
return err
|
|
}
|
|
|
|
thread, err := createMLXThread()
|
|
if err != nil {
|
|
return fmt.Errorf("MLX init failed: %w", err)
|
|
}
|
|
mlxThreadStarted.Store(true)
|
|
|
|
return thread.Do(ctx, f)
|
|
}
|
|
|
|
// releaseMLXCache releases the MLX buffer cache. It is a no-op if no MLX work has run.
|
|
func releaseMLXCache() {
|
|
if !mlxThreadStarted.Load() {
|
|
return
|
|
}
|
|
_ = runOnMLXThread(context.Background(), func() error {
|
|
mlx.ClearCache()
|
|
return nil
|
|
})
|
|
}
|