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

Function zeros

tools/export-lora/export-lora.cpp:32–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30}
31
32static void zeros(std::ofstream & file, size_t n) {
33 char zero = 0;
34 for (size_t i = 0; i < n; ++i) {
35 file.write(&zero, 1);
36 }
37}
38
39static std::string ggml_ne_string(const ggml_tensor * t) {
40 std::string str;

Callers 3

run_mergeMethod · 0.70
copy_tensorMethod · 0.70
merge_tensorMethod · 0.70

Calls 1

writeMethod · 0.45

Tested by

no test coverage detected