-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.h
22 lines (14 loc) · 814 Bytes
/
init.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*********************************************************************************/
/* Matrix product program for a multi-core CPU and for a many-core GPU */
/* S. Vialle - November 2021 */
/*********************************************************************************/
#ifndef __MATPROD_INIT__
#define __MATPROD_INIT__
void LocalMatrixInit(void); // Data init
void usage(int ExitCode, FILE *std); // Cmd line parsing and usage
void CommandLineParsing(int argc, char *argv[]);
void PrintResultsAndPerf(double dk, double dt, double dkt, // Res printing
double gfk, double gfkt, double bwt, int ongpu);
void CheckResults(void); // Res checking
#endif
// END