MCPcopy Create free account
hub / github.com/clMathLibraries/clBLAS / readExtaDataHeader

Function readExtaDataHeader

src/library/tools/tune/storage_io.c:227–243  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

225
226
227int
228readExtaDataHeader (
229 HfInfo * file,
230 unsigned int* dtype,
231 unsigned int* flags,
232 unsigned int* numParam)
233{
234 int status = 0;
235
236 status += hfRead(file, dtype, 1, sizeof(unsigned int));
237 status += hfRead(file, flags, 1, sizeof(unsigned int));
238
239 status += hfRead(file, numParam, 1, sizeof(unsigned int));
240 status += hfCheckCRC(file);
241
242 return status;
243}
244
245bool
246readPatternData(

Callers 1

readPatternDataFunction · 0.85

Calls 2

hfReadFunction · 0.85
hfCheckCRCFunction · 0.85

Tested by

no test coverage detected