add citation information
[LbmBenchmarkKernelsPublic.git] / src / Padding.h
CommitLineData
e3f82424
MW
1#ifndef __PADDING_H__
2#define __PADDING_H__
3
4typedef struct PadInfo_
5{
6 int nEntries;
7 int * Modulus;
8 int * Offset;
9} PadInfo;
10
11PadInfo * PadInfoFromStr(const char * padStr);
12
13int PadCells(int nCells, int cellSizeBytes, PadInfo ** padInfo);
14int PadCellsAndReport(int nCells, int cellSizeBytes, PadInfo ** padInfoPtr);
15
16void PadInfoPrint(PadInfo * padInfo, FILE * f, const char * prefix);
17void PadInfoFree(PadInfo * padInfo);
18
19#endif // __PADDING_H__
This page took 0.081438 seconds and 5 git commands to generate.