| 19902 | } |
| 19903 | |
| 19904 | uint32_t gguf_get_val_u32(const struct gguf_context * ctx, int key_id) { |
| 19905 | GGML_ASSERT(ctx->kv[key_id].type == GGUF_TYPE_UINT32); |
| 19906 | return ctx->kv[key_id].value.uint32; |
| 19907 | } |
| 19908 | |
| 19909 | int32_t gguf_get_val_i32(const struct gguf_context * ctx, int key_id) { |
| 19910 | GGML_ASSERT(ctx->kv[key_id].type == GGUF_TYPE_INT32); |
no outgoing calls
no test coverage detected