aboutsummaryrefslogtreecommitdiff
path: root/src/GeneralizedPolynomial-Uniform/common/fetch.h
blob: 92faf25e4dc451da52b8dbbe9ea36fb23b8855c6 (plain)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/* fetch.h -- fetch molecule-sized piece of input array into struct data */
/* $Header$ */

/*
 * prerequisite headers:
 *	"cctk.h"
 *	"../InterpLocalUniform.h"
 *	"structs.h"
 */

/******************************************************************************/

/*
 * 1-D fetch routines
 */

#undef  INT_STRIDE_IJK
#define INT_STRIDE_IJK			int stride_i

#undef  FETCH_FUNCTION_NAME
#define FETCH_FUNCTION_NAME(type)	LocalInterp_fetch_1d_cube2_ ## type
#undef  DATA_STRUCT
#define DATA_STRUCT			data_struct_1d_cube_size2
#include "fetch-template.h"

#undef  FETCH_FUNCTION_NAME
#define FETCH_FUNCTION_NAME(type)	LocalInterp_fetch_1d_cube3_ ## type
#undef  DATA_STRUCT
#define DATA_STRUCT			data_struct_1d_cube_size3
#include "fetch-template.h"

#undef  FETCH_FUNCTION_NAME
#define FETCH_FUNCTION_NAME(type)	LocalInterp_fetch_1d_cube4_ ## type
#undef  DATA_STRUCT
#define DATA_STRUCT			data_struct_1d_cube_size4
#include "fetch-template.h"

#undef  FETCH_FUNCTION_NAME
#define FETCH_FUNCTION_NAME(type)	LocalInterp_fetch_1d_cube5_ ## type
#undef  DATA_STRUCT
#define DATA_STRUCT			data_struct_1d_cube_size5
#include "fetch-template.h"
#undef  FETCH_FUNCTION_NAME_PREFIX

#undef  FETCH_FUNCTION_NAME
#define FETCH_FUNCTION_NAME(type)	LocalInterp_fetch_1d_cube6_ ## type
#undef  DATA_STRUCT
#define DATA_STRUCT			data_struct_1d_cube_size6
#include "fetch-template.h"

#undef  FETCH_FUNCTION_NAME
#define FETCH_FUNCTION_NAME(type)	LocalInterp_fetch_1d_cube7_ ## type
#undef  DATA_STRUCT
#define DATA_STRUCT			data_struct_1d_cube_size7
#include "fetch-template.h"

/******************************************************************************/

/*
 * 2-D fetch routines
 */

#undef  INT_STRIDE_IJK
#define INT_STRIDE_IJK			int stride_i, int stride_j

#undef  FETCH_FUNCTION_NAME
#define FETCH_FUNCTION_NAME(type)	LocalInterp_fetch_2d_cube2_ ## type
#undef  DATA_STRUCT
#define DATA_STRUCT			data_struct_2d_cube_size2
#include "fetch-template.h"

#undef  FETCH_FUNCTION_NAME
#define FETCH_FUNCTION_NAME(type)	LocalInterp_fetch_2d_cube3_ ## type
#undef  DATA_STRUCT
#define DATA_STRUCT			data_struct_2d_cube_size3
#include "fetch-template.h"

#undef  FETCH_FUNCTION_NAME
#define FETCH_FUNCTION_NAME(type)	LocalInterp_fetch_2d_cube4_ ## type
#undef  DATA_STRUCT
#define DATA_STRUCT			data_struct_2d_cube_size4
#include "fetch-template.h"

#undef  FETCH_FUNCTION_NAME
#define FETCH_FUNCTION_NAME(type)	LocalInterp_fetch_2d_cube5_ ## type
#undef  DATA_STRUCT
#define DATA_STRUCT			data_struct_2d_cube_size5
#include "fetch-template.h"
#undef  FETCH_FUNCTION_NAME_PREFIX

#undef  FETCH_FUNCTION_NAME
#define FETCH_FUNCTION_NAME(type)	LocalInterp_fetch_2d_cube6_ ## type
#undef  DATA_STRUCT
#define DATA_STRUCT			data_struct_2d_cube_size6
#include "fetch-template.h"

/******************************************************************************/

/*
 * 3-D fetch routines
 */

#undef  INT_STRIDE_IJK
#define INT_STRIDE_IJK			int stride_i, int stride_j, int stride_k

#undef  FETCH_FUNCTION_NAME
#define FETCH_FUNCTION_NAME(type)	LocalInterp_fetch_3d_cube2_ ## type
#undef  DATA_STRUCT
#define DATA_STRUCT			data_struct_3d_cube_size2
#include "fetch-template.h"

#undef  FETCH_FUNCTION_NAME
#define FETCH_FUNCTION_NAME(type)	LocalInterp_fetch_3d_cube3_ ## type
#undef  DATA_STRUCT
#define DATA_STRUCT			data_struct_3d_cube_size3
#include "fetch-template.h"

#undef  FETCH_FUNCTION_NAME
#define FETCH_FUNCTION_NAME(type)	LocalInterp_fetch_3d_cube3_ ## type
#undef  DATA_STRUCT
#define DATA_STRUCT			data_struct_3d_cube_size3
#include "fetch-template.h"

#undef  FETCH_FUNCTION_NAME
#define FETCH_FUNCTION_NAME(type)	LocalInterp_fetch_3d_cube4_ ## type
#undef  DATA_STRUCT
#define DATA_STRUCT			data_struct_3d_cube_size4
#include "fetch-template.h"

#undef  FETCH_FUNCTION_NAME
#define FETCH_FUNCTION_NAME(type)	LocalInterp_fetch_3d_cube5_ ## type
#undef  DATA_STRUCT
#define DATA_STRUCT			data_struct_3d_cube_size5
#include "fetch-template.h"
#undef  FETCH_FUNCTION_NAME_PREFIX

#undef  FETCH_FUNCTION_NAME
#define FETCH_FUNCTION_NAME(type)	LocalInterp_fetch_3d_cube6_ ## type
#undef  DATA_STRUCT
#define DATA_STRUCT			data_struct_3d_cube_size6
#include "fetch-template.h"

/******************************************************************************/

/*
 * We don't want to leave DATA_STRUCT defined -- this would confuse
 * later code that wants to define it and include "fetch-template.c"
 */
#undef  DATA_STRUCT