Makefile.am: add gitversion.h to BUILT_SOURCES
[ppcg.git] / gpu_group.c
blob565e38b14ac9963d51a81be28cf1d3d544854d1d
1 /*
2 * Copyright 2010-2011 INRIA Saclay
3 * Copyright 2012-2014 Ecole Normale Superieure
4 * Copyright 2015 Sven Verdoolaege
6 * Use of this software is governed by the MIT license
8 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
9 * Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
10 * 91893 Orsay, France
11 * and Ecole Normale Superieure, 45 rue d'Ulm, 75230 Paris, France
14 #include <isl/constraint.h>
15 #include <isl/ilp.h>
17 #include "gpu_array_tile.h"
18 #include "gpu_group.h"
19 #include "gpu_tree.h"
20 #include "schedule.h"
22 /* Print the name of the local copy of a given group of array references.
24 __isl_give isl_printer *gpu_array_ref_group_print_name(
25 struct gpu_array_ref_group *group, __isl_take isl_printer *p)
27 int global = 0;
28 enum ppcg_group_access_type type;
30 type = gpu_array_ref_group_type(group);
31 if (type == ppcg_access_private)
32 p = isl_printer_print_str(p, "private_");
33 else if (type == ppcg_access_shared)
34 p = isl_printer_print_str(p, "shared_");
35 else
36 global = 1;
37 p = isl_printer_print_str(p, group->array->name);
38 if (!global && group->local_array->n_group > 1) {
39 p = isl_printer_print_str(p, "_");
40 p = isl_printer_print_int(p, group->nr);
43 return p;
46 /* Return the union of all read (read = 1) and/or write (write = 1)
47 * access relations in the group.
49 __isl_give isl_union_map *gpu_array_ref_group_access_relation(
50 struct gpu_array_ref_group *group, int read, int write)
52 int i;
53 isl_union_map *access;
55 access = isl_union_map_empty(isl_map_get_space(group->access));
56 for (i = 0; i < group->n_ref; ++i) {
57 isl_map *map_i;
59 if (!((read && group->refs[i]->read) ||
60 (write && group->refs[i]->write)))
61 continue;
62 map_i = isl_map_copy(group->refs[i]->access);
63 access = isl_union_map_union(access,
64 isl_union_map_from_map(map_i));
67 return access;
70 /* Should this array reference group be mapped to private, shared or global
71 * memory?
72 * If we have computed both a private and a shared tile, then
73 * the tile with the smallest depth is used. If both have the same depth,
74 * then the private tile is used.
76 enum ppcg_group_access_type gpu_array_ref_group_type(
77 struct gpu_array_ref_group *group)
79 if (group->private_tile && group->shared_tile &&
80 group->shared_tile->depth < group->private_tile->depth)
81 return ppcg_access_shared;
82 if (group->private_tile)
83 return ppcg_access_private;
84 if (group->shared_tile)
85 return ppcg_access_shared;
86 return ppcg_access_global;
90 /* Return the effective gpu_array_tile associated to "group" or
91 * NULL if there is no such gpu_array_tile.
93 struct gpu_array_tile *gpu_array_ref_group_tile(
94 struct gpu_array_ref_group *group)
96 switch (gpu_array_ref_group_type(group)) {
97 case ppcg_access_global:
98 return NULL;
99 case ppcg_access_shared:
100 return group->shared_tile;
101 case ppcg_access_private:
102 return group->private_tile;
106 /* Does the tile associated to "group" require unrolling of the schedule
107 * dimensions mapped to threads?
108 * Note that this can only happen for private tiles.
110 int gpu_array_ref_group_requires_unroll(struct gpu_array_ref_group *group)
112 struct gpu_array_tile *tile;
114 tile = gpu_array_ref_group_tile(group);
115 if (!tile)
116 return 0;
117 return tile->requires_unroll;
120 /* Given a constraint
122 * a(p,i) + j = g f(e)
124 * or -a(p,i) - j = g f(e) if sign < 0,
125 * store a(p,i) in bound->shift and g (stride) in bound->stride.
126 * a(p,i) is assumed to be an expression in only the parameters
127 * and the input dimensions.
129 static void extract_stride(__isl_keep isl_constraint *c,
130 struct gpu_array_bound *bound, __isl_keep isl_val *stride, int sign)
132 int i;
133 isl_val *v;
134 isl_space *space;
135 unsigned nparam;
136 unsigned nvar;
137 isl_aff *aff;
139 isl_val_free(bound->stride);
140 bound->stride = isl_val_copy(stride);
142 space = isl_constraint_get_space(c);
143 space = isl_space_domain(space);
145 nparam = isl_space_dim(space, isl_dim_param);
146 nvar = isl_space_dim(space, isl_dim_set);
148 v = isl_constraint_get_constant_val(c);
149 if (sign < 0)
150 v = isl_val_neg(v);
151 aff = isl_aff_zero_on_domain(isl_local_space_from_space(space));
152 aff = isl_aff_set_constant_val(aff, v);
154 for (i = 0; i < nparam; ++i) {
155 if (!isl_constraint_involves_dims(c, isl_dim_param, i, 1))
156 continue;
157 v = isl_constraint_get_coefficient_val(c, isl_dim_param, i);
158 if (sign < 0)
159 v = isl_val_neg(v);
160 aff = isl_aff_add_coefficient_val(aff, isl_dim_param, i, v);
163 for (i = 0; i < nvar; ++i) {
164 if (!isl_constraint_involves_dims(c, isl_dim_in, i, 1))
165 continue;
166 v = isl_constraint_get_coefficient_val(c, isl_dim_in, i);
167 if (sign < 0)
168 v = isl_val_neg(v);
169 aff = isl_aff_add_coefficient_val(aff, isl_dim_in, i, v);
172 bound->shift = aff;
175 /* Given an equality constraint of a map with a single output dimension j,
176 * check if the constraint is of the form
178 * a(p,i) + j = g f(e)
180 * with a(p,i) an expression in the parameters and input dimensions
181 * and f(e) an expression in the existentially quantified variables.
182 * If so, and if g is larger than any such g from a previously considered
183 * constraint, then call extract_stride to record the stride information
184 * in bound.
186 static isl_stat check_stride_constraint(__isl_take isl_constraint *c,
187 void *user)
189 int i;
190 isl_ctx *ctx;
191 isl_val *v;
192 unsigned n_div;
193 struct gpu_array_bound *bound = user;
195 ctx = isl_constraint_get_ctx(c);
196 n_div = isl_constraint_dim(c, isl_dim_div);
197 v = isl_constraint_get_coefficient_val(c, isl_dim_out, 0);
199 if (n_div && (isl_val_is_one(v) || isl_val_is_negone(v))) {
200 int s = isl_val_sgn(v);
201 isl_val *stride = isl_val_zero(ctx);
203 isl_val_free(v);
204 for (i = 0; i < n_div; ++i) {
205 v = isl_constraint_get_coefficient_val(c,
206 isl_dim_div, i);
207 stride = isl_val_gcd(stride, v);
209 if (!isl_val_is_zero(stride) &&
210 isl_val_gt(stride, bound->stride))
211 extract_stride(c, bound, stride, s);
213 isl_val_free(stride);
214 } else
215 isl_val_free(v);
217 isl_constraint_free(c);
218 return isl_stat_ok;
221 /* Given contraints on an array index i, check if we can find
222 * a shift a(p) and a stride g such that
224 * a(p) + i = 0 mod g
226 * If so, record the information in bound and apply the mapping
227 * i -> (i + a(p))/g to the array index in bounds and return
228 * the new constraints.
229 * If not, simply return the original constraints.
231 * If bounds is a subset of the space
233 * D -> i
235 * then the bound recorded in bound->shift is of the form
237 * D -> s(D)
239 * with s(D) equal to a(p) above.
240 * Next, we construct a mapping of the form
242 * [D -> i] -> [D -> (i + S(D))/g]
244 * This mapping is computed as follows.
245 * We first introduce "i" in the domain through precomposition
246 * with [D -> i] -> D obtaining
248 * [D -> i] -> s(D)
250 * Adding [D -> i] -> i produces
252 * [D -> i] -> i + s(D)
254 * and the domain product with [D -> i] -> D yields
256 * [D -> i] -> [D -> i + s(D)]
258 * Composition with [D -> i] -> [D -> i/g] gives the desired result.
260 static __isl_give isl_basic_map *check_stride(struct gpu_array_bound *bound,
261 __isl_take isl_basic_map *bounds)
263 isl_space *space;
264 isl_basic_map *hull;
265 isl_basic_map *shift, *id, *bmap, *scale;
266 isl_basic_set *bset;
267 isl_aff *aff;
269 bound->stride = NULL;
271 hull = isl_basic_map_affine_hull(isl_basic_map_copy(bounds));
273 isl_basic_map_foreach_constraint(hull, &check_stride_constraint, bound);
275 isl_basic_map_free(hull);
277 if (!bound->stride)
278 return bounds;
280 shift = isl_basic_map_from_aff(isl_aff_copy(bound->shift));
281 space = isl_basic_map_get_space(bounds);
282 bmap = isl_basic_map_domain_map(isl_basic_map_universe(space));
283 shift = isl_basic_map_apply_range(bmap, shift);
284 space = isl_basic_map_get_space(bounds);
285 id = isl_basic_map_range_map(isl_basic_map_universe(space));
286 shift = isl_basic_map_sum(id, shift);
287 space = isl_basic_map_get_space(bounds);
288 id = isl_basic_map_domain_map(isl_basic_map_universe(space));
289 shift = isl_basic_map_range_product(id, shift);
291 space = isl_space_domain(isl_basic_map_get_space(bounds));
292 id = isl_basic_map_identity(isl_space_map_from_set(space));
293 space = isl_space_range(isl_basic_map_get_space(bounds));
294 aff = isl_aff_zero_on_domain(isl_local_space_from_space(space));
295 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, 0, 1);
296 aff = isl_aff_scale_down_val(aff, isl_val_copy(bound->stride));
297 scale = isl_basic_map_from_aff(aff);
298 scale = isl_basic_map_product(id, scale);
300 bmap = isl_basic_map_apply_range(shift, scale);
301 bset = isl_basic_set_apply(isl_basic_map_wrap(bounds), bmap);
302 bounds = isl_basic_set_unwrap(bset);
304 return bounds;
307 /* Data used in compute_array_dim_size and compute_size_in_direction.
309 * pos is the position of the variable representing the array index,
310 * i.e., the variable for which want to compute the size. This variable
311 * is also the last variable in the set.
313 struct gpu_size_info {
314 isl_basic_set *bset;
315 struct gpu_array_bound *bound;
316 int pos;
319 /* Given a constraint from the basic set describing the bounds on
320 * an array index, check if it is a lower bound, say m i >= b(x), and,
321 * if so, check whether the expression "i - ceil(b(x)/m) + 1" has a constant
322 * upper bound. If so, and if this bound is smaller than any bound
323 * derived from earlier constraints, set the size to this bound on
324 * the expression and the lower bound to ceil(b(x)/m).
326 static isl_stat compute_size_in_direction(__isl_take isl_constraint *c,
327 void *user)
329 struct gpu_size_info *size = user;
330 unsigned nparam;
331 unsigned n_div;
332 isl_val *v;
333 isl_aff *aff;
334 isl_aff *lb;
336 nparam = isl_basic_set_dim(size->bset, isl_dim_param);
337 n_div = isl_constraint_dim(c, isl_dim_div);
339 if (isl_constraint_involves_dims(c, isl_dim_div, 0, n_div) ||
340 !isl_constraint_is_lower_bound(c, isl_dim_set, size->pos)) {
341 isl_constraint_free(c);
342 return isl_stat_ok;
345 aff = isl_constraint_get_bound(c, isl_dim_set, size->pos);
346 aff = isl_aff_ceil(aff);
348 lb = isl_aff_copy(aff);
350 aff = isl_aff_neg(aff);
351 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, size->pos, 1);
353 v = isl_basic_set_max_val(size->bset, aff);
354 isl_aff_free(aff);
356 if (isl_val_is_int(v)) {
357 v = isl_val_add_ui(v, 1);
358 if (!size->bound->size || isl_val_lt(v, size->bound->size)) {
359 isl_val_free(size->bound->size);
360 size->bound->size = isl_val_copy(v);
361 lb = isl_aff_drop_dims(lb, isl_dim_in, size->pos, 1);
362 isl_aff_free(size->bound->lb);
363 size->bound->lb = isl_aff_copy(lb);
366 isl_val_free(v);
367 isl_aff_free(lb);
369 isl_constraint_free(c);
371 return isl_stat_ok;
374 /* Given a basic map "bounds" that maps parameters and input dimensions
375 * to a single output dimension, look for an expression in the parameters
376 * and input dimensions such that the range of the output dimension shifted
377 * by this expression is a constant.
379 * In particular, we currently only consider lower bounds on the output
380 * dimension as candidate expressions.
382 static int compute_array_dim_size(struct gpu_array_bound *bound,
383 __isl_take isl_basic_map *bounds)
385 struct gpu_size_info size;
387 bounds = isl_basic_map_detect_equalities(bounds);
388 bounds = check_stride(bound, bounds);
390 bound->size = NULL;
391 bound->lb = NULL;
393 size.bound = bound;
394 size.pos = isl_basic_map_dim(bounds, isl_dim_in);
395 size.bset = isl_basic_map_wrap(bounds);
396 size.bset = isl_basic_set_flatten(size.bset);
397 size.bset = isl_set_simple_hull(isl_basic_set_compute_divs(size.bset));
398 isl_basic_set_foreach_constraint(size.bset, &compute_size_in_direction,
399 &size);
400 isl_basic_set_free(size.bset);
402 return bound->size ? 0 : -1;
405 /* Check if we can find a memory tile for the given array
406 * based on the given accesses, and if so, put the results in "tile".
408 * We project the accesses on each index in turn and look for a parametric
409 * offset such that the size is constant.
411 * tile->depth is initialized to the input dimension of the computed bounds.
413 static int can_tile(__isl_keep isl_map *access, struct gpu_array_tile *tile)
415 int i;
417 tile->depth = isl_map_dim(access, isl_dim_in);
419 for (i = 0; i < tile->n; ++i) {
420 isl_map *access_i;
421 isl_basic_map *hull;
423 access_i = isl_map_copy(access);
424 access_i = isl_map_project_out(access_i, isl_dim_out, 0, i);
425 access_i = isl_map_project_out(access_i, isl_dim_out,
426 1, tile->n - (i + 1));
427 access_i = isl_map_compute_divs(access_i);
428 hull = isl_map_simple_hull(access_i);
429 if (compute_array_dim_size(&tile->bound[i], hull) < 0)
430 return 0;
433 return 1;
436 /* Internal data structure for gpu_group_references.
438 * scop represents the input scop.
439 * kernel_depth is the schedule depth where the kernel launch will
440 * be introduced, i.e., it is the depth of the band that is mapped
441 * to blocks.
442 * shared_depth is the schedule depth at which the copying to/from
443 * shared memory is computed. The copy operation may then
444 * later be hoisted to a higher level.
445 * thread_depth is the schedule depth where the thread mark is located,
446 * i.e., it is the depth of the band that is mapped to threads and also
447 * the schedule depth at which the copying to/from private memory
448 * is computed. The copy operation may then later be hoisted to
449 * a higher level.
450 * n_thread is the number of schedule dimensions in the band that
451 * is mapped to threads.
452 * privatization lives in the range of thread_sched (i.e., it is
453 * of dimension thread_depth + n_thread) and encodes the mapping
454 * to thread identifiers (as parameters).
455 * host_sched contains the kernel_depth dimensions of the host schedule.
456 * shared_sched contains the first shared_depth dimensions of the
457 * kernel schedule.
458 * copy_sched contains the first thread_depth dimensions of the
459 * kernel schedule.
460 * thread_sched contains the first (thread_depth + n_thread) dimensions
461 * of the kernel schedule.
462 * full_sched is a union_map representation of the entire kernel schedule.
463 * The schedules are all formulated in terms of the original statement
464 * instances, i.e., those that appear in the domains of the access
465 * relations.
467 struct gpu_group_data {
468 struct ppcg_scop *scop;
469 int kernel_depth;
470 int shared_depth;
471 int thread_depth;
472 int n_thread;
473 isl_set *privatization;
474 isl_union_map *host_sched;
475 isl_union_map *shared_sched;
476 isl_union_map *copy_sched;
477 isl_union_map *thread_sched;
478 isl_union_map *full_sched;
481 /* Construct a map from domain_space to domain_space that increments
482 * the dimension at position "pos" and leaves all other dimensions
483 * constant.
485 static __isl_give isl_map *next(__isl_take isl_space *domain_space, int pos)
487 isl_space *space;
488 isl_aff *aff;
489 isl_multi_aff *next;
491 space = isl_space_map_from_set(domain_space);
492 next = isl_multi_aff_identity(space);
493 aff = isl_multi_aff_get_aff(next, pos);
494 aff = isl_aff_add_constant_si(aff, 1);
495 next = isl_multi_aff_set_aff(next, pos, aff);
497 return isl_map_from_multi_aff(next);
500 /* Check if the given access is coalesced (or if there is no point
501 * in trying to coalesce the access by mapping the array to shared memory).
502 * That is, check whether incrementing the dimension that will get
503 * wrapped over the last thread index results in incrementing
504 * the last array index.
506 * If no two consecutive array elements are ever accessed by "access",
507 * then mapping the corresponding array to shared memory will not
508 * improve coalescing. In fact, the copying will likely be performed
509 * by a single thread. Consider the access as coalesced such that
510 * the caller will not try and map the array to shared memory just
511 * to improve coalescing.
513 * This function is only called for access relations without reuse and
514 * kernels with at least one thread identifier.
516 static int access_is_coalesced(struct gpu_group_data *data,
517 __isl_keep isl_union_map *access)
519 int dim;
520 isl_space *space;
521 isl_set *accessed;
522 isl_map *access_map;
523 isl_map *next_thread_x;
524 isl_map *next_element;
525 isl_map *map;
526 int coalesced, empty;
528 access = isl_union_map_copy(access);
529 access = isl_union_map_apply_domain(access,
530 isl_union_map_copy(data->full_sched));
531 access_map = isl_map_from_union_map(access);
533 space = isl_map_get_space(access_map);
534 space = isl_space_range(space);
535 dim = isl_space_dim(space, isl_dim_set);
536 if (dim == 0)
537 next_element = isl_map_empty(isl_space_map_from_set(space));
538 else
539 next_element = next(space, dim - 1);
541 accessed = isl_map_range(isl_map_copy(access_map));
542 map = isl_map_copy(next_element);
543 map = isl_map_intersect_domain(map, isl_set_copy(accessed));
544 map = isl_map_intersect_range(map, accessed);
545 empty = isl_map_is_empty(map);
546 isl_map_free(map);
548 if (empty < 0 || empty) {
549 isl_map_free(next_element);
550 isl_map_free(access_map);
551 return empty;
554 space = isl_map_get_space(access_map);
555 space = isl_space_domain(space);
556 next_thread_x = next(space, data->thread_depth + data->n_thread - 1);
558 map = isl_map_apply_domain(next_thread_x, isl_map_copy(access_map));
559 map = isl_map_apply_range(map, access_map);
561 coalesced = isl_map_is_subset(map, next_element);
563 isl_map_free(next_element);
564 isl_map_free(map);
566 return coalesced;
569 /* Replace the host schedule dimensions in the access relation "access"
570 * by parameters, so that they are treated as fixed when checking for reuse
571 * (within a kernel) or whether two consecutive elements are accessed
572 * (within a kernel).
574 static __isl_give isl_union_map *localize_access(struct gpu_group_data *data,
575 __isl_take isl_union_map *access)
577 int n;
578 isl_space *space;
579 isl_set *param;
580 isl_union_map *umap;
581 isl_id_list *ids;
583 umap = isl_union_map_copy(data->host_sched);
584 space = isl_union_map_get_space(umap);
585 n = data->kernel_depth;
586 ids = ppcg_scop_generate_names(data->scop, n, "__ppcg_host_");
587 param = parametrization(space, n, 0, ids);
588 isl_id_list_free(ids);
589 umap = isl_union_map_intersect_range(umap,
590 isl_union_set_from_set(param));
591 access = isl_union_map_intersect_domain(access,
592 isl_union_map_domain(umap));
594 return access;
597 /* Given an access relation in terms of at least data->thread_depth initial
598 * dimensions of the computed schedule, check if it is bijective for
599 * fixed values of the first data->thread_depth dimensions.
600 * We perform this check by equating these dimensions to parameters.
602 static int access_is_bijective(struct gpu_group_data *data,
603 __isl_keep isl_map *access)
605 int res;
606 int dim;
607 isl_set *par;
608 isl_space *space;
609 isl_id_list *ids;
611 access = isl_map_copy(access);
612 space = isl_space_params(isl_map_get_space(access));
613 ids = ppcg_scop_generate_names(data->scop, data->thread_depth, "s");
614 dim = isl_map_dim(access, isl_dim_in);
615 par = parametrization(space, dim, 0, ids);
616 isl_id_list_free(ids);
617 access = isl_map_intersect_domain(access, par);
618 res = isl_map_is_bijective(access);
619 isl_map_free(access);
621 return res;
624 /* Compute the number of outer schedule tile dimensions that affect
625 * the offset of "tile".
626 * If there is no such dimension, then return the index
627 * of the first kernel dimension, i.e., data->kernel_depth.
629 static int compute_tile_depth(struct gpu_group_data *data,
630 struct gpu_array_tile *tile)
632 int i, j;
634 for (j = tile->depth - 1; j >= data->kernel_depth; --j) {
635 for (i = 0; i < tile->n; ++i) {
636 isl_aff *lb;
637 isl_aff *shift;
639 lb = tile->bound[i].lb;
640 if (isl_aff_involves_dims(lb, isl_dim_in, j, 1))
641 break;
643 shift = tile->bound[i].shift;
644 if (!shift)
645 continue;
646 if (isl_aff_involves_dims(shift, isl_dim_in, j, 1))
647 break;
649 if (i < tile->n)
650 break;
653 return ++j;
656 /* Return the lowest depth between data->kernel_depth and data->thread_depth
657 * at which every array element accessed through "acc" is accessed
658 * by a single thread. The input dimension of "acc" is
659 * data->thread_depth + data->n_thread, where the final data->n_thread
660 * dimensions are those that will be mapped to threads.
661 * If the values for these dimensions are uniquely determined
662 * by the array index and a given number of outer dimensions, then
663 * there is only one thread accessing that array element within those
664 * outer dimensions.
666 * The input space of "acc" is first split up, such that it has the form
668 * [O -> T] -> A
670 * with O the outer dimensions, T the dimensions that will be mapped to threads
671 * and A the array index.
673 * Then the positions of T and A are interchanged to simplify the test
674 * whether T uniquely depends on O and A.
675 * In particular, the above access relation is first combined with
677 * [O -> T] -> T
679 * to form
681 * [O -> T] -> [A -> T]
683 * from which
685 * O -> [A -> T]
687 * is extracted, which is then uncurried to
689 * [O -> A] -> T
691 * Finally, the final dimensions of O are projected out one by one
692 * until T is no longer uniquely determined by A and the remaining
693 * dimensions in O. The value returned is that of the last dimension
694 * that was successfully projected out.
695 * Note that there is no need to test whether [O -> A] -> T itself
696 * is single-valued as that was already tested in access_is_bijective.
698 static int compute_accessed_by_single_thread_depth(struct gpu_group_data *data,
699 __isl_keep isl_map *acc)
701 int i;
702 isl_space *space;
703 isl_map *map;
704 isl_bool sv;
706 if (data->thread_depth == data->kernel_depth)
707 return data->thread_depth;
709 acc = isl_map_copy(acc);
711 space = isl_map_get_space(acc);
712 space = isl_space_params(space);
713 space = isl_space_set_from_params(space);
714 space = isl_space_add_dims(space, isl_dim_set, data->thread_depth);
715 space = isl_space_from_domain(space);
716 space = isl_space_add_dims(space, isl_dim_out, data->n_thread);
717 space = isl_space_wrap(space);
718 map = isl_set_flatten_map(isl_set_universe(space));
719 acc = isl_map_apply_range(map, acc);
721 space = isl_space_domain(isl_map_get_space(acc));
722 map = isl_map_range_map(isl_map_universe(isl_space_unwrap(space)));
723 acc = isl_map_range_product(acc, map);
724 acc = isl_map_domain_factor_domain(acc);
725 acc = isl_map_uncurry(acc);
727 for (i = data->thread_depth - 1; i >= data->kernel_depth; --i) {
728 acc = isl_map_project_out(acc, isl_dim_in, i, 1);
729 sv = isl_map_is_single_valued(acc);
730 if (sv < 0)
731 return -1;
732 if (!sv)
733 break;
736 isl_map_free(acc);
738 return ++i;
741 /* Adjust the fields of "tile" to reflect the new input dimension "depth".
742 * The dimension beyond "depth" are assumed not to affect the tile,
743 * so they can simply be dropped.
745 static int tile_adjust_depth(struct gpu_array_tile *tile, int depth)
747 int i;
749 if (tile->depth == depth)
750 return 0;
752 for (i = 0; i < tile->n; ++i) {
753 tile->bound[i].lb = isl_aff_drop_dims(tile->bound[i].lb,
754 isl_dim_in, depth, tile->depth - depth);
755 if (!tile->bound[i].lb)
756 return -1;
757 if (!tile->bound[i].shift)
758 continue;
759 tile->bound[i].shift = isl_aff_drop_dims(tile->bound[i].shift,
760 isl_dim_in, depth, tile->depth - depth);
761 if (!tile->bound[i].shift)
762 return -1;
765 tile->depth = depth;
767 return 0;
770 /* Determine the number of schedule dimensions that affect the offset of the
771 * shared or private tile "tile" and store the result in tile->depth, with
772 * a lower bound of data->kernel_depth.
773 * Also adjust the fields of the tile to only refer to the tile->depth
774 * outer schedule dimensions.
776 static isl_stat tile_set_depth(struct gpu_group_data *data,
777 struct gpu_array_tile *tile)
779 if (tile_adjust_depth(tile, compute_tile_depth(data, tile)) < 0)
780 return isl_stat_error;
782 return isl_stat_ok;
785 /* Determine the number of schedule dimensions that affect the offset of the
786 * shared tile and store the minimum of the private and shared tile depth
787 * in group->min_depth, with a lower bound of data->kernel_depth.
788 * If there is no tile defined on the array reference group,
789 * then set group->min_depth to data->thread_depth.
791 static int set_depth(struct gpu_group_data *data,
792 struct gpu_array_ref_group *group)
794 group->min_depth = data->thread_depth;
796 if (group->private_tile) {
797 if (group->private_tile->depth < group->min_depth)
798 group->min_depth = group->private_tile->depth;
800 if (group->shared_tile) {
801 if (tile_set_depth(data, group->shared_tile) < 0)
802 return -1;
803 if (group->shared_tile->depth < group->min_depth)
804 group->min_depth = group->shared_tile->depth;
807 return 0;
810 /* Fill up the groups array with singleton groups, i.e., one group
811 * per reference, initializing the array, access, write, n_ref and refs fields.
812 * In particular the access field is initialized to the scheduled
813 * access relation of the array reference.
815 * Return the number of elements initialized, i.e., the number of
816 * active references in the current kernel.
818 static int populate_array_references(struct gpu_local_array_info *local,
819 struct gpu_array_ref_group **groups, struct gpu_group_data *data)
821 int i;
822 int n;
823 isl_ctx *ctx = isl_union_map_get_ctx(data->copy_sched);
825 n = 0;
826 for (i = 0; i < local->array->n_ref; ++i) {
827 isl_union_map *umap;
828 isl_map *map;
829 struct gpu_array_ref_group *group;
830 struct gpu_stmt_access *access = local->array->refs[i];
832 map = isl_map_copy(access->access);
833 umap = isl_union_map_from_map(map);
834 umap = isl_union_map_apply_domain(umap,
835 isl_union_map_copy(data->copy_sched));
837 if (isl_union_map_is_empty(umap)) {
838 isl_union_map_free(umap);
839 continue;
842 map = isl_map_from_union_map(umap);
843 map = isl_map_detect_equalities(map);
845 group = isl_calloc_type(ctx, struct gpu_array_ref_group);
846 if (!group)
847 return -1;
848 group->local_array = local;
849 group->array = local->array;
850 group->access = map;
851 group->write = access->write;
852 group->exact_write = access->exact_write;
853 group->slice = access->n_index < local->array->n_index;
854 group->refs = &local->array->refs[i];
855 group->n_ref = 1;
857 groups[n++] = group;
860 return n;
863 /* If group->n_ref == 1, then group->refs was set by
864 * populate_array_references to point directly into
865 * group->array->refs and should not be freed.
866 * If group->n_ref > 1, then group->refs was set by join_groups
867 * to point to a newly allocated array.
869 struct gpu_array_ref_group *gpu_array_ref_group_free(
870 struct gpu_array_ref_group *group)
872 if (!group)
873 return NULL;
874 gpu_array_tile_free(group->shared_tile);
875 gpu_array_tile_free(group->private_tile);
876 isl_map_free(group->access);
877 if (group->n_ref > 1)
878 free(group->refs);
879 free(group);
880 return NULL;
883 /* Check if the access relations of group1 and group2 overlap within
884 * copy_sched.
886 static int accesses_overlap(struct gpu_array_ref_group *group1,
887 struct gpu_array_ref_group *group2)
889 int disjoint;
891 disjoint = isl_map_is_disjoint(group1->access, group2->access);
892 if (disjoint < 0)
893 return -1;
895 return !disjoint;
898 /* Combine the given two groups into a single group, containing
899 * the references of both groups.
901 static struct gpu_array_ref_group *join_groups(
902 struct gpu_array_ref_group *group1,
903 struct gpu_array_ref_group *group2)
905 int i;
906 isl_ctx *ctx;
907 struct gpu_array_ref_group *group;
909 if (!group1 || !group2)
910 return NULL;
912 ctx = isl_map_get_ctx(group1->access);
913 group = isl_calloc_type(ctx, struct gpu_array_ref_group);
914 if (!group)
915 return NULL;
916 group->local_array = group1->local_array;
917 group->array = group1->array;
918 group->access = isl_map_union(isl_map_copy(group1->access),
919 isl_map_copy(group2->access));
920 group->write = group1->write || group2->write;
921 group->exact_write = group1->exact_write && group2->exact_write;
922 group->slice = group1->slice || group2->slice;
923 group->n_ref = group1->n_ref + group2->n_ref;
924 group->refs = isl_alloc_array(ctx, struct gpu_stmt_access *,
925 group->n_ref);
926 if (!group->refs)
927 return gpu_array_ref_group_free(group);
928 for (i = 0; i < group1->n_ref; ++i)
929 group->refs[i] = group1->refs[i];
930 for (i = 0; i < group2->n_ref; ++i)
931 group->refs[group1->n_ref + i] = group2->refs[i];
933 return group;
936 /* Combine the given two groups into a single group and free
937 * the original two groups.
939 static struct gpu_array_ref_group *join_groups_and_free(
940 struct gpu_array_ref_group *group1,
941 struct gpu_array_ref_group *group2)
943 struct gpu_array_ref_group *group;
945 group = join_groups(group1, group2);
946 gpu_array_ref_group_free(group1);
947 gpu_array_ref_group_free(group2);
948 return group;
951 /* Report that the array reference group with the given access relation
952 * is not mapped to shared memory in the given kernel because
953 * it does not exhibit any reuse and is considered to be coalesced.
955 static void report_no_reuse_and_coalesced(struct ppcg_kernel *kernel,
956 __isl_keep isl_union_map *access)
958 isl_ctx *ctx;
959 isl_printer *p;
961 ctx = isl_union_map_get_ctx(access);
962 p = isl_printer_to_file(ctx, stdout);
963 p = isl_printer_print_str(p, "Array reference group ");
964 p = isl_printer_print_union_map(p, access);
965 p = isl_printer_print_str(p,
966 " not considered for mapping to shared memory in kernel");
967 p = isl_printer_print_int(p, kernel->id);
968 p = isl_printer_print_str(p,
969 " because it exhibits no reuse and is considered to be coalesced");
970 p = isl_printer_end_line(p);
971 isl_printer_free(p);
974 /* Given an access relation in terms of the data->thread_depth initial
975 * dimensions of the computed schedule and the thread identifiers
976 * (as parameters), check if the use of the corresponding private tile
977 * requires unrolling.
979 * If we are creating a private tile because we are forced to,
980 * then no unrolling is required.
981 * Otherwise we check if "access" is bijective and unrolling
982 * is required if it is not. Note that the access relation
983 * has already been determined to be bijective before the introduction
984 * of the thread identifiers and the removal of the schedule dimensions
985 * that are mapped to these threads. If the access relation is no longer
986 * bijective, then this means that more than one value of one of those
987 * schedule dimensions is mapped to the same thread and therefore
988 * unrolling is required.
990 static int check_requires_unroll(struct gpu_group_data *data,
991 __isl_keep isl_map *access, int force_private)
993 int bijective;
995 if (force_private)
996 return 0;
997 bijective = access_is_bijective(data, access);
998 if (bijective < 0)
999 return -1;
1000 return !bijective;
1003 /* Map the domain of "access" to the outer data->shared_depth
1004 * schedule dimensions. When data->shared_depth is equal to
1005 * data->thread_depth, this result is already available in group->access.
1007 static __isl_give isl_map *shared_access(struct gpu_array_ref_group *group,
1008 __isl_keep isl_union_map *access, struct gpu_group_data *data)
1010 isl_union_map *shared;
1012 if (data->shared_depth == data->thread_depth)
1013 return isl_map_copy(group->access);
1015 shared = isl_union_map_copy(access);
1016 shared = isl_union_map_apply_domain(shared,
1017 isl_union_map_copy(data->shared_sched));
1018 return isl_map_from_union_map(shared);
1021 /* Compute the private and/or shared memory tiles for the array
1022 * reference group "group" of array "array".
1023 * Return 0 on success and -1 on error.
1025 * If the array is a read-only scalar or if the user requested
1026 * not to use shared or private memory, then we do not need to do anything.
1028 * If any reference in the reference group accesses more than one element,
1029 * then we would have to make sure that the layout in shared memory
1030 * is the same as that in global memory. Since we do not handle this yet
1031 * (and it may not even be possible), we refuse to map to private or
1032 * shared memory in such cases.
1034 * If the array group involves any may writes (that are not must writes),
1035 * then we would have to make sure that we load the data into shared/private
1036 * memory first in case the data is not written by the kernel
1037 * (but still written back out to global memory).
1038 * Since we don't have any such mechanism at the moment, we don't
1039 * compute shared/private tiles for groups involving may writes.
1041 * We only try to compute a shared memory tile if there is any reuse
1042 * or if the access is not coalesced.
1043 * Reuse and coalescing are checked within the given kernel.
1045 * For computing a private memory tile, we also require that there is
1046 * some reuse. Moreover, we require that the access is private
1047 * to the thread. That is, we check that any given array element
1048 * is only accessed by a single thread.
1049 * We compute an access relation that maps the outer
1050 * data->thread_depth + data->n_thread schedule dimensions.
1051 * The latter data->n_thread will be mapped to thread identifiers.
1052 * We actually check that those iterators that will be wrapped
1053 * partition the array space. This check is stricter than necessary
1054 * since several iterations may be mapped onto the same thread
1055 * and then they could be allowed to access the same memory elements,
1056 * but our check does not allow this situation.
1058 * For private memory tiles, the number of schedule dimensions that
1059 * affect the offset is computed and stored in tile->depth, with
1060 * a lower bound of data->kernel_depth. If this depth is smaller
1061 * than the minimal depth that still ensures that every element
1062 * is accessed by a single thread, then the depth is raised
1063 * to this minimal depth.
1064 * The fields of the tile are then adjusted to only refer to the tile->depth
1065 * outer schedule dimensions.
1067 * We also check that the index expression only depends on parallel
1068 * loops. That way, we can move those loops innermost and unroll them.
1069 * Again, we use a test that is stricter than necessary.
1070 * We actually check whether the index expression only depends
1071 * on the iterators that are wrapped over the threads.
1072 * These are necessarily parallel, but there may be more parallel loops.
1074 * Combining the injectivity of the first test with the single-valuedness
1075 * of the second test, we simply test for bijectivity.
1077 * If the use of the private tile requires unrolling, but some
1078 * of the other arrays are forcibly mapped to private memory,
1079 * then we do not allow the use of this private tile since
1080 * we cannot move the schedule dimensions that need to be unrolled down
1081 * without performing some kind of expansion on those arrays
1082 * that are forcibly mapped to private memory.
1084 * If the array is marked force_private, then we bypass all checks
1085 * and assume we can (and should) use registers only.
1087 * If it turns out we can (or have to) use registers, we compute
1088 * the private memory tile size using can_tile, after introducing a dependence
1089 * on the thread indices.
1091 static int compute_group_bounds_core(struct ppcg_kernel *kernel,
1092 struct gpu_array_ref_group *group, struct gpu_group_data *data)
1094 isl_ctx *ctx = isl_space_get_ctx(group->array->space);
1095 isl_union_map *access, *local;
1096 int n_index = group->array->n_index;
1097 int no_reuse, coalesced;
1098 isl_map *acc;
1099 int force_private = group->local_array->force_private;
1100 int use_shared = !force_private && kernel->options->use_shared_memory &&
1101 data->n_thread > 0;
1102 int use_private = force_private || kernel->options->use_private_memory;
1103 int r = 0;
1104 int requires_unroll;
1105 int unique_depth;
1107 if (!use_shared && !use_private)
1108 return 0;
1109 if (gpu_array_is_read_only_scalar(group->array))
1110 return 0;
1111 if (!force_private && !group->exact_write)
1112 return 0;
1113 if (group->slice)
1114 return 0;
1116 access = gpu_array_ref_group_access_relation(group, 1, 1);
1117 local = localize_access(data, isl_union_map_copy(access));
1118 no_reuse = isl_union_map_is_injective(local);
1119 if (no_reuse < 0)
1120 r = -1;
1121 if (use_shared && no_reuse)
1122 coalesced = access_is_coalesced(data, local);
1123 isl_union_map_free(local);
1125 if (r >= 0 && kernel->options->debug->verbose &&
1126 use_shared && no_reuse && coalesced)
1127 report_no_reuse_and_coalesced(kernel, access);
1129 if (use_shared && (!no_reuse || !coalesced)) {
1130 group->shared_tile = gpu_array_tile_create(ctx,
1131 group->array->n_index);
1132 acc = shared_access(group, access, data);
1133 if (!group->shared_tile)
1134 r = -1;
1135 else if (!can_tile(acc, group->shared_tile))
1136 group->shared_tile =
1137 gpu_array_tile_free(group->shared_tile);
1138 isl_map_free(acc);
1141 if (r < 0 || (!force_private && (!use_private || no_reuse))) {
1142 isl_union_map_free(access);
1143 return r;
1146 access = isl_union_map_apply_domain(access,
1147 isl_union_map_copy(data->thread_sched));
1149 acc = isl_map_from_union_map(access);
1151 if (!force_private && !access_is_bijective(data, acc)) {
1152 isl_map_free(acc);
1153 return 0;
1156 unique_depth = compute_accessed_by_single_thread_depth(data, acc);
1158 acc = isl_map_intersect_domain(acc, isl_set_copy(data->privatization));
1159 acc = isl_map_project_out(acc, isl_dim_in, data->thread_depth,
1160 data->n_thread);
1161 requires_unroll = check_requires_unroll(data, acc, force_private);
1162 if (unique_depth < 0 || requires_unroll < 0 ||
1163 (requires_unroll && kernel->any_force_private)) {
1164 isl_map_free(acc);
1165 return requires_unroll < 0 ? -1 : 0;
1168 group->private_tile = gpu_array_tile_create(ctx, n_index);
1169 if (!group->private_tile) {
1170 isl_map_free(acc);
1171 return -1;
1173 group->private_tile->requires_unroll = requires_unroll;
1174 if (!can_tile(acc, group->private_tile))
1175 group->private_tile = gpu_array_tile_free(group->private_tile);
1177 isl_map_free(acc);
1179 if (group->private_tile) {
1180 struct gpu_array_tile *tile = group->private_tile;
1181 int tile_depth = compute_tile_depth(data, tile);
1182 if (tile_depth < unique_depth)
1183 tile_depth = unique_depth;
1184 if (tile_adjust_depth(tile, tile_depth) < 0)
1185 return -1;
1188 if (force_private && !group->private_tile)
1189 isl_die(ctx, isl_error_internal,
1190 "unable to map array reference group to registers",
1191 return -1);
1193 return 0;
1196 /* Compute the private and/or shared memory tiles for the array
1197 * reference group "group" of array "array" and set the tile depth.
1198 * Return 0 on success and -1 on error.
1200 static int compute_group_bounds(struct ppcg_kernel *kernel,
1201 struct gpu_array_ref_group *group, struct gpu_group_data *data)
1203 if (!group)
1204 return -1;
1205 if (compute_group_bounds_core(kernel, group, data) < 0)
1206 return -1;
1207 if (set_depth(data, group) < 0)
1208 return -1;
1210 return 0;
1213 /* If two groups have overlapping access relations (as determined by
1214 * the "overlap" function) and if one of them involves a write,
1215 * then merge the two groups into one.
1216 * If "compute_bounds" is set, then call compute_group_bounds
1217 * on the merged groups.
1218 * If any group is merged into the current group, then its access
1219 * relation may have changed or it may have been turned into a write.
1220 * The combined group might therefore overlap with groups that
1221 * the original group did not overlap with. The groups therefore
1222 * need to be checked again.
1224 * Return the updated number of groups.
1225 * Return -1 on error.
1227 static int group_writes(struct ppcg_kernel *kernel,
1228 int n, struct gpu_array_ref_group **groups,
1229 int (*overlap)(struct gpu_array_ref_group *group1,
1230 struct gpu_array_ref_group *group2), int compute_bounds,
1231 struct gpu_group_data *data)
1233 int i, j;
1234 int any_merge;
1236 for (i = 0; i < n; i += !any_merge) {
1237 any_merge = 0;
1238 for (j = n - 1; j > i; --j) {
1239 if (!groups[i]->write && !groups[j]->write)
1240 continue;
1242 if (!overlap(groups[i], groups[j]))
1243 continue;
1245 any_merge = 1;
1246 groups[i] = join_groups_and_free(groups[i], groups[j]);
1247 if (j != n - 1)
1248 groups[j] = groups[n - 1];
1249 groups[n - 1] = NULL;
1250 n--;
1252 if (!groups[i])
1253 return -1;
1254 if (compute_bounds &&
1255 compute_group_bounds(kernel, groups[i], data) < 0)
1256 return -1;
1260 return n;
1263 /* If two groups have overlapping access relations (within the innermost
1264 * loop) and if one of them involves a write, then merge the two groups
1265 * into one.
1267 * Return the updated number of groups.
1269 static int group_overlapping_writes(struct ppcg_kernel *kernel,
1270 int n, struct gpu_array_ref_group **groups,
1271 struct gpu_group_data *data)
1273 return group_writes(kernel, n, groups, &accesses_overlap, 0, data);
1276 /* Check if the access relations of group1 and group2 overlap within
1277 * the outermost min(group1->min_depth, group2->min_depth) loops.
1279 static int depth_accesses_overlap(struct gpu_array_ref_group *group1,
1280 struct gpu_array_ref_group *group2)
1282 int depth;
1283 int dim;
1284 int empty;
1285 isl_map *map_i, *map_j, *map;
1287 depth = group1->min_depth;
1288 if (group2->min_depth < depth)
1289 depth = group2->min_depth;
1290 map_i = isl_map_copy(group1->access);
1291 dim = isl_map_dim(map_i, isl_dim_in);
1292 map_i = isl_map_eliminate(map_i, isl_dim_in, depth, dim - depth);
1293 map_j = isl_map_copy(group2->access);
1294 map_j = isl_map_eliminate(map_j, isl_dim_in, depth, dim - depth);
1295 map = isl_map_intersect(map_i, map_j);
1296 empty = isl_map_is_empty(map);
1297 isl_map_free(map);
1299 return !empty;
1302 /* If two groups have overlapping access relations (within the outer
1303 * depth loops) and if one of them involves a write,
1304 * then merge the two groups into one.
1306 * Return the updated number of groups.
1308 static int group_depth_overlapping_writes(struct ppcg_kernel *kernel,
1309 int n, struct gpu_array_ref_group **groups, struct gpu_group_data *data)
1311 return group_writes(kernel, n, groups, &depth_accesses_overlap, 1,
1312 data);
1315 /* Is the size of the tile specified by "tile" smaller than the sum of
1316 * the sizes of the tiles specified by "tile1" and "tile2"?
1318 static int smaller_tile(struct gpu_array_tile *tile,
1319 struct gpu_array_tile *tile1, struct gpu_array_tile *tile2)
1321 int smaller;
1322 isl_val *size, *size1, *size2;
1324 size = gpu_array_tile_size(tile);
1325 size1 = gpu_array_tile_size(tile1);
1326 size2 = gpu_array_tile_size(tile2);
1328 size = isl_val_sub(size, size1);
1329 size = isl_val_sub(size, size2);
1330 smaller = isl_val_is_neg(size);
1332 isl_val_free(size);
1334 return smaller;
1337 /* Given an initial grouping of array references and shared memory tiles
1338 * for each group that allows for a shared memory tile, merge two groups
1339 * if both have a shared memory tile, the merged group also has
1340 * a shared memory tile and the size of the tile for the merge group
1341 * is smaller than the sum of the tile sizes of the individual groups.
1342 * If any group is merged into the current group, then it may become
1343 * profitable to combine it with groups that were considered before
1344 * the merge. The groups are therefore checked again after a merge.
1346 * If merging two groups decreases the depth of the tile of
1347 * one or both of the two groups, then we need to check for overlapping
1348 * writes again.
1350 * Return the number of groups after merging.
1351 * Return -1 on error.
1353 static int group_common_shared_memory_tile(struct ppcg_kernel *kernel,
1354 struct gpu_array_info *array, int n,
1355 struct gpu_array_ref_group **groups, struct gpu_group_data *data)
1357 int i, j;
1358 int recompute_overlap = 0;
1359 int any_merge;
1361 for (i = 0; i < n; i += !any_merge) {
1362 any_merge = 0;
1363 if (!groups[i]->shared_tile)
1364 continue;
1365 for (j = n - 1; j > i; --j) {
1366 struct gpu_array_ref_group *group;
1368 if (!groups[j]->shared_tile)
1369 continue;
1371 if (!depth_accesses_overlap(groups[i], groups[j]))
1372 continue;
1374 group = join_groups(groups[i], groups[j]);
1375 if (compute_group_bounds(kernel, group, data) < 0) {
1376 gpu_array_ref_group_free(group);
1377 return -1;
1379 if (!group->shared_tile ||
1380 !smaller_tile(group->shared_tile,
1381 groups[i]->shared_tile,
1382 groups[j]->shared_tile)) {
1383 gpu_array_ref_group_free(group);
1384 continue;
1387 any_merge = 1;
1388 if (group->min_depth < groups[i]->min_depth ||
1389 group->min_depth < groups[j]->min_depth)
1390 recompute_overlap = 1;
1391 gpu_array_ref_group_free(groups[i]);
1392 gpu_array_ref_group_free(groups[j]);
1393 groups[i] = group;
1394 if (j != n - 1)
1395 groups[j] = groups[n - 1];
1396 n--;
1400 if (recompute_overlap)
1401 n = group_depth_overlapping_writes(kernel, n, groups, data);
1402 return n;
1405 /* Set array->n_group and array->groups to n and groups.
1407 * Additionally, set the "nr" field of each group.
1409 static void set_array_groups(struct gpu_local_array_info *array,
1410 int n, struct gpu_array_ref_group **groups)
1412 int i;
1414 array->n_group = n;
1415 array->groups = groups;
1417 for (i = 0; i < n; ++i)
1418 groups[i]->nr = i;
1421 /* Combine all groups in "groups" into a single group and return
1422 * the new number of groups (1 or 0 if there were no groups to start with).
1424 static int join_all_groups(int n, struct gpu_array_ref_group **groups)
1426 int i;
1428 for (i = n - 1; i > 0; --i) {
1429 groups[0] = join_groups_and_free(groups[0], groups[i]);
1430 groups[i] = NULL;
1431 n--;
1434 return n;
1437 /* Group array references that should be considered together when
1438 * deciding whether to access them from private, shared or global memory.
1439 * Return -1 on error.
1441 * In particular, if two array references overlap and if one of them
1442 * is a write, then the two references are grouped together.
1443 * We first perform an initial grouping based only on the access relation.
1444 * After computing shared and private memory tiles, we check for
1445 * overlapping writes again, but this time taking into account
1446 * the depth of the effective tile.
1448 * Furthermore, if two groups admit a shared memory tile and if the
1449 * combination of the two also admits a shared memory tile, we merge
1450 * the two groups.
1452 * If the array contains structures, then we compute a single
1453 * reference group without trying to find any tiles
1454 * since we do not map such arrays to private or shared
1455 * memory. The only exception is when those arrays of structures
1456 * are required to be mapped to private memory.
1458 static int group_array_references(struct ppcg_kernel *kernel,
1459 struct gpu_local_array_info *local, struct gpu_group_data *data)
1461 int i;
1462 int n;
1463 isl_ctx *ctx = isl_union_map_get_ctx(data->shared_sched);
1464 struct gpu_array_ref_group **groups;
1466 groups = isl_calloc_array(ctx, struct gpu_array_ref_group *,
1467 local->array->n_ref);
1468 if (!groups)
1469 return -1;
1471 n = populate_array_references(local, groups, data);
1473 if (local->array->has_compound_element && !local->force_private) {
1474 n = join_all_groups(n, groups);
1475 set_array_groups(local, n, groups);
1476 return 0;
1479 n = group_overlapping_writes(kernel, n, groups, data);
1481 for (i = 0; i < n; ++i)
1482 if (compute_group_bounds(kernel, groups[i], data) < 0)
1483 n = -1;
1485 n = group_depth_overlapping_writes(kernel, n, groups, data);
1487 n = group_common_shared_memory_tile(kernel, local->array,
1488 n, groups, data);
1490 set_array_groups(local, n, groups);
1492 if (n >= 0)
1493 return 0;
1495 for (i = 0; i < local->array->n_ref; ++i)
1496 gpu_array_ref_group_free(groups[i]);
1497 return -1;
1500 /* For each array in the input program that can be mapped to private memory,
1501 * check if there are any order dependences active inside the current kernel,
1502 * within the same iteration of the host schedule, i.e., the prefix
1503 * schedule at "node".
1504 * If so, mark the array as force_private so that its reference groups will be
1505 * mapped to a registers.
1507 * Note that the arrays that cannot be mapped to private memory have
1508 * had their order dependences added to prog->array_order and
1509 * subsequently to the coincidence constraints.
1511 static void check_can_be_private_live_ranges(struct ppcg_kernel *kernel,
1512 __isl_keep isl_schedule_node *node)
1514 int i;
1515 isl_union_set *domain;
1516 isl_multi_union_pw_aff *prefix;
1517 isl_union_pw_multi_aff *contraction;
1519 if (!kernel->options->live_range_reordering)
1520 return;
1522 kernel->any_force_private = 0;
1524 prefix = isl_schedule_node_get_prefix_schedule_multi_union_pw_aff(node);
1525 contraction = isl_union_pw_multi_aff_copy(kernel->contraction);
1526 prefix = isl_multi_union_pw_aff_pullback_union_pw_multi_aff(prefix,
1527 contraction);
1528 domain = isl_union_set_copy(kernel->expanded_domain);
1529 domain = isl_union_set_universe(domain);
1531 for (i = 0; i < kernel->n_array; ++i) {
1532 struct gpu_local_array_info *local = &kernel->array[i];
1533 isl_union_map *order;
1535 local->force_private = 0;
1536 if (!gpu_array_can_be_private(local->array))
1537 continue;
1538 order = isl_union_map_copy(local->array->dep_order);
1539 order = isl_union_map_intersect_domain(order,
1540 isl_union_set_copy(domain));
1541 order = isl_union_map_intersect_range(order,
1542 isl_union_set_copy(domain));
1543 order = isl_union_map_eq_at_multi_union_pw_aff(order,
1544 isl_multi_union_pw_aff_copy(prefix));
1545 if (!isl_union_map_is_empty(order)) {
1546 local->force_private = 1;
1547 kernel->any_force_private = 1;
1549 isl_union_map_free(order);
1552 isl_multi_union_pw_aff_free(prefix);
1553 isl_union_set_free(domain);
1556 /* Expand the domain of the schedule "s" by plugging in
1557 * the contraction "contraction" and return the result.
1559 static __isl_give isl_union_map *expand(__isl_take isl_union_map *s,
1560 __isl_keep isl_union_pw_multi_aff *contraction)
1562 contraction = isl_union_pw_multi_aff_copy(contraction);
1563 s = isl_union_map_preimage_domain_union_pw_multi_aff(s, contraction);
1564 return s;
1567 /* Create a set of dimension data->thread_depth + data->n_thread
1568 * that equates the residue of the final data->n_thread dimensions
1569 * modulo the kernel->block_dim sizes to the thread identifiers.
1570 * Store the computed set in data->privatization.
1572 * The construction starts with the space of kernel->thread_filter,
1573 * which is known to reference all thread identifiers.
1575 static void compute_privatization(struct gpu_group_data *data,
1576 struct ppcg_kernel *kernel)
1578 int i;
1579 isl_ctx *ctx;
1580 isl_space *space;
1581 isl_local_space *ls;
1582 isl_set *set;
1584 ctx = isl_union_map_get_ctx(data->shared_sched);
1585 space = isl_union_set_get_space(kernel->thread_filter);
1586 space = isl_space_set_from_params(space);
1587 space = isl_space_add_dims(space, isl_dim_set,
1588 data->thread_depth + data->n_thread);
1589 set = isl_set_universe(space);
1590 space = isl_set_get_space(set);
1591 ls = isl_local_space_from_space(space);
1593 for (i = 0; i < data->n_thread; ++i) {
1594 isl_aff *aff, *aff2;
1595 isl_constraint *c;
1596 isl_val *v;
1597 isl_id *id;
1598 int pos;
1600 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
1601 isl_dim_set, data->thread_depth + i);
1602 v = isl_val_int_from_si(ctx, kernel->block_dim[i]);
1603 aff = isl_aff_mod_val(aff, v);
1604 id = isl_id_list_get_id(kernel->thread_ids, i);
1605 pos = isl_set_find_dim_by_id(set, isl_dim_param, id);
1606 isl_id_free(id);
1607 aff2 = isl_aff_var_on_domain(isl_local_space_copy(ls),
1608 isl_dim_param, pos);
1609 aff = isl_aff_sub(aff, aff2);
1610 c = isl_equality_from_aff(aff);
1611 set = isl_set_add_constraint(set, c);
1614 isl_local_space_free(ls);
1615 data->privatization = set;
1618 /* Return the prefix schedule at "node" as a relation
1619 * between domain elements and schedule dimensions after detecting
1620 * equalities in this relation.
1622 static __isl_give isl_union_map *prefix_with_equalities(
1623 __isl_keep isl_schedule_node *node)
1625 isl_union_map *schedule;
1627 schedule = isl_schedule_node_get_prefix_schedule_relation(node);
1628 schedule = isl_union_map_detect_equalities(schedule);
1630 return schedule;
1633 /* Group references of all arrays in "kernel".
1634 * "node" points to the kernel mark.
1635 * The mapping to shared memory in computed at the "shared" mark.
1637 * We first extract all required schedule information into
1638 * a gpu_group_data structure and then consider each array
1639 * in turn.
1641 int gpu_group_references(struct ppcg_kernel *kernel,
1642 __isl_keep isl_schedule_node *node)
1644 int i;
1645 int r = 0;
1646 isl_union_pw_multi_aff *contraction;
1647 struct gpu_group_data data;
1649 check_can_be_private_live_ranges(kernel, node);
1651 data.scop = kernel->prog->scop;
1653 data.kernel_depth = isl_schedule_node_get_schedule_depth(node);
1654 data.host_sched = isl_schedule_node_get_prefix_schedule_relation(node);
1656 node = isl_schedule_node_copy(node);
1657 node = gpu_tree_move_down_to_shared(node, kernel->core);
1658 data.shared_depth = isl_schedule_node_get_schedule_depth(node);
1659 data.shared_sched = prefix_with_equalities(node);
1661 node = gpu_tree_move_down_to_thread(node, kernel->core);
1662 node = isl_schedule_node_child(node, 0);
1663 data.thread_depth = isl_schedule_node_get_schedule_depth(node);
1664 data.n_thread = isl_schedule_node_band_n_member(node);
1665 if (data.thread_depth == data.shared_depth)
1666 data.copy_sched = isl_union_map_copy(data.shared_sched);
1667 else
1668 data.copy_sched = prefix_with_equalities(node);
1669 data.thread_sched = isl_union_map_copy(data.copy_sched);
1670 data.thread_sched = isl_union_map_flat_range_product(data.thread_sched,
1671 isl_schedule_node_band_get_partial_schedule_union_map(node));
1672 data.thread_sched = isl_union_map_detect_equalities(data.thread_sched);
1674 contraction = isl_union_pw_multi_aff_copy(kernel->contraction);
1675 data.host_sched = expand(data.host_sched, contraction);
1676 data.shared_sched = expand(data.shared_sched, contraction);
1677 if (data.thread_depth == data.shared_depth) {
1678 isl_union_map_free(data.copy_sched);
1679 data.copy_sched = isl_union_map_copy(data.shared_sched);
1680 } else {
1681 data.copy_sched = expand(data.copy_sched, contraction);
1683 data.thread_sched = expand(data.thread_sched, contraction);
1684 isl_union_pw_multi_aff_free(contraction);
1686 node = isl_schedule_node_child(node, 0);
1687 data.full_sched = isl_union_map_copy(data.thread_sched);
1688 data.full_sched = isl_union_map_flat_range_product(data.full_sched,
1689 isl_schedule_node_get_subtree_schedule_union_map(node));
1690 isl_schedule_node_free(node);
1692 compute_privatization(&data, kernel);
1694 for (i = 0; i < kernel->n_array; ++i) {
1695 r = group_array_references(kernel, &kernel->array[i], &data);
1696 if (r < 0)
1697 break;
1700 isl_union_map_free(data.host_sched);
1701 isl_union_map_free(data.shared_sched);
1702 isl_union_map_free(data.copy_sched);
1703 isl_union_map_free(data.thread_sched);
1704 isl_union_map_free(data.full_sched);
1705 isl_set_free(data.privatization);
1707 return r;
1710 /* Given a description of an array tile "tile" and the "space"
1712 * { D -> A }
1714 * where D represents the first tile->depth schedule dimensions
1715 * and A represents the array, construct an isl_multi_aff
1717 * { [D[i] -> A[a]] -> A'[a'] }
1719 * with A' a scaled down copy of A according to the shifts and strides
1720 * in "tile". In particular,
1722 * a' = (a + shift(i))/stride
1724 * "insert_array" represents
1726 * { [D -> A] -> D }
1728 * and is used to insert A into the domain of functions that only
1729 * reference D.
1731 static __isl_give isl_multi_aff *strided_tile(
1732 struct gpu_array_tile *tile, __isl_keep isl_space *space,
1733 __isl_keep isl_multi_aff *insert_array)
1735 int i;
1736 isl_ctx *ctx;
1737 isl_multi_aff *shift;
1738 isl_multi_val *stride;
1739 isl_space *space2;
1740 isl_local_space *ls;
1741 isl_multi_aff *tiling;
1743 ctx = isl_space_get_ctx(space);
1744 space2 = isl_space_domain(isl_space_copy(space));
1745 ls = isl_local_space_from_space(space2);
1746 space2 = isl_space_range(isl_space_copy(space));
1747 stride = isl_multi_val_zero(space2);
1748 shift = isl_multi_aff_zero(isl_space_copy(space));
1750 for (i = 0; i < tile->n; ++i) {
1751 struct gpu_array_bound *bound = &tile->bound[i];
1752 isl_val *stride_i;
1753 isl_aff *shift_i;
1755 if (tile->bound[i].shift) {
1756 stride_i = isl_val_copy(bound->stride);
1757 shift_i = isl_aff_copy(bound->shift);
1758 } else {
1759 stride_i = isl_val_one(ctx);
1760 shift_i = isl_aff_zero_on_domain(
1761 isl_local_space_copy(ls));
1764 stride = isl_multi_val_set_val(stride, i, stride_i);
1765 shift = isl_multi_aff_set_aff(shift, i, shift_i);
1767 isl_local_space_free(ls);
1769 shift = isl_multi_aff_pullback_multi_aff(shift,
1770 isl_multi_aff_copy(insert_array));
1772 tiling = isl_multi_aff_range_map(isl_space_copy(space));
1773 tiling = isl_multi_aff_add(tiling, shift);
1774 tiling = isl_multi_aff_scale_down_multi_val(tiling, stride);
1776 return tiling;
1779 /* Compute a tiling for the array reference group "group".
1781 * The tiling is of the form
1783 * { [D[i] -> A[a]] -> T[t] }
1785 * where D represents the first tile->depth schedule dimensions,
1786 * A represents the global array and T represents the shared or
1787 * private memory tile. The name of T is the name of the local
1788 * array.
1790 * If there is any stride in the accesses, then the mapping is
1792 * t = (a + shift(i))/stride - lb(i)
1794 * otherwise, it is simply
1796 * t = a - lb(i)
1798 void gpu_array_ref_group_compute_tiling(struct gpu_array_ref_group *group)
1800 int i;
1801 struct gpu_array_tile *tile;
1802 isl_space *space;
1803 isl_multi_aff *tiling, *lb, *insert_array;
1804 isl_printer *p;
1805 char *local_name;
1807 tile = gpu_array_ref_group_tile(group);
1808 if (!tile)
1809 return;
1811 space = isl_map_get_space(group->access);
1812 space = isl_space_from_range(isl_space_range(space));
1813 space = isl_space_add_dims(space, isl_dim_in, tile->depth);
1814 insert_array = isl_multi_aff_domain_map(isl_space_copy(space));
1816 for (i = 0; i < tile->n; ++i)
1817 if (tile->bound[i].shift)
1818 break;
1820 if (i < tile->n)
1821 tiling = strided_tile(tile, space, insert_array);
1822 else
1823 tiling = isl_multi_aff_range_map(isl_space_copy(space));
1825 lb = isl_multi_aff_zero(space);
1826 for (i = 0; i < tile->n; ++i) {
1827 isl_aff *lb_i = isl_aff_copy(tile->bound[i].lb);
1828 lb = isl_multi_aff_set_aff(lb, i, lb_i);
1830 lb = isl_multi_aff_pullback_multi_aff(lb, insert_array);
1832 tiling = isl_multi_aff_sub(tiling, lb);
1834 p = isl_printer_to_str(isl_multi_aff_get_ctx(tiling));
1835 p = gpu_array_ref_group_print_name(group, p);
1836 local_name = isl_printer_get_str(p);
1837 isl_printer_free(p);
1838 tiling = isl_multi_aff_set_tuple_name(tiling, isl_dim_out, local_name);
1839 free(local_name);
1841 tile->tiling = tiling;