Blame view

src/kernels/cl_bitmaps.h 3.3 KB
94b2b13d   Pedro Roque   PHACT source
1
2
3
4
/*
 * cl_bitmaps.h
 *
 *  Created on: 27/07/2016
4d26a735   Pedro Roque   Increased recogni...
5
 *      Author: pedro
94b2b13d   Pedro Roque   PHACT source
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
 */

#if CL_D_TYPE == CL_BITMAP

#ifndef SRC_KERNELS_CL_BITMAPS_H_
#define SRC_KERNELS_CL_BITMAPS_H_

#ifndef __OPENCL_VERSION__
#include "../utils/cl_syntax.h"
#endif

#include "../config.h"

/*
 * Number of values that compose the domain of the received variable (n_vals)
 * v - variable to get the number of values
 */
#define V_N_VALS(v) ((v).n_vals)

/*
 * Decrement by 1 the number of values in variable v
 * v - variable to decrement the number of values
 */
#define V_DEC_N_VALS(v) ((v).n_vals--)

/*
 * Return 1 if n_vals == 0 and 0 if not
 * v - variable to check if empty
 */
#define V_IS_EMPTY(v) ((v).n_vals == 0)

/*
 * Minimum value of the variable (from v->min)
4d26a735   Pedro Roque   Increased recogni...
39
 * v - variable to get maximum value from
94b2b13d   Pedro Roque   PHACT source
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
 */
#define V_MIN(v) ((v).min)

/*
 * Maximum value of the variable (from v->max)
 * v - variable to get maximum value from
 */
#define V_MAX(v) ((v).max)

#define NOTHING

#define SUFFIX _n
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

#define M1 CL_MEMORY
#define M2 CL_MEMORY
#define SUFFIX _m
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

#define M1 __global
#define M2 __global
#define SUFFIX _g
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

#define M2 CL_MEMORY
#define SUFFIX _pm
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

#define M1 CL_MEMORY
#define SUFFIX _mp
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

#define M1 __global
#define M2 CL_MEMORY
#define SUFFIX _gm
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

#define M1 CL_MEMORY
#define M2 __global
#define SUFFIX _mg
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

#define M1 __global
#define M2 __constant
#define SUFFIX _gc
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

#define M1 __global
#define SUFFIX _gp
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

#define M3 __constant
#define SUFFIX _c
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

#define M3 CL_VS_MEM
#define SUFFIX _vs
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

#define M3 CL_B_DS_MEM
#define M4 __global
#define SUFFIX _bd
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

#define M3 CL_MEMORY
#define M4 __global
#define SUFFIX _m3
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

#define M1 __global
#define M2 CL_B_DS_MEM
#define SUFFIX _gbd
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

#define M1 __global
#define M2 CL_VS_MEM
#define SUFFIX _gvs
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

#define M1 CL_MEMORY
#define M2 CL_B_DS_MEM
#define SUFFIX _mbd
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

#define M1 CL_MEMORY
#define M2 CL_VS_MEM
#define SUFFIX _mvs
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

#define M2 __global
#define SUFFIX _pg
#include "cl_bitmap_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX

4d26a735   Pedro Roque   Increased recogni...
223
224
225
#endif

#endif
94b2b13d   Pedro Roque   PHACT source