imatrix-combine-only idea
This commit is contained in:
parent
5931c1f233
commit
ac5830d729
1 changed files with 7 additions and 2 deletions
|
@ -637,10 +637,15 @@ int main(int argc, char ** argv) {
|
||||||
LOG_INF("%s\n", common_params_get_system_info(params).c_str());
|
LOG_INF("%s\n", common_params_get_system_info(params).c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!compute_imatrix(ctx, params)) {
|
if (params.prompt.empty()) {
|
||||||
return 1;
|
LOG_INF("No prompt provided; combining precomputed matrices only.\n");
|
||||||
|
} else {
|
||||||
|
if (!compute_imatrix(ctx, params)) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
g_collector.save_imatrix();
|
g_collector.save_imatrix();
|
||||||
|
|
||||||
LOG("\n");
|
LOG("\n");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue