mirror of
https://github.com/ikawrakow/ik_llama.cpp.git
synced 2026-04-29 02:41:47 +00:00
Fused delta net 3 (#1333)
* This is better than chunked * Keep the state in registers * Cleanup * Remove unused stuff * Minor * Make fused delta-net the default * Fix race
This commit is contained in:
@@ -271,7 +271,7 @@ struct cmd_params {
|
||||
bool muge = false;
|
||||
bool rcache = false;
|
||||
bool sas = false;
|
||||
int fdn = 0; // fdn = fused delta net
|
||||
int fdn = 65536; // fdn = fused delta net
|
||||
bool print_overrides = false;
|
||||
output_formats output_format;
|
||||
output_formats output_format_stderr;
|
||||
@@ -317,7 +317,7 @@ static const cmd_params cmd_params_defaults = {
|
||||
/* muge */ false,
|
||||
/* rcache */ false,
|
||||
/* sas */ false,
|
||||
/* fdn */ 0,
|
||||
/* fdn */ 65536,
|
||||
/* print_overrides */ false,
|
||||
/* output_format */ MARKDOWN,
|
||||
/* output_format_stderr */ NONE,
|
||||
|
||||
Reference in New Issue
Block a user