Fix crash for 65B model with pre-allocated memory (#485)

pull/492/head master-6f1ee4b
Chris Kuehl 1 year ago committed by GitHub
parent 8520fc310e
commit 6f1ee4b640
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -239,7 +239,7 @@ static bool kv_cache_init(
const int n_mem = n_layer*n_ctx;
const int n_elements = n_embd*n_mem;
cache.buf.resize(2*n_elements*ggml_type_size(wtype) + 2u*MB);
cache.buf.resize(2u*n_elements*ggml_type_size(wtype) + 2u*MB);
struct ggml_init_params params;
params.mem_size = cache.buf.size();

Loading…
Cancel
Save