From e4c510441e678c31b0a0f9f4ac458fdfb83e8a23 Mon Sep 17 00:00:00 2001 From: marcus Date: Tue, 19 Dec 2023 15:20:28 -0800 Subject: [PATCH] changed to use `uint32_t` instead of `int` in `llama_n_ctx` --- llama.cpp | 2 +- llama.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/llama.cpp b/llama.cpp index c84292ca9..e2409475b 100644 --- a/llama.cpp +++ b/llama.cpp @@ -9532,7 +9532,7 @@ const llama_model * llama_get_model(const struct llama_context * ctx) { return &ctx->model; } -int llama_n_ctx(const struct llama_context * ctx) { +uint32_t llama_n_ctx(const struct llama_context * ctx) { return ctx->cparams.n_ctx; } diff --git a/llama.h b/llama.h index 9c9e9f970..d43cfc953 100644 --- a/llama.h +++ b/llama.h @@ -314,7 +314,7 @@ extern "C" { LLAMA_API const struct llama_model * llama_get_model(const struct llama_context * ctx); - LLAMA_API int llama_n_ctx (const struct llama_context * ctx); + LLAMA_API uint32_t llama_n_ctx (const struct llama_context * ctx); LLAMA_API uint32_t llama_n_batch (const struct llama_context * ctx); LLAMA_API enum llama_vocab_type llama_vocab_type(const struct llama_model * model);