[PR #7913] [MERGED] next ollama runner #17826

Closed
opened 2026-04-16 06:15:24 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/7913
Author: @mxyng
Created: 12/3/2024
Status: Merged
Merged: 2/14/2025
Merged by: @mxyng

Base: mainHead: mxyng/next


📝 Commits (8)

📊 Changes

57 files changed (+475426 additions, -493 deletions)

View changed files

cache/cache.go (+63 -0)
📝 convert/convert.go (+16 -16)
📝 convert/convert_bert.go (+5 -5)
📝 convert/convert_commandr.go (+5 -5)
📝 convert/convert_gemma.go (+5 -5)
📝 convert/convert_gemma2.go (+2 -4)
📝 convert/convert_gemma2_adapter.go (+5 -5)
📝 convert/convert_llama.go (+6 -6)
📝 convert/convert_llama_adapter.go (+5 -5)
📝 convert/convert_mixtral.go (+5 -5)
📝 convert/convert_phi3.go (+7 -7)
📝 convert/convert_qwen2.go (+5 -5)
📝 convert/convert_test.go (+6 -6)
📝 fs/ggml/ggml.go (+123 -109)
fs/ggml/ggml_test.go (+159 -0)
📝 fs/ggml/gguf.go (+6 -7)
📝 fs/ggml/type.go (+3 -3)
📝 fs/util/bufioutil/buffer_seeker.go (+0 -0)
📝 fs/util/bufioutil/buffer_seeker_test.go (+0 -0)
llm/ggla.go (+0 -149)

...and 37 more files

📄 Description

implement llama and mllama model architectures in go using ggml (through cgo)


🔄 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/7913 **Author:** [@mxyng](https://github.com/mxyng) **Created:** 12/3/2024 **Status:** ✅ Merged **Merged:** 2/14/2025 **Merged by:** [@mxyng](https://github.com/mxyng) **Base:** `main` ← **Head:** `mxyng/next` --- ### 📝 Commits (8) - [`bb18323`](https://github.com/ollama/ollama/commit/bb18323784519f8b1a92b4d73b0fe8d6b3a79ea1) next - [`624bfb0`](https://github.com/ollama/ollama/commit/624bfb0b1105e5ad305a2886ac35c219c1f46645) fix linter - [`109ad1d`](https://github.com/ollama/ollama/commit/109ad1da0f946244e9bb78038db9966f5bc59deb) refactor prcess text tests - [`78144e4`](https://github.com/ollama/ollama/commit/78144e4686ec2a78e9a59f97e1cd722a668290e3) model: benchmark bpe split - [`4a5d19e`](https://github.com/ollama/ollama/commit/4a5d19e38e9ad9ddb96c4b9db7cdfe7c78efb1b4) remove unused file - [`3c65319`](https://github.com/ollama/ollama/commit/3c653195f4838b83f938faa7c9b68306a9a00a0c) ml: update Dump to handle precision - [`3241b45`](https://github.com/ollama/ollama/commit/3241b457904a91c709b4c77075a50917fab43aaa) add test - [`a3e0df1`](https://github.com/ollama/ollama/commit/a3e0df1a5dd541c2935c458b44852b27e8a7db58) revert GroupLayers ### 📊 Changes **57 files changed** (+475426 additions, -493 deletions) <details> <summary>View changed files</summary> ➕ `cache/cache.go` (+63 -0) 📝 `convert/convert.go` (+16 -16) 📝 `convert/convert_bert.go` (+5 -5) 📝 `convert/convert_commandr.go` (+5 -5) 📝 `convert/convert_gemma.go` (+5 -5) 📝 `convert/convert_gemma2.go` (+2 -4) 📝 `convert/convert_gemma2_adapter.go` (+5 -5) 📝 `convert/convert_llama.go` (+6 -6) 📝 `convert/convert_llama_adapter.go` (+5 -5) 📝 `convert/convert_mixtral.go` (+5 -5) 📝 `convert/convert_phi3.go` (+7 -7) 📝 `convert/convert_qwen2.go` (+5 -5) 📝 `convert/convert_test.go` (+6 -6) 📝 `fs/ggml/ggml.go` (+123 -109) ➕ `fs/ggml/ggml_test.go` (+159 -0) 📝 `fs/ggml/gguf.go` (+6 -7) 📝 `fs/ggml/type.go` (+3 -3) 📝 `fs/util/bufioutil/buffer_seeker.go` (+0 -0) 📝 `fs/util/bufioutil/buffer_seeker_test.go` (+0 -0) ➖ `llm/ggla.go` (+0 -149) _...and 37 more files_ </details> ### 📄 Description implement llama and mllama model architectures in go using ggml (through cgo) --- <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-16 06:15:24 -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#17826