MCPcopy Create free account
hub / github.com/andrewkchan/deepseek.cpp / BinaryDumper

Class BinaryDumper

src/debug.h:6–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4#include <iostream>
5
6struct BinaryDumper {
7 // Save T array to binary file
8 template <typename T>
9 static bool save(const std::string& filename, const T* data, size_t count);
10
11 // Load T array from binary file
12 template <typename T>
13 static std::vector<T> load(const std::string& filename);
14};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected