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

Method DebugTensor

src/model.cpp:904–907  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

902
903#if DEBUG_MODEL
904DebugTensor::DebugTensor(const std::vector<float>& data) {
905 data_f32 = data;
906 data_type = DataType::F32;
907}
908DebugTensor::DebugTensor(const std::vector<f16_t>& data) {
909 data_f16 = data;
910 data_type = DataType::F16;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected