| 30 | } |
| 31 | |
| 32 | static 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 | |
| 39 | static std::string ggml_ne_string(const ggml_tensor * t) { |
| 40 | std::string str; |
no test coverage detected