-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmach_specifics.h-all
43 lines (34 loc) · 1.18 KB
/
mach_specifics.h-all
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
38
39
40
41
42
#ifndef _MACH_SPECIFICS_H
#define _MACH_SPECIFICS_H
#if (defined (CM5))
#define RADIXSORT_INT_BREAKPT 99
#define RADIXSORT_ELEM_BREAKPT 69
#define RADIXSORT_CHPAIR_BREAKPT 81
#define RADIXSORT_EDGE_BREAKPT 70
#define MATRIX_XPOSE_BARRIER 1
#elif (defined (SP2))
#define RADIXSORT_INT_BREAKPT 91
#define RADIXSORT_ELEM_BREAKPT 67
#define RADIXSORT_CHPAIR_BREAKPT 72
#define RADIXSORT_EDGE_BREAKPT 72
#define MATRIX_XPOSE_BARRIER 1
#elif (defined(MEIKO))
#define RADIXSORT_INT_BREAKPT 71
#define RADIXSORT_ELEM_BREAKPT 57
#define RADIXSORT_CHPAIR_BREAKPT 67
#define RADIXSORT_EDGE_BREAKPT 56
#define MATRIX_XPOSE_BARRIER 0
#elif (defined (T3D)
#define RADIXSORT_INT_BREAKPT 1760
#define RADIXSORT_ELEM_BREAKPT 960
#define RADIXSORT_CHPAIR_BREAKPT 1110
#define RADIXSORT_EDGE_BREAKPT 1010
#define MATRIX_XPOSE_BARRIER 0
#else
#define RADIXSORT_INT_BREAKPT 99
#define RADIXSORT_ELEM_BREAKPT 69
#define RADIXSORT_CHPAIR_BREAKPT 81
#define RADIXSORT_EDGE_BREAKPT 70
#define MATRIX_XPOSE_BARRIER 0
#endif
#endif