mirror of
https://github.com/ollama/ollama.git
synced 2026-04-28 03:39:48 +02:00
* Revert "vulkan: temporary cary of vulkan fixes (#12971)"
This reverts commit 3a9e8e9fd4.
* ggml update to b7087
* fix argsort on metal
* update to b7108
* fix bakllava regression
This model lacks the metadata for the projector type.
* update to b7209
* fix TopK perf
* only build arm code on arm
13 lines
336 B
Go
13 lines
336 B
Go
package llama
|
|
|
|
// #cgo CXXFLAGS: -std=c++17
|
|
// #cgo CPPFLAGS: -I${SRCDIR}/../include
|
|
// #cgo CPPFLAGS: -I${SRCDIR}/../../../ml/backend/ggml/ggml/include
|
|
// #cgo windows CPPFLAGS: -D_WIN32_WINNT=0x0602
|
|
import "C"
|
|
|
|
import (
|
|
_ "github.com/ollama/ollama/llama/llama.cpp/src/models"
|
|
_ "github.com/ollama/ollama/ml/backend/ggml/ggml/src"
|
|
)
|