Skip to content

Tags: suisui-koubou/llama.cpp

Tags

master-2663d2c

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Windows fixes (ggml-org#890)

Mostly for msys2 and mingw64 builds, which are different from each other
and different from standard Visual Studio builds.  Isn't Windows fun?

- Define _GNU_SOURCE in more files (it's already used in ggml.c for
  Linux's sake).

- Don't use PrefetchVirtualMemory if not building for Windows 8 or later
  (mingw64 doesn't by default).  But warn the user about this situation
  since it's probably not intended.

- Check for NOMINMAX already being defined, which it is on mingw64.

- Actually use the `increment` variable (bug in my `pizza` PR).

- Suppress unused variable warnings in the fake pthread_create and
  pthread_join implementations for Windows.

- (not Windows-related) Remove mention of `asprintf` from comment;
  `asprintf` is no longer used.

Fixes ggml-org#871.

master-8b67998

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix whitespace, add .editorconfig, add GitHub workflow (ggml-org#883)

master-3e6e70d

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add enum llama_ftype, sync ggml_type to model files (ggml-org#709)

master-d9a239c

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Simplify to include lower-case windows.h always, fix compile on mingw…

…32 (ggml-org#747)

master-c3ac702

Verified

This commit was signed with the committer’s verified signature.
ggerganov Georgi Gerganov
ggml : add ggml_cont() + optimize ggml_cpy() for contiguous dst

master-684da25

Verified

This commit was signed with the committer’s verified signature.
ggerganov Georgi Gerganov
ggml : fix quantize_row_q4_1() ARM_NEON (close ggml-org#876)

master-461ba9e

Verified

This commit was signed with the committer’s verified signature.
ggerganov Georgi Gerganov
ggml : fix WASM build

master-180b693

Print model version.

Also improve model type printing, and fix indentation of an unrelated
switch statement.

master-f2d1c47

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
cmake should link openblas properly with -lopenblas like how it's don…

…e in the makefile (ggml-org#839)

master-aaf3b23

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix for windows utf-8 input (ggml-org#840)

Use UTF-16 as input on Windows, since UTF-8 does not work and reads multibyte characters as zeros