Skip to content

Commit

Permalink
[auto] Sync version 2305141231.0.0+llamacpp-release.master-601a033
Browse files Browse the repository at this point in the history
== Relevant log messages from source repo:

commit 601a033475645370483973817d987928ea95f36c
Author: Georgi Gerganov <ggerganov@gmail.com>
Date:   Sun May 14 10:20:19 2023 +0300

    ggml : add GGML_QNT_VERSION to track quantization format changes

    ggerganov/ggml#150 (comment)
  • Loading branch information
github-actions committed May 14, 2023
1 parent ebf05c4 commit e5a5b54
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ggml-sys-bleedingedge"
version = "2305131819.0.0+llamacpp-release.master-bda4d7c"
version = "2305141231.0.0+llamacpp-release.master-601a033"
description = "Bleeding edge low-level bindings to GGML. "
repository = "https://github.com/KerfuffleV2/ggml-sys-bleedingedge"
keywords = ["deep-learning", "machine-learning", "tensors", "ggml", "ml"]
Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2305131819.0.0+llamacpp-release.master-bda4d7c
2305141231.0.0+llamacpp-release.master-601a033
3 changes: 3 additions & 0 deletions ggml-src/ggml.h
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,9 @@
#define GGML_FILE_MAGIC 0x67676d6c // "ggml"
#define GGML_FILE_VERSION 1

#define GGML_QNT_VERSION 1 // bump this on quantization format changes
#define GGML_QNT_VERSION_FACTOR 1000 // do not change this

#define GGML_MAX_DIMS 4
#define GGML_MAX_NODES 4096
#define GGML_MAX_PARAMS 256
Expand Down
2 changes: 1 addition & 1 deletion ggml-tag-current.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
master-bda4d7c
master-601a033
2 changes: 1 addition & 1 deletion ggml-tag-previous.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
master-f048af0
master-bda4d7c
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ pub const GGMLSYS_VERSION: Option<&str> = option_env!("CARGO_PKG_VERSION");

pub const GGML_FILE_MAGIC: u32 = 1734831468;
pub const GGML_FILE_VERSION: u32 = 1;
pub const GGML_QNT_VERSION: u32 = 1;
pub const GGML_QNT_VERSION_FACTOR: u32 = 1000;
pub const GGML_MAX_DIMS: u32 = 4;
pub const GGML_MAX_NODES: u32 = 4096;
pub const GGML_MAX_PARAMS: u32 = 256;
Expand Down

0 comments on commit e5a5b54

Please sign in to comment.