[PR #65] [MERGED] call llama.cpp directly from go #9959

Closed
opened 2026-04-12 22:48:47 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/65
Author: @mxyng
Created: 7/10/2023
Status: Merged
Merged: 7/11/2023
Merged by: @mxyng

Base: mainHead: bindings


📝 Commits (2)

📊 Changes

29 files changed (+35552 additions, -1292 deletions)

View changed files

📝 .gitignore (+0 -3)
Makefile (+0 -19)
📝 README.md (+1 -1)
📝 api/types.go (+66 -81)
📝 go.mod (+1 -0)
📝 go.sum (+2 -0)
llama/.gitignore (+0 -1)
llama/CMakeLists.txt (+0 -23)
llama/binding/binding.cpp (+0 -705)
llama/binding/binding.h (+0 -69)
llama/ggml-cuda.cu (+3414 -0)
llama/ggml-cuda.h (+62 -0)
llama/ggml-metal.h (+97 -0)
llama/ggml-metal.m (+1014 -0)
llama/ggml-metal.metal (+1855 -0)
llama/ggml.c (+18380 -0)
llama/ggml.h (+1575 -0)
llama/k_quants.c (+3926 -0)
llama/k_quants.h (+183 -0)
llama/llama-util.h (+530 -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/65 **Author:** [@mxyng](https://github.com/mxyng) **Created:** 7/10/2023 **Status:** ✅ Merged **Merged:** 7/11/2023 **Merged by:** [@mxyng](https://github.com/mxyng) **Base:** `main` ← **Head:** `bindings` --- ### 📝 Commits (2) - [`fd4792e`](https://github.com/ollama/ollama/commit/fd4792ec56965a9c8564c3d88212c29a0378583d) call llama.cpp directly from go - [`442dec1`](https://github.com/ollama/ollama/commit/442dec1c6fac08b185403f42d1019fd2dcff2225) vendor llama.cpp ### 📊 Changes **29 files changed** (+35552 additions, -1292 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+0 -3) ➖ `Makefile` (+0 -19) 📝 `README.md` (+1 -1) 📝 `api/types.go` (+66 -81) 📝 `go.mod` (+1 -0) 📝 `go.sum` (+2 -0) ➖ `llama/.gitignore` (+0 -1) ➖ `llama/CMakeLists.txt` (+0 -23) ➖ `llama/binding/binding.cpp` (+0 -705) ➖ `llama/binding/binding.h` (+0 -69) ➕ `llama/ggml-cuda.cu` (+3414 -0) ➕ `llama/ggml-cuda.h` (+62 -0) ➕ `llama/ggml-metal.h` (+97 -0) ➕ `llama/ggml-metal.m` (+1014 -0) ➕ `llama/ggml-metal.metal` (+1855 -0) ➕ `llama/ggml.c` (+18380 -0) ➕ `llama/ggml.h` (+1575 -0) ➕ `llama/k_quants.c` (+3926 -0) ➕ `llama/k_quants.h` (+183 -0) ➕ `llama/llama-util.h` (+530 -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-12 22:48:47 -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#9959