MCPcopy Create free account
hub / github.com/antirez/llama.cpp-deepseek-v4-flash / ggml_opt_optimizer_name

Function ggml_opt_optimizer_name

ggml/src/ggml-opt.cpp:1085–1094  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1083}
1084
1085GGML_API const char * ggml_opt_optimizer_name(enum ggml_opt_optimizer_type o) {
1086 switch (o) {
1087 case GGML_OPT_OPTIMIZER_TYPE_ADAMW:
1088 return "adamw";
1089 case GGML_OPT_OPTIMIZER_TYPE_SGD:
1090 return "sgd";
1091 default:
1092 return "undefined";
1093 };
1094}

Callers 4

helper_after_testFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
ggml_opt_buildFunction · 0.85

Calls

no outgoing calls

Tested by 2

helper_after_testFunction · 0.68
mainFunction · 0.68