[PR #12253] [CLOSED] Vendor update to 00681dfc16ba4cebb9c7fbd2cf2656e06a0692a4 #13752

Closed
opened 2026-04-13 00:35:17 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/12253
Author: @inforithmics
Created: 9/11/2025
Status: Closed

Base: mainHead: VendorUpdate


📝 Commits (10+)

  • a086e5d Vendored to 00681dfc16ba4cebb9c7fbd2cf2656e06a0692a4 and whitespace improvement
  • 61ddc62 Update 0015-ggml-Export-GPU-UUIDs.patch
  • a54d73d revert changes
  • 813b9dd Update 0018-BF16-macos-version-guard
  • 59351f4 Update 0022-ggml-No-Alloc-mode
  • eeddcd1 Update llama.cpp
  • 8fb5163 fix solar patch
  • b5554ed Update llama.cpp
  • 6834418 Update solar patch
  • be81989 Update llama.cpp

📊 Changes

153 files changed (+12567 additions, -7589 deletions)

View changed files

📝 Makefile.sync (+1 -1)
📝 llama/build-info.cpp (+1 -1)
📝 llama/llama.cpp/common/common.cpp (+64 -18)
📝 llama/llama.cpp/common/common.h (+51 -13)
📝 llama/llama.cpp/common/json-schema-to-grammar.cpp (+21 -1)
📝 llama/llama.cpp/common/log.cpp (+53 -2)
📝 llama/llama.cpp/common/log.h (+10 -4)
📝 llama/llama.cpp/common/sampling.cpp (+23 -2)
📝 llama/llama.cpp/common/sampling.h (+3 -1)
📝 llama/llama.cpp/include/llama.h (+58 -117)
📝 llama/llama.cpp/src/llama-adapter.cpp (+101 -4)
📝 llama/llama.cpp/src/llama-adapter.h (+6 -0)
📝 llama/llama.cpp/src/llama-arch.cpp (+89 -2)
📝 llama/llama.cpp/src/llama-arch.h (+8 -0)
📝 llama/llama.cpp/src/llama-batch.cpp (+1 -1)
📝 llama/llama.cpp/src/llama-chat.cpp (+13 -2)
📝 llama/llama.cpp/src/llama-chat.h (+1 -0)
📝 llama/llama.cpp/src/llama-context.cpp (+129 -260)
📝 llama/llama.cpp/src/llama-context.h (+9 -17)
📝 llama/llama.cpp/src/llama-cparams.h (+0 -1)

...and 80 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/12253 **Author:** [@inforithmics](https://github.com/inforithmics) **Created:** 9/11/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `VendorUpdate` --- ### 📝 Commits (10+) - [`a086e5d`](https://github.com/ollama/ollama/commit/a086e5d60ae83d1322ba3586d6c7ee4086abb5d5) Vendored to 00681dfc16ba4cebb9c7fbd2cf2656e06a0692a4 and whitespace improvement - [`61ddc62`](https://github.com/ollama/ollama/commit/61ddc62f0c882acb93da5992c3591de8e3dfe803) Update 0015-ggml-Export-GPU-UUIDs.patch - [`a54d73d`](https://github.com/ollama/ollama/commit/a54d73dd3012bb4fc125ce4af9c7c1673fe7295e) revert changes - [`813b9dd`](https://github.com/ollama/ollama/commit/813b9dde208501b4c800a89cdc4bb72f066ad20c) Update 0018-BF16-macos-version-guard - [`59351f4`](https://github.com/ollama/ollama/commit/59351f4147369909ae4f413bac401e29ea3c087b) Update 0022-ggml-No-Alloc-mode - [`eeddcd1`](https://github.com/ollama/ollama/commit/eeddcd19203a9bd43066d5693b29017a0d85a7de) Update llama.cpp - [`8fb5163`](https://github.com/ollama/ollama/commit/8fb5163e70321446a796421dd2a4b50c393dc968) fix solar patch - [`b5554ed`](https://github.com/ollama/ollama/commit/b5554ed48ee4f1de84ba5eb4f549e5e21d6f9090) Update llama.cpp - [`6834418`](https://github.com/ollama/ollama/commit/6834418efe3372f33943af698b96d4cb6554c02a) Update solar patch - [`be81989`](https://github.com/ollama/ollama/commit/be819896e652caa91faa862266e3c51e72535c51) Update llama.cpp ### 📊 Changes **153 files changed** (+12567 additions, -7589 deletions) <details> <summary>View changed files</summary> 📝 `Makefile.sync` (+1 -1) 📝 `llama/build-info.cpp` (+1 -1) 📝 `llama/llama.cpp/common/common.cpp` (+64 -18) 📝 `llama/llama.cpp/common/common.h` (+51 -13) 📝 `llama/llama.cpp/common/json-schema-to-grammar.cpp` (+21 -1) 📝 `llama/llama.cpp/common/log.cpp` (+53 -2) 📝 `llama/llama.cpp/common/log.h` (+10 -4) 📝 `llama/llama.cpp/common/sampling.cpp` (+23 -2) 📝 `llama/llama.cpp/common/sampling.h` (+3 -1) 📝 `llama/llama.cpp/include/llama.h` (+58 -117) 📝 `llama/llama.cpp/src/llama-adapter.cpp` (+101 -4) 📝 `llama/llama.cpp/src/llama-adapter.h` (+6 -0) 📝 `llama/llama.cpp/src/llama-arch.cpp` (+89 -2) 📝 `llama/llama.cpp/src/llama-arch.h` (+8 -0) 📝 `llama/llama.cpp/src/llama-batch.cpp` (+1 -1) 📝 `llama/llama.cpp/src/llama-chat.cpp` (+13 -2) 📝 `llama/llama.cpp/src/llama-chat.h` (+1 -0) 📝 `llama/llama.cpp/src/llama-context.cpp` (+129 -260) 📝 `llama/llama.cpp/src/llama-context.h` (+9 -17) 📝 `llama/llama.cpp/src/llama-cparams.h` (+0 -1) _...and 80 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:35:17 -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#13752