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

Function gguf_set_val_i16

external/ggml/src/gguf.cpp:1101–1105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1099}
1100
1101void gguf_set_val_i16(struct gguf_context * ctx, const char * key, int16_t val) {
1102 gguf_check_reserved_keys(key, val);
1103 gguf_remove_key(ctx, key);
1104 ctx->kv.emplace_back(key, val);
1105}
1106
1107void gguf_set_val_u32(struct gguf_context * ctx, const char * key, uint32_t val) {
1108 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