94b2b13d
Pedro Roque
PHACT source
|
1
2
3
4
|
/*
* bitmaps.c
*
* Created on: 23/08/2014
|
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
|
*/
#include "bitmaps.h"
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "CL/cl_platform.h"
#include "config.h"
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
#include <intrin.h>
#if H_BITS == 32
#define __builtin_popcount __popcnt
#else
#define __builtin_popcountl __popcnt64
#endif
#endif
|
94b2b13d
Pedro Roque
PHACT source
|
27
28
29
30
31
32
33
|
/*
* Check if current bitmap size on host is enough and update D_MAX and D_MIN if needed
* d_min - minimum value on the domain
* d_max - maximum value on the domain
*/
|
4d26a735
Pedro Roque
Increased recogni...
|
34
35
36
37
38
39
40
41
42
43
|
void b_check_and_update_bounds(unsigned int d_min, unsigned int d_max) {
if (H_BITS < d_max + 1) {
fprintf(stderr, "\n PHACT was compiled to work with domains that range from 0 to %d. You are trying to set a value of %u.\n"
" For that, please compile solver with \"make all CFLAGS=\"-D BITS=%u\"\" to allow the usage of domains with values up to %u elements.\n",
H_BITS - 1, d_max, d_max + 1, d_max + 1);
exit(-1);
}
if (d_min < D_MIN) {
D_MIN = d_min;
|
94b2b13d
Pedro Roque
PHACT source
|
44
45
46
47
48
49
50
51
52
53
54
55
|
}
if (d_max > D_MAX) {
D_MAX = d_max;
}
}
/*
* create a new domain with one value
* d_new - new domain to create
* val - value to place on the domain
*/
void b_new_val(bitmap* d, unsigned int val) {
|
4d26a735
Pedro Roque
Increased recogni...
|
56
|
b_check_and_update_bounds(val, val);
|
94b2b13d
Pedro Roque
PHACT source
|
57
58
|
b_clear(d);
|
4d26a735
Pedro Roque
Increased recogni...
|
59
|
#if H_N_WORDS == 1
|
94b2b13d
Pedro Roque
PHACT source
|
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
*d = (H_ONE << (val));
#else
(*d)[val >> H_DIV] = H_ONE << val;
#endif
}
/*
* Create a new domain with all value between min and max set
* d - new domain to create
* min - minimum domain value
* max - maximum domain value
* */
void b_new_range(bitmap* d, unsigned int min, unsigned int max) {
if (max < min) {
fprintf(stderr, "\nPHACT is trying to create a value with the maximum value lesser than the minimum value.\n");
exit(-1);
|
4d26a735
Pedro Roque
Increased recogni...
|
76
|
}
|
94b2b13d
Pedro Roque
PHACT source
|
77
|
b_check_and_update_bounds(min, max);
|
4d26a735
Pedro Roque
Increased recogni...
|
78
79
80
81
82
83
84
85
|
b_clear(d);
#if H_N_WORDS == 1
*d = (H_ALL_ONES << min) & (H_ALL_ONES >> (H_WORD - max - 1));
#else
unsigned int f = min >> H_DIV;
unsigned int l = max >> H_DIV;
|
94b2b13d
Pedro Roque
PHACT source
|
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
|
if (f == l) {
(*d)[f] = (H_ALL_ONES << min) & (H_ALL_ONES >> (H_WORD - max - 1));
} else {
(*d)[f] = (H_ALL_ONES << min);
while (++f < l) {
(*d)[f] = H_ALL_ONES;
}
(*d)[l] = H_ALL_ONES >> (H_WORD - (max & (H_WORD - 1)) - 1);
}
#endif
}
/*
* Create a new domain with the received values.
* d - new domain to create
* d_vals - vector with all the values allowed for the new variable
* n_vals - number of domain values in values vector
* */
void b_new_vals(bitmap* d, unsigned int* d_vals, unsigned int n_vals) {
unsigned int min = d_vals[0];
unsigned int max = min;
unsigned int i;
// get values range to check bounds
for (i = 1; i < n_vals; i++) {
if (d_vals[i] < min) {
min = d_vals[i];
}
|
4d26a735
Pedro Roque
Increased recogni...
|
115
|
if (d_vals[i] > max) {
|
94b2b13d
Pedro Roque
PHACT source
|
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
|
max = d_vals[i];
}
}
b_check_and_update_bounds(min, max);
b_clear(d);
for (i = 0; i < n_vals; i++) {
#if H_N_WORDS == 1
(*d) |= H_ONE << d_vals[i];
#else
(*d)[d_vals[i] >> H_DIV] |= (H_ONE << (d_vals[i] & (H_WORD - 1)));
#endif
}
}
void b_set_val(bitmap* d, unsigned int val) {
#if H_N_WORDS == 1
*d = (H_ONE << (val));
#else
(*d)[val >> H_DIV] = H_ONE << val;
#endif
}
/*
* Set domain to zeros
|
4d26a735
Pedro Roque
Increased recogni...
|
142
|
* d - domain to set to zeros
|
94b2b13d
Pedro Roque
PHACT source
|
143
144
145
146
147
148
149
150
151
152
153
|
*/
void b_clear(bitmap* d) {
#if H_N_WORDS == 1
(*d) = 0;
#else
memset(d, 0, H_BITS >> 3);
#endif
}
/*
* Return true if domain is empty, and false if not
|
4d26a735
Pedro Roque
Increased recogni...
|
154
|
* d - domain to check if empty
|
94b2b13d
Pedro Roque
PHACT source
|
155
156
157
158
159
160
161
162
163
164
165
|
*/
bool b_is_empty(bitmap* d) {
#if H_N_WORDS == 1
return ((*d) == 0);
#else
unsigned int i;
for (i = 0; i <= D_MAX >> H_DIV; i++) {
if ((*d)[i] != 0) {
return false;
}
}
|
4d26a735
Pedro Roque
Increased recogni...
|
166
|
return true;
|
94b2b13d
Pedro Roque
PHACT source
|
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
#endif
}
/*
* Return true if the the domain cantins the values or false if not
* d - domain to check if it containes the values
* val - value to check if contained
*/
bool b_contains_val(bitmap* d, unsigned int val) {
#if H_N_WORDS == 1
return (*d) & (H_ONE << val);
#else
return (*d)[val >> H_DIV] & (H_ONE << val);
#endif
}
/*
* Return true if domains are equal, and false if different
|
4d26a735
Pedro Roque
Increased recogni...
|
185
|
* d1 - domain 1 to check if equal to d2
|
94b2b13d
Pedro Roque
PHACT source
|
186
187
188
189
190
191
192
193
194
195
196
197
|
* d2 - domain 2 to check if equal to d1
*/
bool bs_eq(bitmap* d1, bitmap* d2) {
#if H_N_WORDS == 1
return (*d1 == *d2);
#else
unsigned int i;
for (i = 0; i <= D_MAX >> H_DIV; i++) {
if ((*d1)[i] != (*d2)[i]) {
return false;
}
}
|
4d26a735
Pedro Roque
Increased recogni...
|
198
|
return true;
|
94b2b13d
Pedro Roque
PHACT source
|
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
|
#endif
}
/*
* Return the nth value of the domain
* d - domain to get nth value
* nth - nth value to get from domain (from 1 to max value)
*/
unsigned int b_get_nth_val(bitmap* d, unsigned int nth) {
unsigned int vals_cnt = 0;
unsigned int i;
#if H_N_WORDS == 1
for (i = 0; vals_cnt <= nth; i++) {
if ((*d) & (H_ONE << i)){
vals_cnt++;
}
if (vals_cnt == nth) {
|
4d26a735
Pedro Roque
Increased recogni...
|
217
|
return i;
|
94b2b13d
Pedro Roque
PHACT source
|
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
|
}
}
#else
unsigned int word_idx;
for (word_idx = 0; word_idx <= D_MAX >> H_DIV; word_idx++) {
for (i = 0; i < H_WORD; i++) {
if ((*d)[word_idx] & (H_ONE << i)) {
vals_cnt++;
}
if (vals_cnt == nth) {
return i + (word_idx << H_DIV);
}
}
}
#endif
return 0;
}
/*
* Copy d_src values to d_dest
* d_dest - where to copy the values
* d_src - domain to copy
*/
void b_copy(bitmap* d_dest, bitmap* d_src) {
#if H_N_WORDS == 1
*d_dest = *d_src;
#else
memcpy(*d_dest, *d_src, H_N_WORDS * sizeof(H_WORD_TYPE));
#endif
}
/*
|
4d26a735
Pedro Roque
Increased recogni...
|
251
|
* Return the number of values (bits set) on the received domain
|
94b2b13d
Pedro Roque
PHACT source
|
252
253
254
255
256
257
258
|
* d - domain with values to count
* */
unsigned int b_cnt_vals(bitmap* d) {
#if H_N_WORDS == 1
#if H_WORD == 32
return __builtin_popcount(*d);
#else
|
94b2b13d
Pedro Roque
PHACT source
|
259
260
261
262
|
return __builtin_popcountl(*d);
#endif
#else
int cnt = 0;
|
4d26a735
Pedro Roque
Increased recogni...
|
263
|
unsigned int i;
|
94b2b13d
Pedro Roque
PHACT source
|
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
|
for (i = 0; i <= D_MAX >> H_DIV; i++) {
#if H_WORD == 32
cnt += __builtin_popcount((*d)[i]);
#else
cnt += __builtin_popcountl((*d)[i]);
#endif
}
return (unsigned int)cnt;
#endif
}
/*
* Return the minimum domain value
* d - domain to look for the minimum value
* */
int b_get_min_val(bitmap* d) {
|
4d26a735
Pedro Roque
Increased recogni...
|
281
|
#if H_N_WORDS == 1
|
94b2b13d
Pedro Roque
PHACT source
|
282
283
284
285
286
287
288
|
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
H_WORD_TYPE r = 0;
#if H_WORD == 32
_BitScanForward(&r, *d);
#else
_BitScanForward64(&r, *d);
|
4d26a735
Pedro Roque
Increased recogni...
|
289
|
#endif
|
94b2b13d
Pedro Roque
PHACT source
|
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
|
return (int)r;
#else
#if H_WORD == 32
return __builtin_ctz(*d);
#else
return __builtin_ctzl(*d);
#endif
#endif
#else
unsigned int i;
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
bitmap r = {0};
for (i = 0; i <= D_MAX >> H_DIV; i ++) {
if ((*d)[i] > 0) {
#if H_WORD == 32
_BitScanForward(&r[0], (*d)[i]);
#else
_BitScanForward64(&r[0], (*d)[i]);
#endif
return (int)r[0] + (i << H_DIV);
}
}
#else
for (i = 0; i <= D_MAX >> H_DIV; i++) {
if ((*d)[i] > 0) {
#if H_WORD == 32
return __builtin_ctz((*d)[i]) + ((int)i << H_DIV);
#else
return __builtin_ctzl((*d)[i]) + ((int)i << H_DIV);
#endif
}
}
#endif
return -1;
#endif
}
|
4d26a735
Pedro Roque
Increased recogni...
|
329
|
|
94b2b13d
Pedro Roque
PHACT source
|
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
|
/*
* Return the maximum domain value
* d - domain to look for the maximum value
* */
int b_get_max_val(bitmap *d) {
#if H_N_WORDS == 1
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
H_WORD_TYPE r = 0;
#if H_WORD == 32
_BitScanReverse(&r, *d);
#else
_BitScanReverse64(&r, *d);
#endif
return (int)r;
#else
#if H_WORD == 32
return H_WORD - __builtin_clz(*d) - 1;
#else
return H_WORD - __builtin_clzl(*d) - 1;
#endif
#endif
#else
int i;
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
bitmap r = {0};
for (i = D_MAX >> H_DIV; i >= 0; i--) {
if ((*d)[i] > 0) {
#if H_WORD == 32
_BitScanReverse(&r[0], (*d)[i]);
#else
_BitScanReverse64(&r[0], (*d)[i]);
#endif
return (int)r[0] + (i << H_DIV);
}
}
#else
for (i = (int)D_MAX >> H_DIV; i >= 0; i--) {
if ((*d)[i] > 0) {
#if H_WORD == 32
return H_WORD - __builtin_clz((*d)[i]) - 1 + (i << H_DIV);
#else
return H_WORD - __builtin_clzl((*d)[i]) - 1 + (i << H_DIV);
#endif
}
}
|
4d26a735
Pedro Roque
Increased recogni...
|
377
|
#endif
|
94b2b13d
Pedro Roque
PHACT source
|
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
|
return -1;
#endif
}
/*
* Do operation d1 = d1 & d2
* Return true if domain changed and false if not
* d1 - domain to save operation
* d2 - domain to do AND with
*/
bool b_intersect_b(bitmap* d1, bitmap* d2) {
#if H_N_WORDS == 1
H_WORD_TYPE d_prev = (*d1);
(*d1) &= (*d2);
return ((*d1) != d_prev);
#else
bool changed = false;
|
4d26a735
Pedro Roque
Increased recogni...
|
398
|
H_WORD_TYPE d_prev;
|
94b2b13d
Pedro Roque
PHACT source
|
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
|
unsigned int i;
for (i = 0; i <= D_MAX >> H_DIV; i++) {
d_prev = (*d1)[i];
(*d1)[i] &= (*d2)[i];
changed |= (*d1)[i] != d_prev;
}
return changed;
#endif
}
/*
* Do operation d1 = d1 | d2
* Return true if domain changed and false if not
* d1 - domain to save operation
* d2 - domain to do or with
*/
bool b_union_b(bitmap* d1, bitmap* d2) {
#if H_N_WORDS == 1
H_WORD_TYPE d_prev = (*d1);
(*d1) |= (*d2);
return ((*d1) != d_prev);
#else
bool changed = false;
|
4d26a735
Pedro Roque
Increased recogni...
|
426
|
H_WORD_TYPE d_prev;
|
94b2b13d
Pedro Roque
PHACT source
|
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
|
unsigned int i;
for (i = 0; i <= D_MAX >> H_DIV; i++) {
d_prev = (*d1)[i];
(*d1)[i] |= (*d2)[i];
changed |= (*d1)[i] != d_prev;
}
return changed;
#endif
}
/*
* Remove the minimum value in d domain from the d_to_chg domain
* Return true if domain changed and false if not
* d_to_chg - domain to remove value from
* d - domain with the minimum value to remove from d_to_chg
*/
bool b_del_singl_val(bitmap* d_to_chg, bitmap* d) {
#if H_N_WORDS == 1
H_WORD_TYPE d_prev = (*d_to_chg);
(*d_to_chg) &= ~(*d);
return ((*d_to_chg) != d_prev);
#else
|
4d26a735
Pedro Roque
Increased recogni...
|
454
|
unsigned int bit_numb = (unsigned int)b_get_min_val(d);
|
94b2b13d
Pedro Roque
PHACT source
|
455
456
457
458
459
460
461
462
|
unsigned int bitmap_idx = bit_numb >> H_DIV;
H_WORD_TYPE d_prev = (*d_to_chg)[bitmap_idx];
(*d_to_chg)[bitmap_idx] &= ~(H_ONE << (bit_numb - (bitmap_idx << H_DIV)));
return ((*d_to_chg)[bitmap_idx] != d_prev);
#endif
}
|
4d26a735
Pedro Roque
Increased recogni...
|
463
|
|
94b2b13d
Pedro Roque
PHACT source
|
464
465
466
467
468
469
470
471
472
473
474
475
476
477
|
/*
* Remove from the domain all the values lesser than val
* d_to_chg - domain to remove values from
* val - minimum value to keep at domain
*/
bool b_del_lt(bitmap* d, unsigned int val) {
#if H_N_WORDS == 1
H_WORD_TYPE d_prev = (*d);
(*d) &= (H_ALL_ONES << val);
return ((*d) != d_prev);
#else
H_WORD_TYPE w;
|
4d26a735
Pedro Roque
Increased recogni...
|
478
|
unsigned int limit = val >> H_DIV;
|
94b2b13d
Pedro Roque
PHACT source
|
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
|
bool changed = false;
unsigned int word_idx;
for (word_idx = 0; word_idx < limit; word_idx++) {
if ((*d)[word_idx] != 0) {
(*d)[word_idx] = 0;
changed = true;
}
}
w = (*d)[word_idx] & (H_ALL_ONES << (val % H_WORD));
if (!changed && w == (*d)[word_idx]) {
return false;
}
(*d)[word_idx] = w;
return true;
#endif
}
/*
* Remove from the domain all the values lower or equal to val
* d_to_chg - domain to remove values from
* val - bottom value to remove from domain
*/
bool b_del_le(bitmap* d, unsigned int val) {
return b_del_lt(d, ++val);
}
/*
* Remove from the domain all the values lower than val
|
4d26a735
Pedro Roque
Increased recogni...
|
510
|
* d - domain to remove values from
|
94b2b13d
Pedro Roque
PHACT source
|
511
512
|
* val - maximum value to keep at domain
*/
|
4d26a735
Pedro Roque
Increased recogni...
|
513
|
bool b_del_gt(bitmap* d, unsigned int val) {
|
94b2b13d
Pedro Roque
PHACT source
|
514
515
516
517
518
519
520
521
|
#if H_N_WORDS == 1
H_WORD_TYPE d_prev = (*d);
(*d) &= (H_ALL_ONES >> (H_WORD - 1 - val));
return ((*d) != d_prev);
#else
H_WORD_TYPE w;
bool changed = false;
|
4d26a735
Pedro Roque
Increased recogni...
|
522
|
unsigned int word_idx = val >> H_DIV;
|
94b2b13d
Pedro Roque
PHACT source
|
523
524
525
526
527
528
529
530
531
532
533
|
int i;
w = (*d)[word_idx] & ((H_ALL_ONES >> (H_WORD -1 - (val % H_WORD))));
for (i = (int)word_idx + 1; i < H_N_WORDS; i++) {
if ((*d)[i] != 0) {
(*d)[i] = 0;
changed = true;
}
}
|
4d26a735
Pedro Roque
Increased recogni...
|
534
|
if (!changed && w == (*d)[word_idx]) {
|
94b2b13d
Pedro Roque
PHACT source
|
535
|
return false;
|
4d26a735
Pedro Roque
Increased recogni...
|
536
|
}
|
94b2b13d
Pedro Roque
PHACT source
|
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
|
(*d)[word_idx] = w;
return true;
#endif
}
/*
* Remove from the domain all the values lower than val
* d_to_chg - domain to remove values from
* val - top value to remove from the domain
*/
bool b_del_ge(bitmap* d, unsigned int val) {
return b_del_gt(d, --val);
}
/*
* remove value from d_to_chg domain
|
4d26a735
Pedro Roque
Increased recogni...
|
554
|
* Return true if domain changed and false if not
|
94b2b13d
Pedro Roque
PHACT source
|
555
556
|
* d - domain to remove value from
* val - value to remove from d_to_chg
|
4d26a735
Pedro Roque
Increased recogni...
|
557
|
*/
|
94b2b13d
Pedro Roque
PHACT source
|
558
559
560
561
562
563
564
565
566
|
bool b_del_val(bitmap* d, unsigned int val) {
#if H_N_WORDS == 1
H_WORD_TYPE d_prev = (*d);
(*d) &= ~(H_ONE << val);
return ((*d) != d_prev);
#else
unsigned int word_idx = val >> H_DIV;
|
4d26a735
Pedro Roque
Increased recogni...
|
567
|
H_WORD_TYPE d_prev = ((*d)[word_idx]);
|
94b2b13d
Pedro Roque
PHACT source
|
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
|
(*d)[word_idx] &= ~(H_ONE << val);
return ((*d)[word_idx] != d_prev);
#endif
}
/*
* Clear all values from domain d, except val if present
* Return true if domain changed and false if not
* d - domain to clear all values except val
* val - value to keep on domain if present
*/
bool b_del_all_except_val(bitmap* d, unsigned int val) {
#if H_N_WORDS == 1
H_WORD_TYPE d_prev = (*d);
*d &= (H_ONE << val);
return ((*d) != d_prev);
#else
unsigned int word_idx = val >> H_DIV;
|
4d26a735
Pedro Roque
Increased recogni...
|
590
|
H_WORD_TYPE d_prev = (*d)[word_idx];
|
94b2b13d
Pedro Roque
PHACT source
|
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
|
bool changed = false;
unsigned int i;
for (i = 0; i < word_idx; i++) {
if ((*d)[i] != 0) {
(*d)[i] = 0;
changed = true;
}
}
(*d)[word_idx] = d_prev & (H_ONE << val);
for (i = word_idx + 1; i <= (D_MAX >> H_DIV); i++) {
if ((*d)[i] != 0) {
(*d)[i] = 0;
changed = true;
}
}
return (changed || (*d)[word_idx] != d_prev);
#endif
}
/*
* print the bitmap (bitmap/s) of the received bitmap
* d - domain (bitmap) to print
*/
void b_print_domain(bitmap* d) {
#if H_N_WORDS == 1
#if H_WORD == 32
printf("%u", *d);
#else
printf("%lu", *d);
#endif
#else
unsigned int i;
|
4d26a735
Pedro Roque
Increased recogni...
|
625
|
#if H_WORD == 32
|
94b2b13d
Pedro Roque
PHACT source
|
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
|
printf("%u", (*d)[0]);
for (i = 1; i <= D_MAX >> H_DIV; i++) {
printf(",%u", (*d)[i]);
}
#else
printf("%lu", (*d)[0]);
for (i = 1; i <= D_MAX >> H_DIV; i++) {
printf(",%lu", (*d)[i]);
}
#endif
#endif
}
/*
* Copy the bitmap number "bitmap_n" in "dev_bs" array, with CL_BITS size to the single host_b with size H_BITS
* host_b - where to copy the bitmaps to
* dev_bs - array with all the bitmaps to copy one from
* bitmap_n - number of the bitmap to copy inside the dev_bs array of bitmaps
*/
void b_copy_dev_to_host(bitmap* host_b, void** dev_bs, unsigned int bitmap_n) {
if (CL_N_WORDS_ == 1) {
if (CL_WORD_ == 32) {
unsigned int* dev_domains = (unsigned int*)dev_bs;
#if H_N_WORDS == 1 // host bitmaps are one unsigned int or cl_ulong and device bitmaps are one unsigned int
*host_b = (H_WORD_TYPE)dev_domains[bitmap_n];
#else // host bitmaps are an array of unsigned int or cl_ulong and device bitmaps are one unsigned int
(*host_b)[0] = (H_WORD_TYPE)dev_domains[bitmap_n];
|
4d26a735
Pedro Roque
Increased recogni...
|
654
|
#endif
|
94b2b13d
Pedro Roque
PHACT source
|
655
656
657
|
} else {
cl_ulong* dev_domains = (cl_ulong*)dev_bs;
#if H_N_WORDS == 1 // host bitmaps are one cl_ulong and device bitmaps are one cl_ulong
|
4d26a735
Pedro Roque
Increased recogni...
|
658
|
*host_b = dev_domains[bitmap_n];
|
94b2b13d
Pedro Roque
PHACT source
|
659
660
661
|
#else
if (H_WORD == 32) { // host bitmaps are an array of unsigned int and device bitmaps are one cl_ulong
(*host_b)[1] = (H_WORD_TYPE)(dev_domains[bitmap_n] >> 32);
|
4d26a735
Pedro Roque
Increased recogni...
|
662
|
(*host_b)[0] = (H_WORD_TYPE)(dev_domains[bitmap_n]);
|
94b2b13d
Pedro Roque
PHACT source
|
663
664
|
} else { // host bitmaps are an array of cl_ulong and device bitmaps are one cl_ulong
(*host_b)[0] = dev_domains[bitmap_n];
|
4d26a735
Pedro Roque
Increased recogni...
|
665
|
}
|
94b2b13d
Pedro Roque
PHACT source
|
666
667
668
669
|
#endif
}
} else {
if (CL_WORD_ == 32) {
|
4d26a735
Pedro Roque
Increased recogni...
|
670
671
|
#if H_N_WORDS == 1 && H_WORD == 64 // host bitmaps are one cl_ulong and device bitmaps are two unsigned int
unsigned int* dev_domains = (unsigned int*)dev_bs;
|
94b2b13d
Pedro Roque
PHACT source
|
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
|
*host_b = ((cl_ulong)dev_domains[bitmap_n * 2 + 1] << 32) | ((cl_ulong)dev_domains[bitmap_n * 2]);
#elif H_N_WORDS > 1 && H_WORD == 32 // host and device bitmaps are an array of unsigned int
unsigned int* dev_domains = (unsigned int*)dev_bs;
unsigned int j;
for (j = 0; j < CL_N_WORDS_; j++) {
(*host_b)[j] = dev_domains[bitmap_n * CL_N_WORDS_ + j];
}
#elif H_N_WORDS > 1 && H_WORD == 64 // host bitmaps are an array of cl_ulong and device bitmaps are an array of unsigned int
unsigned int* dev_domains = (unsigned int*)dev_bs;
unsigned int j;
for (j = 0; j < CL_N_WORDS_ / 2; j++) {
(*host_b)[j] = ((cl_ulong)dev_domains[bitmap_n * CL_N_WORDS_ + j + 1] << 32) | ((cl_ulong)dev_domains[bitmap_n * CL_N_WORDS_ + j]);
}
// if device bitmaps are an odd array of unsigned int add the last one
if (CL_N_WORDS_ % 2 != 0) {
(*host_b)[j] |= ((cl_ulong)dev_domains[bitmap_n * CL_N_WORDS_ + j]);
}
|
4d26a735
Pedro Roque
Increased recogni...
|
689
|
#endif
|
94b2b13d
Pedro Roque
PHACT source
|
690
691
|
} else {
#if H_N_WORDS > 1
|
4d26a735
Pedro Roque
Increased recogni...
|
692
|
unsigned int j;
|
94b2b13d
Pedro Roque
PHACT source
|
693
694
695
|
cl_ulong* dev_domains = (cl_ulong*)dev_bs;
#if H_WORD == 32 // host bitmaps are an array of unsigned int and device bitmaps are an array of cl_ulong
for (j = 0; j < CL_N_WORDS_; j++) {
|
4d26a735
Pedro Roque
Increased recogni...
|
696
|
(*host_b)[j * 2 + 1] = (H_WORD_TYPE)(dev_domains[bitmap_n * CL_N_WORDS_ + j] >> 32);
|
94b2b13d
Pedro Roque
PHACT source
|
697
698
699
700
701
|
(*host_b)[j * 2] = (H_WORD_TYPE)(dev_domains[bitmap_n * CL_N_WORDS_ + j]);
}
#else // host and device bitmaps are an array of cl_ulong
for (j = 0; j < CL_N_WORDS_; j++) {
(*host_b)[j] = dev_domains[bitmap_n * CL_N_WORDS_ + j];
|
4d26a735
Pedro Roque
Increased recogni...
|
702
|
}
|
94b2b13d
Pedro Roque
PHACT source
|
703
704
705
706
707
|
#endif
#endif
}
}
}
|