llama_cpp 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1fe968c9231c20e614fafe89bc521c313ab68401fedd2d803743b18ccc234a28
4
- data.tar.gz: a4916ec0f52b3e131175141f30bd3a70f37859207e732948d2fe7baac98a4b0c
3
+ metadata.gz: f08992d10701b3ac0ab87c32d8a28d7f81101a4896e3300c461d7015f6486814
4
+ data.tar.gz: 38fd72fe9cdd596f7878ef902ddf8ec8e36954bbac50388fe8ef8437a93bfe29
5
5
  SHA512:
6
- metadata.gz: fa99138a7a591a7e602e6aa040ccec057dcad09e52c6646edd0def9c0e3ea1aee6796bc32fa05dc9c384af1b8c72a3f5c2077de918d2e0a229901c97732023c1
7
- data.tar.gz: 1e4399f4b75fcbe69da61ce23d2cf45594e5502e7d6ea6f9b7f0930ca155bcfb4481f81944496031e79c8ef0e48be20a6797d8f9b41967404e2a54330a93c261
6
+ metadata.gz: e3d024db508be6cbe7e644c4a9295da97742b45f921c9c5d64a7f4b4eb6be624e79f4c63d39c226566dbb9676215ae3b986828095a185cb2069547a12cf651a0
7
+ data.tar.gz: d884334f2d77a7204f0bc96c037fa86ee6fdf3f2879c5c5bd721be336dc743a0034733fc566c114bc6f22e620e5d79ccd4c67b6ded7d929d1949315b31445701
data/CHANGELOG.md CHANGED
@@ -1,21 +1,27 @@
1
- ## [Unreleased]
1
+ ## [[0.1.4](https://github.com/yoshoku/llama_cpp.rb/compare/v0.1.3...v0.1.4)] - 2023-06-03
2
+
3
+ - Bump bundled llama.cpp from master-66874d4 to master-ffb06a3.
4
+
5
+ ## [[0.1.3](https://github.com/yoshoku/llama_cpp.rb/compare/v0.1.2...v0.1.3)] - 2023-05-27
6
+
7
+ - Bump bundled llama.cpp from master-265db98 to master-66874d4.
2
8
 
3
9
  ## [[0.1.2](https://github.com/yoshoku/llama_cpp.rb/compare/v0.1.1...v0.1.2)] - 2023-05-22
4
10
 
5
11
  **Breaking Changes**
6
12
 
7
- - Bump bundled llama.cpp from master-6986c78 to master-265db98
8
- - bump LLAMA_FILE_VERSION to 3
13
+ - Bump bundled llama.cpp from master-6986c78 to master-265db98.
14
+ - bump LLAMA_FILE_VERSION to 3.
9
15
 
10
16
  ## [[0.1.1](https://github.com/yoshoku/llama_cpp.rb/compare/v0.1.0...v0.1.1)] - 2023-05-21
11
17
 
12
- - Add load_session_file method to Context
13
- - Add save_session_file method to Context
18
+ - Add load_session_file method to Context.
19
+ - Add save_session_file method to Context.
14
20
 
15
21
  **Breaking Changes**
16
22
 
17
- - Bump bundled llama.cpp from master-173d0e6 to master-6986c78
18
- - bump LLAMA_FILE_VERSION to 2
23
+ - Bump bundled llama.cpp from master-173d0e6 to master-6986c78.
24
+ - bump LLAMA_FILE_VERSION to 2.
19
25
 
20
26
  ## [[0.1.0](https://github.com/yoshoku/llama_cpp.rb/compare/v0.0.7...v0.1.0)] - 2023-05-20
21
27
 
@@ -5,8 +5,7 @@ require 'mkmf'
5
5
  abort 'libstdc++ is not found.' unless have_library('stdc++')
6
6
 
7
7
  $srcs = %w[ggml.c llama.cpp llama_cpp.cpp]
8
- $srcs << 'ggml-opencl.c' if with_config('clblast')
9
-
8
+ $srcs << 'ggml-opencl.cpp' if with_config('clblast')
10
9
  $CFLAGS << ' -w'
11
10
  $CXXFLAGS << ' -std=c++11'
12
11
  $INCFLAGS << ' -I$(srcdir)/src'