cl_intervals.h
3.32 KB
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
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
/*
+ * cl_intervals.h
*
* Created on: 27/07/2016
* Author: pedro
*/
#if CL_D_TYPE == CL_INTERVAL
#ifndef SRC_KERNELS_CL_INTERVALS_H_
#define SRC_KERNELS_CL_INTERVALS_H_
#ifndef __OPENCL_VERSION__
#include "../utils/cl_syntax.h"
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
#include <stduint.h>
#endif
#endif
#include "../config.h"
// An interval is empty if second value is smaller than the first value
/*
* Number of values that compose the domain of the received variable (s1-s0+1)
* v - variable to get values in domain
*/
#define V_N_VALS(v) (((v).prop_d).s1 - ((v).prop_d).s0 + 1)
/*
* Does nothing when using intervals
* v - variable to decrement the number of values
*/
#define V_DEC_N_VALS(v)
/*
* Return 1 if variable is empty and 0 if not
* v - variable to check if empty
*/
#define V_IS_EMPTY(v) (((v).prop_d).s0 > ((v).prop_d).s1)
/*
* Minimum value of the variable (v->prop_d.s0)
* v - variable to get maximum value from
*/
#define V_MIN(v) (((v).prop_d).s0)
/*
* Maximum value of the variable (from v->prop_d.s1)
* v - variable to get maximum value from
*/
#define V_MAX(v) (((v).prop_d).s1)
#define NOTHING
#define SUFFIX _n
#include "cl_intervals_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_intervals_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX
#define M1 __global
#define M2 __global
#define SUFFIX _g
#include "cl_intervals_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX
#define M2 CL_MEMORY
#define SUFFIX _pm
#include "cl_intervals_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX
#define M1 CL_MEMORY
#define SUFFIX _mp
#include "cl_intervals_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX
#define M1 __global
#define M2 CL_MEMORY
#define SUFFIX _gm
#include "cl_intervals_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX
#define M1 CL_MEMORY
#define M2 __global
#define SUFFIX _mg
#include "cl_intervals_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX
#define M1 __global
#define M2 __constant
#define SUFFIX _gc
#include "cl_intervals_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX
#define M1 __global
#define SUFFIX _gp
#include "cl_intervals_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX
#define M3 __constant
#define SUFFIX _c
#include "cl_intervals_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX
#define M3 CL_VS_MEM
#define SUFFIX _vs
#include "cl_intervals_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_intervals_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_intervals_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX
#define M3 CL_MEMORY
#define M4 __global
#define SUFFIX _m3
#include "cl_intervals_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX
#define M2 __global
#define SUFFIX _pg
#include "cl_intervals_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX
#define M3 CL_VS_MEM
#define M4 __global
#define SUFFIX _vsg
#include "cl_intervals_src.h"
#undef M1
#undef M2
#undef M3
#undef M4
#undef SUFFIX
#endif /* SRC_KERNELS_CL_INTERVALS_H_ */
#endif