Refactor parameter names

This commit is contained in:
Ed Addario 2026-01-07 18:24:47 +00:00
parent 93c77f7dac
commit 55f6a3c579
No known key found for this signature in database
GPG Key ID: E7875815A3230993
1 changed files with 3 additions and 3 deletions

View File

@ -395,9 +395,9 @@ extern "C" {
void * prune_layers; // pointer to vector containing layer indices to prune
float target_bpw; // target bits per weight (bpw)
int64_t target_size; // target file size in bytes
bool keep_bpw_state; // keep bpw state file
void * bpw_state; // pointer to bpw state file
bool no_importance; // allocate target bpw budget equitably across all tensors
bool save_state; // keep bpw state file
void * state_file; // pointer to bpw state file
bool ignore_tensor_importance; // allocate target bpw budget equitably across all tensors
} llama_model_quantize_params;
typedef struct llama_logit_bias {