[PR #14101] new mlxrunner #14512

Open
opened 2026-04-13 00:56:22 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/14101
Author: @mxyng
Created: 2/5/2026
Status: 🔄 Open

Base: mainHead: mxyng/mlx


📝 Commits (4)

📊 Changes

45 files changed (+15128 additions, -18 deletions)

View changed files

📝 go.mod (+4 -1)
📝 go.sum (+30 -1)
📝 runner/runner.go (+3 -0)
📝 server/sched.go (+91 -16)
📝 tokenizer/tokenizer.go (+293 -0)
types/model/file.go (+309 -0)
types/model/file_test.go (+90 -0)
types/model/files.go (+33 -0)
📝 types/model/name.go (+11 -0)
x/mlxrunner/cache.go (+94 -0)
x/mlxrunner/cache/cache.go (+196 -0)
x/mlxrunner/client.go (+174 -0)
x/mlxrunner/mlx/.gitignore (+3 -0)
x/mlxrunner/mlx/CMakeLists.txt (+26 -0)
x/mlxrunner/mlx/act.go (+21 -0)
x/mlxrunner/mlx/array.go (+264 -0)
x/mlxrunner/mlx/array_test.go (+43 -0)
x/mlxrunner/mlx/dtype.go (+94 -0)
x/mlxrunner/mlx/dynamic.c (+34 -0)
x/mlxrunner/mlx/dynamic.go (+63 -0)

...and 25 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ollama/ollama/pull/14101 **Author:** [@mxyng](https://github.com/mxyng) **Created:** 2/5/2026 **Status:** 🔄 Open **Base:** `main` ← **Head:** `mxyng/mlx` --- ### 📝 Commits (4) - [`5da1483`](https://github.com/ollama/ollama/commit/5da14833e58316fd9ab487e08e87ac28ef5192f9) draft: model manifest file interface - [`5287acd`](https://github.com/ollama/ollama/commit/5287acdb21b85ac8c5c5c62d847db261153f5ae2) mlxrunner - [`e19fbe7`](https://github.com/ollama/ollama/commit/e19fbe736945119867c5f85805e3adb961a59fc6) s/tensor/array/g - [`1ec216f`](https://github.com/ollama/ollama/commit/1ec216fe0a4dbb2aaa41a12b011b1050195a15db) append vector ### 📊 Changes **45 files changed** (+15128 additions, -18 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+4 -1) 📝 `go.sum` (+30 -1) 📝 `runner/runner.go` (+3 -0) 📝 `server/sched.go` (+91 -16) 📝 `tokenizer/tokenizer.go` (+293 -0) ➕ `types/model/file.go` (+309 -0) ➕ `types/model/file_test.go` (+90 -0) ➕ `types/model/files.go` (+33 -0) 📝 `types/model/name.go` (+11 -0) ➕ `x/mlxrunner/cache.go` (+94 -0) ➕ `x/mlxrunner/cache/cache.go` (+196 -0) ➕ `x/mlxrunner/client.go` (+174 -0) ➕ `x/mlxrunner/mlx/.gitignore` (+3 -0) ➕ `x/mlxrunner/mlx/CMakeLists.txt` (+26 -0) ➕ `x/mlxrunner/mlx/act.go` (+21 -0) ➕ `x/mlxrunner/mlx/array.go` (+264 -0) ➕ `x/mlxrunner/mlx/array_test.go` (+43 -0) ➕ `x/mlxrunner/mlx/dtype.go` (+94 -0) ➕ `x/mlxrunner/mlx/dynamic.c` (+34 -0) ➕ `x/mlxrunner/mlx/dynamic.go` (+63 -0) _...and 25 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-13 00:56:22 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/ollama#14512