[PR #10068] [CLOSED] Update ggml.go #39010

Closed
opened 2026-04-22 23:39:16 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/10068
Author: @RAPTOR1OUS
Created: 3/31/2025
Status: Closed

Base: mxyng/create-contextHead: patch-1


📝 Commits (10+)

  • d006e1e model: document high-level model interface (#9122)
  • 0667bad docs: fix incorrect shortcut key in windows.md (#9098)
  • faf67db cmd: fix progress bar flickering
  • 5930aae cmd: fix cursor flickering in progress bar
  • f9c7ead cmd: eliminate flickering with synchronized output
  • 3b4424f readme: add LLM Telegram Bot to community integrations (#9150)
  • 716e365 test: add test cases for HumanNumber (#9108)
  • 33ad61b Add OpenDeepResearcher-via-searxng to Community Integrations (#9138)
  • 7b5d916 ci: set owner/group in tarball
  • 08a299e cmake: avoid building intel backends on linux

📊 Changes

945 files changed (+688892 additions, -32697 deletions)

View changed files

📝 .dockerignore (+3 -1)
📝 .gitattributes (+24 -1)
📝 .github/ISSUE_TEMPLATE/10_bug_report.yml (+8 -0)
📝 .github/workflows/release.yaml (+353 -354)
📝 .github/workflows/test.yaml (+168 -248)
📝 .gitignore (+5 -4)
.gitmodules (+0 -4)
📝 .golangci.yaml (+15 -8)
.prettierrc.json (+0 -10)
CMakeLists.txt (+132 -0)
CMakePresets.json (+110 -0)
CONTRIBUTING.md (+88 -0)
📝 Dockerfile (+123 -136)
Makefile.sync (+60 -0)
📝 README.md (+250 -62)
SECURITY.md (+25 -0)
📝 api/client.go (+18 -14)
📝 api/client_test.go (+210 -3)
api/examples/README.md (+18 -0)
📝 api/examples/chat/main.go (+1 -1)

...and 80 more files

📄 Description

Other Tensor Methods.


🔄 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/10068 **Author:** [@RAPTOR1OUS](https://github.com/RAPTOR1OUS) **Created:** 3/31/2025 **Status:** ❌ Closed **Base:** `mxyng/create-context` ← **Head:** `patch-1` --- ### 📝 Commits (10+) - [`d006e1e`](https://github.com/ollama/ollama/commit/d006e1e09be4d3da3fb94ab683aa18822af4b956) model: document high-level model interface (#9122) - [`0667bad`](https://github.com/ollama/ollama/commit/0667baddc658d3f556a369701819e7695477f59a) docs: fix incorrect shortcut key in windows.md (#9098) - [`faf67db`](https://github.com/ollama/ollama/commit/faf67db089c6b2168fb1bab99b4385d374c64efe) cmd: fix progress bar flickering - [`5930aae`](https://github.com/ollama/ollama/commit/5930aaeb1ae420eb9a0963247ff4463d1eadce5a) cmd: fix cursor flickering in progress bar - [`f9c7ead`](https://github.com/ollama/ollama/commit/f9c7ead1601f286d619e4d6988cd2da2c86474ce) cmd: eliminate flickering with synchronized output - [`3b4424f`](https://github.com/ollama/ollama/commit/3b4424ff98a881597ec5b65869035d98ba222e11) readme: add LLM Telegram Bot to community integrations (#9150) - [`716e365`](https://github.com/ollama/ollama/commit/716e36561530ce5d3f9fdc75d13cb95b37c87088) test: add test cases for HumanNumber (#9108) - [`33ad61b`](https://github.com/ollama/ollama/commit/33ad61b112a8eb6b9f4ea321bcf82f06214c9a59) Add OpenDeepResearcher-via-searxng to Community Integrations (#9138) - [`7b5d916`](https://github.com/ollama/ollama/commit/7b5d916a9a85f37c199bf765ef85625945469165) ci: set owner/group in tarball - [`08a299e`](https://github.com/ollama/ollama/commit/08a299e1d0636056b09d669f9aa347139cde6ec0) cmake: avoid building intel backends on linux ### 📊 Changes **945 files changed** (+688892 additions, -32697 deletions) <details> <summary>View changed files</summary> 📝 `.dockerignore` (+3 -1) 📝 `.gitattributes` (+24 -1) 📝 `.github/ISSUE_TEMPLATE/10_bug_report.yml` (+8 -0) 📝 `.github/workflows/release.yaml` (+353 -354) 📝 `.github/workflows/test.yaml` (+168 -248) 📝 `.gitignore` (+5 -4) ➖ `.gitmodules` (+0 -4) 📝 `.golangci.yaml` (+15 -8) ➖ `.prettierrc.json` (+0 -10) ➕ `CMakeLists.txt` (+132 -0) ➕ `CMakePresets.json` (+110 -0) ➕ `CONTRIBUTING.md` (+88 -0) 📝 `Dockerfile` (+123 -136) ➕ `Makefile.sync` (+60 -0) 📝 `README.md` (+250 -62) ➕ `SECURITY.md` (+25 -0) 📝 `api/client.go` (+18 -14) 📝 `api/client_test.go` (+210 -3) ➕ `api/examples/README.md` (+18 -0) 📝 `api/examples/chat/main.go` (+1 -1) _...and 80 more files_ </details> ### 📄 Description Other Tensor Methods. --- <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-22 23:39:16 -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#39010