| 32 | printf("\n"); |
| 33 | } |
| 34 | void 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 | |
| 42 | void basic_norm(Tensor<float> *&din, float norm) |
| 43 | { |
nothing calls this directly
no outgoing calls
no test coverage detected