[PR #10117] [CLOSED] ml: add arange #23688

Closed
opened 2026-04-19 17:09:07 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/10117
Author: @mxyng
Created: 4/3/2025
Status: Closed

Base: mainHead: mxyng/arange


📝 Commits (10+)

📊 Changes

29 files changed (+1153 additions, -370 deletions)

View changed files

📝 convert/convert.go (+3 -1)
convert/convert_mistral.go (+190 -0)
📝 convert/reader.go (+1 -4)
📝 fs/ggml/ggml.go (+5 -2)
📝 kvcache/causal_test.go (+29 -8)
📝 llama/llama.cpp/src/llama-arch.cpp (+17 -0)
📝 llama/llama.cpp/src/llama-arch.h (+1 -0)
📝 llama/llama.cpp/src/llama-model.cpp (+3 -0)
📝 llama/llama.cpp/src/llama-quant.cpp (+2 -7)
📝 llama/patches/0021-add-model-quantizations.patch (+81 -21)
llama/patches/0022-metal-add-op_neg.patch (+75 -0)
📝 ml/backend.go (+10 -1)
📝 ml/backend/ggml/ggml.go (+82 -0)
📝 ml/backend/ggml/ggml/src/ggml-metal/ggml-metal-embed.metal (+7 -0)
📝 ml/backend/ggml/ggml/src/ggml-metal/ggml-metal.m (+15 -0)
📝 ml/backend/ggml/ggml/src/ggml-metal/ggml-metal.metal (+7 -0)
📝 model/models/gemma3/model_text.go (+11 -11)
📝 model/models/gemma3/model_vision.go (+1 -10)
model/models/mistral3/imageproc.go (+56 -0)
model/models/mistral3/model.go (+188 -0)

...and 9 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/10117 **Author:** [@mxyng](https://github.com/mxyng) **Created:** 4/3/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `mxyng/arange` --- ### 📝 Commits (10+) - [`c24e886`](https://github.com/ollama/ollama/commit/c24e8860c11b09ff355ae4134ae5fc724788a811) model: support for mistral-small in the ollama runner - [`a75703b`](https://github.com/ollama/ollama/commit/a75703b2cc196e97b535e5d66ff635ab5a726582) wip - [`7e3c62f`](https://github.com/ollama/ollama/commit/7e3c62f388f1e5c5fbb45c04b07949aff1065f85) wip - [`e65cf9d`](https://github.com/ollama/ollama/commit/e65cf9dc94d1b6bab780740e97e38bf955ae43f5) minimal convert - [`edac053`](https://github.com/ollama/ollama/commit/edac05387fdc2e57d22d4bc296c19663e4f25a2d) convert: mistral-3.1-2503 text component - [`9a12fd1`](https://github.com/ollama/ollama/commit/9a12fd106779aec2f81310eefee7cb4fc85a2656) wip: test fixes - [`3b4ad00`](https://github.com/ollama/ollama/commit/3b4ad00a4ba6d58c5789a51c438068f20ebc2adb) mistral3 arch - [`9b57238`](https://github.com/ollama/ollama/commit/9b572388343888150a87d60078ee15be0797965c) ... - [`ecc0ef4`](https://github.com/ollama/ollama/commit/ecc0ef468f6a26956c4690c73db881b184b7eb25) split text model to its own file - [`6f34126`](https://github.com/ollama/ollama/commit/6f34126dcc67ad8a1419f97c46b3b75fee506b01) image processing ### 📊 Changes **29 files changed** (+1153 additions, -370 deletions) <details> <summary>View changed files</summary> 📝 `convert/convert.go` (+3 -1) ➕ `convert/convert_mistral.go` (+190 -0) 📝 `convert/reader.go` (+1 -4) 📝 `fs/ggml/ggml.go` (+5 -2) 📝 `kvcache/causal_test.go` (+29 -8) 📝 `llama/llama.cpp/src/llama-arch.cpp` (+17 -0) 📝 `llama/llama.cpp/src/llama-arch.h` (+1 -0) 📝 `llama/llama.cpp/src/llama-model.cpp` (+3 -0) 📝 `llama/llama.cpp/src/llama-quant.cpp` (+2 -7) 📝 `llama/patches/0021-add-model-quantizations.patch` (+81 -21) ➕ `llama/patches/0022-metal-add-op_neg.patch` (+75 -0) 📝 `ml/backend.go` (+10 -1) 📝 `ml/backend/ggml/ggml.go` (+82 -0) 📝 `ml/backend/ggml/ggml/src/ggml-metal/ggml-metal-embed.metal` (+7 -0) 📝 `ml/backend/ggml/ggml/src/ggml-metal/ggml-metal.m` (+15 -0) 📝 `ml/backend/ggml/ggml/src/ggml-metal/ggml-metal.metal` (+7 -0) 📝 `model/models/gemma3/model_text.go` (+11 -11) 📝 `model/models/gemma3/model_vision.go` (+1 -10) ➕ `model/models/mistral3/imageproc.go` (+56 -0) ➕ `model/models/mistral3/model.go` (+188 -0) _...and 9 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-19 17:09:07 -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#23688