Remove unused n_parts parameter (#1509)

This commit is contained in:
Stephan Walter 2023-05-17 22:12:01 +00:00 committed by GitHub
parent c238b5873a
commit dc271c52ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 0 additions and 13 deletions

View file

@ -26,7 +26,6 @@ int main(int argc, char ** argv) {
auto lparams = llama_context_default_params();
lparams.n_ctx = params.n_ctx;
lparams.n_parts = params.n_parts;
lparams.seed = params.seed;
lparams.f16_kv = params.memory_f16;
lparams.use_mmap = params.use_mmap;