MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / gguf_set_val_i32

Function gguf_set_val_i32

external/ggml/src/gguf.cpp:1113–1117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1111}
1112
1113void gguf_set_val_i32(struct gguf_context * ctx, const char * key, int32_t val) {
1114 gguf_check_reserved_keys(key, val);
1115 gguf_remove_key(ctx, key);
1116 ctx->kv.emplace_back(key, val);
1117}
1118
1119void gguf_set_val_f32(struct gguf_context * ctx, const char * key, float val) {
1120 gguf_check_reserved_keys(key, val);

Callers 1

gguf_set_kvFunction · 0.85

Calls 2

gguf_check_reserved_keysFunction · 0.85
gguf_remove_keyFunction · 0.85

Tested by

no test coverage detected