MCPcopy Create free account
hub / github.com/RapidAI/RapidASR / SaveDataFile

Function SaveDataFile

cpp_onnx/src/util.cpp:34–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32 printf("\n");
33}
34void SaveDataFile(const char *filename, void *data, uint32_t len)
35{
36 FILE *fp;
37 fp = fopen(filename, "wb+");
38 fwrite(data, 1, len, fp);
39 fclose(fp);
40}
41
42void basic_norm(Tensor<float> *&din, float norm)
43{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected