-
Notifications
You must be signed in to change notification settings - Fork 0
/
gpu_group.c
1842 lines (1612 loc) · 55.4 KB
/
gpu_group.c
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
211
212
213
214
215
216
217
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
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
329
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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
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
426
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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
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
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
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
625
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
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright 2010-2011 INRIA Saclay
* Copyright 2012-2014 Ecole Normale Superieure
* Copyright 2015 Sven Verdoolaege
*
* Use of this software is governed by the MIT license
*
* Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
* Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
* 91893 Orsay, France
* and Ecole Normale Superieure, 45 rue d'Ulm, 75230 Paris, France
*/
#include <isl/constraint.h>
#include <isl/ilp.h>
#include "gpu_array_tile.h"
#include "gpu_group.h"
#include "gpu_tree.h"
#include "schedule.h"
/* Print the name of the local copy of a given group of array references.
*/
__isl_give isl_printer *gpu_array_ref_group_print_name(
struct gpu_array_ref_group *group, __isl_take isl_printer *p)
{
int global = 0;
enum ppcg_group_access_type type;
type = gpu_array_ref_group_type(group);
if (type == ppcg_access_private)
p = isl_printer_print_str(p, "private_");
else if (type == ppcg_access_shared)
p = isl_printer_print_str(p, "shared_");
else
global = 1;
p = isl_printer_print_str(p, group->array->name);
if (!global && group->local_array->n_group > 1) {
p = isl_printer_print_str(p, "_");
p = isl_printer_print_int(p, group->nr);
}
return p;
}
/* Return the union of all read (read = 1) and/or write (write = 1)
* access relations in the group.
*/
__isl_give isl_union_map *gpu_array_ref_group_access_relation(
struct gpu_array_ref_group *group, int read, int write)
{
int i;
isl_union_map *access;
access = isl_union_map_empty(isl_map_get_space(group->access));
for (i = 0; i < group->n_ref; ++i) {
isl_map *map_i;
if (!((read && group->refs[i]->read) ||
(write && group->refs[i]->write)))
continue;
map_i = isl_map_copy(group->refs[i]->access);
access = isl_union_map_union(access,
isl_union_map_from_map(map_i));
}
return access;
}
/* Should this array reference group be mapped to private, shared or global
* memory?
* If we have computed both a private and a shared tile, then
* the tile with the smallest depth is used. If both have the same depth,
* then the private tile is used.
*/
enum ppcg_group_access_type gpu_array_ref_group_type(
struct gpu_array_ref_group *group)
{
if (group->private_tile && group->shared_tile &&
group->shared_tile->depth < group->private_tile->depth)
return ppcg_access_shared;
if (group->private_tile)
return ppcg_access_private;
if (group->shared_tile)
return ppcg_access_shared;
return ppcg_access_global;
}
/* Return the effective gpu_array_tile associated to "group" or
* NULL if there is no such gpu_array_tile.
*/
struct gpu_array_tile *gpu_array_ref_group_tile(
struct gpu_array_ref_group *group)
{
switch (gpu_array_ref_group_type(group)) {
case ppcg_access_global:
return NULL;
case ppcg_access_shared:
return group->shared_tile;
case ppcg_access_private:
return group->private_tile;
}
}
/* Does the tile associated to "group" require unrolling of the schedule
* dimensions mapped to threads?
* Note that this can only happen for private tiles.
*/
int gpu_array_ref_group_requires_unroll(struct gpu_array_ref_group *group)
{
struct gpu_array_tile *tile;
tile = gpu_array_ref_group_tile(group);
if (!tile)
return 0;
return tile->requires_unroll;
}
/* Given a constraint
*
* a(p,i) + j = g f(e)
*
* or -a(p,i) - j = g f(e) if sign < 0,
* store a(p,i) in bound->shift and g (stride) in bound->stride.
* a(p,i) is assumed to be an expression in only the parameters
* and the input dimensions.
*/
static void extract_stride(__isl_keep isl_constraint *c,
struct gpu_array_bound *bound, __isl_keep isl_val *stride, int sign)
{
int i;
isl_val *v;
isl_space *space;
unsigned nparam;
unsigned nvar;
isl_aff *aff;
isl_val_free(bound->stride);
bound->stride = isl_val_copy(stride);
space = isl_constraint_get_space(c);
space = isl_space_domain(space);
nparam = isl_space_dim(space, isl_dim_param);
nvar = isl_space_dim(space, isl_dim_set);
v = isl_constraint_get_constant_val(c);
if (sign < 0)
v = isl_val_neg(v);
aff = isl_aff_zero_on_domain(isl_local_space_from_space(space));
aff = isl_aff_set_constant_val(aff, v);
for (i = 0; i < nparam; ++i) {
if (!isl_constraint_involves_dims(c, isl_dim_param, i, 1))
continue;
v = isl_constraint_get_coefficient_val(c, isl_dim_param, i);
if (sign < 0)
v = isl_val_neg(v);
aff = isl_aff_add_coefficient_val(aff, isl_dim_param, i, v);
}
for (i = 0; i < nvar; ++i) {
if (!isl_constraint_involves_dims(c, isl_dim_in, i, 1))
continue;
v = isl_constraint_get_coefficient_val(c, isl_dim_in, i);
if (sign < 0)
v = isl_val_neg(v);
aff = isl_aff_add_coefficient_val(aff, isl_dim_in, i, v);
}
bound->shift = aff;
}
/* Given an equality constraint of a map with a single output dimension j,
* check if the constraint is of the form
*
* a(p,i) + j = g f(e)
*
* with a(p,i) an expression in the parameters and input dimensions
* and f(e) an expression in the existentially quantified variables.
* If so, and if g is larger than any such g from a previously considered
* constraint, then call extract_stride to record the stride information
* in bound.
*/
static isl_stat check_stride_constraint(__isl_take isl_constraint *c,
void *user)
{
int i;
isl_ctx *ctx;
isl_val *v;
unsigned n_div;
struct gpu_array_bound *bound = user;
ctx = isl_constraint_get_ctx(c);
n_div = isl_constraint_dim(c, isl_dim_div);
v = isl_constraint_get_coefficient_val(c, isl_dim_out, 0);
if (n_div && (isl_val_is_one(v) || isl_val_is_negone(v))) {
int s = isl_val_sgn(v);
isl_val *stride = isl_val_zero(ctx);
isl_val_free(v);
for (i = 0; i < n_div; ++i) {
v = isl_constraint_get_coefficient_val(c,
isl_dim_div, i);
stride = isl_val_gcd(stride, v);
}
if (!isl_val_is_zero(stride) &&
isl_val_gt(stride, bound->stride))
extract_stride(c, bound, stride, s);
isl_val_free(stride);
} else
isl_val_free(v);
isl_constraint_free(c);
return isl_stat_ok;
}
/* Given contraints on an array index i, check if we can find
* a shift a(p) and a stride g such that
*
* a(p) + i = 0 mod g
*
* If so, record the information in bound and apply the mapping
* i -> (i + a(p))/g to the array index in bounds and return
* the new constraints.
* If not, simply return the original constraints.
*
* If bounds is a subset of the space
*
* D -> i
*
* then the bound recorded in bound->shift is of the form
*
* D -> s(D)
*
* with s(D) equal to a(p) above.
* Next, we construct a mapping of the form
*
* [D -> i] -> [D -> (i + S(D))/g]
*
* This mapping is computed as follows.
* We first introduce "i" in the domain through precomposition
* with [D -> i] -> D obtaining
*
* [D -> i] -> s(D)
*
* Adding [D -> i] -> i produces
*
* [D -> i] -> i + s(D)
*
* and the domain product with [D -> i] -> D yields
*
* [D -> i] -> [D -> i + s(D)]
*
* Composition with [D -> i] -> [D -> i/g] gives the desired result.
*/
static __isl_give isl_basic_map *check_stride(struct gpu_array_bound *bound,
__isl_take isl_basic_map *bounds)
{
isl_space *space;
isl_basic_map *hull;
isl_basic_map *shift, *id, *bmap, *scale;
isl_basic_set *bset;
isl_aff *aff;
bound->stride = NULL;
hull = isl_basic_map_affine_hull(isl_basic_map_copy(bounds));
isl_basic_map_foreach_constraint(hull, &check_stride_constraint, bound);
isl_basic_map_free(hull);
if (!bound->stride)
return bounds;
shift = isl_basic_map_from_aff(isl_aff_copy(bound->shift));
space = isl_basic_map_get_space(bounds);
bmap = isl_basic_map_domain_map(isl_basic_map_universe(space));
shift = isl_basic_map_apply_range(bmap, shift);
space = isl_basic_map_get_space(bounds);
id = isl_basic_map_range_map(isl_basic_map_universe(space));
shift = isl_basic_map_sum(id, shift);
space = isl_basic_map_get_space(bounds);
id = isl_basic_map_domain_map(isl_basic_map_universe(space));
shift = isl_basic_map_range_product(id, shift);
space = isl_space_domain(isl_basic_map_get_space(bounds));
id = isl_basic_map_identity(isl_space_map_from_set(space));
space = isl_space_range(isl_basic_map_get_space(bounds));
aff = isl_aff_zero_on_domain(isl_local_space_from_space(space));
aff = isl_aff_add_coefficient_si(aff, isl_dim_in, 0, 1);
aff = isl_aff_scale_down_val(aff, isl_val_copy(bound->stride));
scale = isl_basic_map_from_aff(aff);
scale = isl_basic_map_product(id, scale);
bmap = isl_basic_map_apply_range(shift, scale);
bset = isl_basic_set_apply(isl_basic_map_wrap(bounds), bmap);
bounds = isl_basic_set_unwrap(bset);
return bounds;
}
/* Data used in compute_array_dim_size and compute_size_in_direction.
*
* pos is the position of the variable representing the array index,
* i.e., the variable for which want to compute the size. This variable
* is also the last variable in the set.
*/
struct gpu_size_info {
isl_basic_set *bset;
struct gpu_array_bound *bound;
int pos;
};
/* Given a constraint from the basic set describing the bounds on
* an array index, check if it is a lower bound, say m i >= b(x), and,
* if so, check whether the expression "i - ceil(b(x)/m) + 1" has a constant
* upper bound. If so, and if this bound is smaller than any bound
* derived from earlier constraints, set the size to this bound on
* the expression and the lower bound to ceil(b(x)/m).
*/
static isl_stat compute_size_in_direction(__isl_take isl_constraint *c,
void *user)
{
struct gpu_size_info *size = user;
unsigned nparam;
unsigned n_div;
isl_val *v;
isl_aff *aff;
isl_aff *lb;
nparam = isl_basic_set_dim(size->bset, isl_dim_param);
n_div = isl_constraint_dim(c, isl_dim_div);
if (isl_constraint_involves_dims(c, isl_dim_div, 0, n_div) ||
!isl_constraint_is_lower_bound(c, isl_dim_set, size->pos)) {
isl_constraint_free(c);
return isl_stat_ok;
}
aff = isl_constraint_get_bound(c, isl_dim_set, size->pos);
aff = isl_aff_ceil(aff);
lb = isl_aff_copy(aff);
aff = isl_aff_neg(aff);
aff = isl_aff_add_coefficient_si(aff, isl_dim_in, size->pos, 1);
v = isl_basic_set_max_val(size->bset, aff);
isl_aff_free(aff);
if (isl_val_is_int(v)) {
v = isl_val_add_ui(v, 1);
if (!size->bound->size || isl_val_lt(v, size->bound->size)) {
isl_val_free(size->bound->size);
size->bound->size = isl_val_copy(v);
lb = isl_aff_drop_dims(lb, isl_dim_in, size->pos, 1);
isl_aff_free(size->bound->lb);
size->bound->lb = isl_aff_copy(lb);
}
}
isl_val_free(v);
isl_aff_free(lb);
isl_constraint_free(c);
return isl_stat_ok;
}
/* Given a basic map "bounds" that maps parameters and input dimensions
* to a single output dimension, look for an expression in the parameters
* and input dimensions such that the range of the output dimension shifted
* by this expression is a constant.
*
* In particular, we currently only consider lower bounds on the output
* dimension as candidate expressions.
*/
static int compute_array_dim_size(struct gpu_array_bound *bound,
__isl_take isl_basic_map *bounds)
{
struct gpu_size_info size;
bounds = isl_basic_map_detect_equalities(bounds);
bounds = check_stride(bound, bounds);
bound->size = NULL;
bound->lb = NULL;
size.bound = bound;
size.pos = isl_basic_map_dim(bounds, isl_dim_in);
size.bset = isl_basic_map_wrap(bounds);
size.bset = isl_basic_set_flatten(size.bset);
size.bset = isl_set_simple_hull(isl_basic_set_compute_divs(size.bset));
isl_basic_set_foreach_constraint(size.bset, &compute_size_in_direction,
&size);
isl_basic_set_free(size.bset);
return bound->size ? 0 : -1;
}
/* Check if we can find a memory tile for the given array
* based on the given accesses, and if so, put the results in "tile".
*
* We project the accesses on each index in turn and look for a parametric
* offset such that the size is constant.
*
* tile->depth is initialized to the input dimension of the computed bounds.
*/
static int can_tile(__isl_keep isl_map *access, struct gpu_array_tile *tile)
{
int i;
tile->depth = isl_map_dim(access, isl_dim_in);
for (i = 0; i < tile->n; ++i) {
isl_map *access_i;
isl_basic_map *hull;
access_i = isl_map_copy(access);
access_i = isl_map_project_out(access_i, isl_dim_out, 0, i);
access_i = isl_map_project_out(access_i, isl_dim_out,
1, tile->n - (i + 1));
access_i = isl_map_compute_divs(access_i);
hull = isl_map_simple_hull(access_i);
if (compute_array_dim_size(&tile->bound[i], hull) < 0)
return 0;
}
return 1;
}
/* Internal data structure for gpu_group_references.
*
* scop represents the input scop.
* kernel_depth is the schedule depth where the kernel launch will
* be introduced, i.e., it is the depth of the band that is mapped
* to blocks.
* shared_depth is the schedule depth at which the copying to/from
* shared memory is computed. The copy operation may then
* later be hoisted to a higher level.
* thread_depth is the schedule depth where the thread mark is located,
* i.e., it is the depth of the band that is mapped to threads and also
* the schedule depth at which the copying to/from private memory
* is computed. The copy operation may then later be hoisted to
* a higher level.
* n_thread is the number of schedule dimensions in the band that
* is mapped to threads.
* privatization lives in the range of thread_sched (i.e., it is
* of dimension thread_depth + n_thread) and encodes the mapping
* to thread identifiers (as parameters).
* host_sched contains the kernel_depth dimensions of the host schedule.
* shared_sched contains the first shared_depth dimensions of the
* kernel schedule.
* copy_sched contains the first thread_depth dimensions of the
* kernel schedule.
* thread_sched contains the first (thread_depth + n_thread) dimensions
* of the kernel schedule.
* full_sched is a union_map representation of the entire kernel schedule.
* The schedules are all formulated in terms of the original statement
* instances, i.e., those that appear in the domains of the access
* relations.
*/
struct gpu_group_data {
struct ppcg_scop *scop;
int kernel_depth;
int shared_depth;
int thread_depth;
int n_thread;
isl_set *privatization;
isl_union_map *host_sched;
isl_union_map *shared_sched;
isl_union_map *copy_sched;
isl_union_map *thread_sched;
isl_union_map *full_sched;
};
/* Construct a map from domain_space to domain_space that increments
* the dimension at position "pos" and leaves all other dimensions
* constant.
*/
static __isl_give isl_map *next(__isl_take isl_space *domain_space, int pos)
{
isl_space *space;
isl_aff *aff;
isl_multi_aff *next;
space = isl_space_map_from_set(domain_space);
next = isl_multi_aff_identity(space);
aff = isl_multi_aff_get_aff(next, pos);
aff = isl_aff_add_constant_si(aff, 1);
next = isl_multi_aff_set_aff(next, pos, aff);
return isl_map_from_multi_aff(next);
}
/* Check if the given access is coalesced (or if there is no point
* in trying to coalesce the access by mapping the array to shared memory).
* That is, check whether incrementing the dimension that will get
* wrapped over the last thread index results in incrementing
* the last array index.
*
* If no two consecutive array elements are ever accessed by "access",
* then mapping the corresponding array to shared memory will not
* improve coalescing. In fact, the copying will likely be performed
* by a single thread. Consider the access as coalesced such that
* the caller will not try and map the array to shared memory just
* to improve coalescing.
*
* This function is only called for access relations without reuse and
* kernels with at least one thread identifier.
*/
static int access_is_coalesced(struct gpu_group_data *data,
__isl_keep isl_union_map *access)
{
int dim;
isl_space *space;
isl_set *accessed;
isl_map *access_map;
isl_map *next_thread_x;
isl_map *next_element;
isl_map *map;
int coalesced, empty;
access = isl_union_map_copy(access);
access = isl_union_map_apply_domain(access,
isl_union_map_copy(data->full_sched));
access_map = isl_map_from_union_map(access);
space = isl_map_get_space(access_map);
space = isl_space_range(space);
dim = isl_space_dim(space, isl_dim_set);
if (dim == 0)
next_element = isl_map_empty(isl_space_map_from_set(space));
else
next_element = next(space, dim - 1);
accessed = isl_map_range(isl_map_copy(access_map));
map = isl_map_copy(next_element);
map = isl_map_intersect_domain(map, isl_set_copy(accessed));
map = isl_map_intersect_range(map, accessed);
empty = isl_map_is_empty(map);
isl_map_free(map);
if (empty < 0 || empty) {
isl_map_free(next_element);
isl_map_free(access_map);
return empty;
}
space = isl_map_get_space(access_map);
space = isl_space_domain(space);
next_thread_x = next(space, data->thread_depth + data->n_thread - 1);
map = isl_map_apply_domain(next_thread_x, isl_map_copy(access_map));
map = isl_map_apply_range(map, access_map);
coalesced = isl_map_is_subset(map, next_element);
isl_map_free(next_element);
isl_map_free(map);
return coalesced;
}
/* Replace the host schedule dimensions in the access relation "access"
* by parameters, so that they are treated as fixed when checking for reuse
* (within a kernel) or whether two consecutive elements are accessed
* (within a kernel).
*/
static __isl_give isl_union_map *localize_access(struct gpu_group_data *data,
__isl_take isl_union_map *access)
{
int n;
isl_space *space;
isl_set *param;
isl_union_map *umap;
isl_id_list *ids;
umap = isl_union_map_copy(data->host_sched);
space = isl_union_map_get_space(umap);
n = data->kernel_depth;
ids = ppcg_scop_generate_names(data->scop, n, "__ppcg_host_");
param = parametrization(space, n, 0, ids);
isl_id_list_free(ids);
umap = isl_union_map_intersect_range(umap,
isl_union_set_from_set(param));
access = isl_union_map_intersect_domain(access,
isl_union_map_domain(umap));
return access;
}
/* Given an access relation in terms of at least data->thread_depth initial
* dimensions of the computed schedule, check if it is bijective for
* fixed values of the first data->thread_depth dimensions.
* We perform this check by equating these dimensions to parameters.
*/
static int access_is_bijective(struct gpu_group_data *data,
__isl_keep isl_map *access)
{
int res;
int dim;
isl_set *par;
isl_space *space;
isl_id_list *ids;
access = isl_map_copy(access);
space = isl_space_params(isl_map_get_space(access));
ids = ppcg_scop_generate_names(data->scop, data->thread_depth, "s");
dim = isl_map_dim(access, isl_dim_in);
par = parametrization(space, dim, 0, ids);
isl_id_list_free(ids);
access = isl_map_intersect_domain(access, par);
res = isl_map_is_bijective(access);
isl_map_free(access);
return res;
}
/* Compute the number of outer schedule tile dimensions that affect
* the offset of "tile".
* If there is no such dimension, then return the index
* of the first kernel dimension, i.e., data->kernel_depth.
*/
static int compute_tile_depth(struct gpu_group_data *data,
struct gpu_array_tile *tile)
{
int i, j;
for (j = tile->depth - 1; j >= data->kernel_depth; --j) {
for (i = 0; i < tile->n; ++i) {
isl_aff *lb;
isl_aff *shift;
lb = tile->bound[i].lb;
if (isl_aff_involves_dims(lb, isl_dim_in, j, 1))
break;
shift = tile->bound[i].shift;
if (!shift)
continue;
if (isl_aff_involves_dims(shift, isl_dim_in, j, 1))
break;
}
if (i < tile->n)
break;
}
return ++j;
}
/* Return the lowest depth between data->kernel_depth and data->thread_depth
* at which every array element accessed through "acc" is accessed
* by a single thread. The input dimension of "acc" is
* data->thread_depth + data->n_thread, where the final data->n_thread
* dimensions are those that will be mapped to threads.
* If the values for these dimensions are uniquely determined
* by the array index and a given number of outer dimensions, then
* there is only one thread accessing that array element within those
* outer dimensions.
*
* The input space of "acc" is first split up, such that it has the form
*
* [O -> T] -> A
*
* with O the outer dimensions, T the dimensions that will be mapped to threads
* and A the array index.
*
* Then the positions of T and A are interchanged to simplify the test
* whether T uniquely depends on O and A.
* In particular, the above access relation is first combined with
*
* [O -> T] -> T
*
* to form
*
* [O -> T] -> [A -> T]
*
* from which
*
* O -> [A -> T]
*
* is extracted, which is then uncurried to
*
* [O -> A] -> T
*
* Finally, the final dimensions of O are projected out one by one
* until T is no longer uniquely determined by A and the remaining
* dimensions in O. The value returned is that of the last dimension
* that was successfully projected out.
* Note that there is no need to test whether [O -> A] -> T itself
* is single-valued as that was already tested in access_is_bijective.
*/
static int compute_accessed_by_single_thread_depth(struct gpu_group_data *data,
__isl_keep isl_map *acc)
{
int i;
isl_space *space;
isl_map *map;
isl_bool sv;
if (data->thread_depth == data->kernel_depth)
return data->thread_depth;
acc = isl_map_copy(acc);
space = isl_map_get_space(acc);
space = isl_space_params(space);
space = isl_space_set_from_params(space);
space = isl_space_add_dims(space, isl_dim_set, data->thread_depth);
space = isl_space_from_domain(space);
space = isl_space_add_dims(space, isl_dim_out, data->n_thread);
space = isl_space_wrap(space);
map = isl_set_flatten_map(isl_set_universe(space));
acc = isl_map_apply_range(map, acc);
space = isl_space_domain(isl_map_get_space(acc));
map = isl_map_range_map(isl_map_universe(isl_space_unwrap(space)));
acc = isl_map_range_product(acc, map);
acc = isl_map_domain_factor_domain(acc);
acc = isl_map_uncurry(acc);
for (i = data->thread_depth - 1; i >= data->kernel_depth; --i) {
acc = isl_map_project_out(acc, isl_dim_in, i, 1);
sv = isl_map_is_single_valued(acc);
if (sv < 0)
return -1;
if (!sv)
break;
}
isl_map_free(acc);
return ++i;
}
/* Adjust the fields of "tile" to reflect the new input dimension "depth".
* The dimension beyond "depth" are assumed not to affect the tile,
* so they can simply be dropped.
*/
static int tile_adjust_depth(struct gpu_array_tile *tile, int depth)
{
int i;
if (tile->depth == depth)
return 0;
for (i = 0; i < tile->n; ++i) {
tile->bound[i].lb = isl_aff_drop_dims(tile->bound[i].lb,
isl_dim_in, depth, tile->depth - depth);
if (!tile->bound[i].lb)
return -1;
if (!tile->bound[i].shift)
continue;
tile->bound[i].shift = isl_aff_drop_dims(tile->bound[i].shift,
isl_dim_in, depth, tile->depth - depth);
if (!tile->bound[i].shift)
return -1;
}
tile->depth = depth;
return 0;
}
/* Determine the number of schedule dimensions that affect the offset of the
* shared or private tile "tile" and store the result in tile->depth, with
* a lower bound of data->kernel_depth.
* Also adjust the fields of the tile to only refer to the tile->depth
* outer schedule dimensions.
*/
static isl_stat tile_set_depth(struct gpu_group_data *data,
struct gpu_array_tile *tile)
{
if (tile_adjust_depth(tile, compute_tile_depth(data, tile)) < 0)
return isl_stat_error;
return isl_stat_ok;
}
/* Determine the number of schedule dimensions that affect the offset of the
* shared tile and store the minimum of the private and shared tile depth
* in group->min_depth, with a lower bound of data->kernel_depth.
* If there is no tile defined on the array reference group,
* then set group->min_depth to data->thread_depth.
*/
static int set_depth(struct gpu_group_data *data,
struct gpu_array_ref_group *group)
{
group->min_depth = data->thread_depth;
if (group->private_tile) {
if (group->private_tile->depth < group->min_depth)
group->min_depth = group->private_tile->depth;
}
if (group->shared_tile) {
if (tile_set_depth(data, group->shared_tile) < 0)
return -1;
if (group->shared_tile->depth < group->min_depth)
group->min_depth = group->shared_tile->depth;
}
return 0;
}
/* Fill up the groups array with singleton groups, i.e., one group
* per reference, initializing the array, access, write, n_ref and refs fields.
* In particular the access field is initialized to the scheduled
* access relation of the array reference.
*
* Return the number of elements initialized, i.e., the number of
* active references in the current kernel.
*/
static int populate_array_references(struct gpu_local_array_info *local,
struct gpu_array_ref_group **groups, struct gpu_group_data *data)
{
int i;
int n;
isl_ctx *ctx = isl_union_map_get_ctx(data->copy_sched);
n = 0;
for (i = 0; i < local->array->n_ref; ++i) {
isl_union_map *umap;
isl_map *map;
struct gpu_array_ref_group *group;
struct gpu_stmt_access *access = local->array->refs[i];
map = isl_map_copy(access->access);
umap = isl_union_map_from_map(map);
umap = isl_union_map_apply_domain(umap,
isl_union_map_copy(data->copy_sched));
if (isl_union_map_is_empty(umap)) {
isl_union_map_free(umap);
continue;
}
map = isl_map_from_union_map(umap);
map = isl_map_detect_equalities(map);
group = isl_calloc_type(ctx, struct gpu_array_ref_group);
if (!group)
return -1;
group->local_array = local;
group->array = local->array;
group->access = map;
group->write = access->write;
group->exact_write = access->exact_write;
group->slice = access->n_index < local->array->n_index;
group->refs = &local->array->refs[i];
group->n_ref = 1;
groups[n++] = group;
}
return n;
}
/* If group->n_ref == 1, then group->refs was set by
* populate_array_references to point directly into
* group->array->refs and should not be freed.
* If group->n_ref > 1, then group->refs was set by join_groups
* to point to a newly allocated array.
*/
struct gpu_array_ref_group *gpu_array_ref_group_free(
struct gpu_array_ref_group *group)
{
if (!group)
return NULL;
gpu_array_tile_free(group->shared_tile);
gpu_array_tile_free(group->private_tile);
isl_map_free(group->access);
if (group->n_ref > 1)
free(group->refs);
free(group);
return NULL;
}
/* Check if the access relations of group1 and group2 overlap within
* copy_sched.
*/
static int accesses_overlap(struct gpu_array_ref_group *group1,
struct gpu_array_ref_group *group2)
{
int disjoint;
disjoint = isl_map_is_disjoint(group1->access, group2->access);
if (disjoint < 0)
return -1;
return !disjoint;
}
/* Combine the given two groups into a single group, containing
* the references of both groups.
*/
static struct gpu_array_ref_group *join_groups(
struct gpu_array_ref_group *group1,
struct gpu_array_ref_group *group2)
{
int i;
isl_ctx *ctx;
struct gpu_array_ref_group *group;
if (!group1 || !group2)
return NULL;
ctx = isl_map_get_ctx(group1->access);
group = isl_calloc_type(ctx, struct gpu_array_ref_group);
if (!group)
return NULL;
group->local_array = group1->local_array;
group->array = group1->array;
group->access = isl_map_union(isl_map_copy(group1->access),
isl_map_copy(group2->access));
group->write = group1->write || group2->write;
group->exact_write = group1->exact_write && group2->exact_write;
group->slice = group1->slice || group2->slice;
group->n_ref = group1->n_ref + group2->n_ref;
group->refs = isl_alloc_array(ctx, struct gpu_stmt_access *,
group->n_ref);
if (!group->refs)
return gpu_array_ref_group_free(group);
for (i = 0; i < group1->n_ref; ++i)
group->refs[i] = group1->refs[i];
for (i = 0; i < group2->n_ref; ++i)
group->refs[group1->n_ref + i] = group2->refs[i];
return group;
}
/* Combine the given two groups into a single group and free
* the original two groups.
*/
static struct gpu_array_ref_group *join_groups_and_free(
struct gpu_array_ref_group *group1,
struct gpu_array_ref_group *group2)
{
struct gpu_array_ref_group *group;
group = join_groups(group1, group2);
gpu_array_ref_group_free(group1);
gpu_array_ref_group_free(group2);
return group;
}
/* Report that the array reference group with the given access relation
* is not mapped to shared memory in the given kernel because
* it does not exhibit any reuse and is considered to be coalesced.
*/
static void report_no_reuse_and_coalesced(struct ppcg_kernel *kernel,
__isl_keep isl_union_map *access)
{
isl_ctx *ctx;
isl_printer *p;
ctx = isl_union_map_get_ctx(access);
p = isl_printer_to_file(ctx, stdout);
p = isl_printer_print_str(p, "Array reference group ");
p = isl_printer_print_union_map(p, access);
p = isl_printer_print_str(p,
" not considered for mapping to shared memory in kernel");
p = isl_printer_print_int(p, kernel->id);
p = isl_printer_print_str(p,
" because it exhibits no reuse and is considered to be coalesced");
p = isl_printer_end_line(p);
isl_printer_free(p);
}
/* Given an access relation in terms of the data->thread_depth initial
* dimensions of the computed schedule and the thread identifiers
* (as parameters), check if the use of the corresponding private tile
* requires unrolling.
*
* If we are creating a private tile because we are forced to,
* then no unrolling is required.
* Otherwise we check if "access" is bijective and unrolling
* is required if it is not. Note that the access relation
* has already been determined to be bijective before the introduction
* of the thread identifiers and the removal of the schedule dimensions
* that are mapped to these threads. If the access relation is no longer
* bijective, then this means that more than one value of one of those
* schedule dimensions is mapped to the same thread and therefore
* unrolling is required.
*/
static int check_requires_unroll(struct gpu_group_data *data,
__isl_keep isl_map *access, int force_private)
{
int bijective;
if (force_private)
return 0;
bijective = access_is_bijective(data, access);
if (bijective < 0)
return -1;
return !bijective;