-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.h
executable file
·37 lines (28 loc) · 893 Bytes
/
config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*********************************************************
* config.h - Configuration data for the driver.c program.
*********************************************************/
#ifndef _CONFIG_H_
#define _CONFIG_H_
/*
* CPEs for the baseline (naive) version of the convolution function that
* was handed out to the students. Sd is the measure CPE for a dxd
* matrix. Run the driver.c program on your system to get these
* numbers.
*/
#define C32 277
#define C64 358
#define C128 404
#define C256 427
#define C512 439
/*
* CPEs for the baseline (naive) version of the average pooling function that
* was handed out to the students. Sd is the measure CPE for a dxd
* matrix. Run the driver.c program on your system to get these
* numbers.
*/
#define M32 6.8
#define M64 6.6
#define M128 6.5
#define M256 6.5
#define M512 6.5
#endif /* _CONFIG_H_ */