reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/polly/lib/External/ppcg/gpu.c
  875 	space = isl_multi_aff_get_space(group->shared_tile->tiling);
  882 		bound = isl_val_copy(group->shared_tile->bound[i].size);
  887 				isl_multi_aff_copy(group->shared_tile->tiling));
  960 			size = gpu_array_tile_size(group->shared_tile);
  969 			group->shared_tile =
  970 					gpu_array_tile_free(group->shared_tile);
tools/polly/lib/External/ppcg/gpu_group.c
   79 	if (group->private_tile && group->shared_tile &&
   80 	    group->shared_tile->depth < group->private_tile->depth)
   84 	if (group->shared_tile)
  100 		return group->shared_tile;
  800 	if (group->shared_tile) {
  801 		if (tile_set_depth(data, group->shared_tile) < 0)
  803 		if (group->shared_tile->depth < group->min_depth)
  804 			group->min_depth = group->shared_tile->depth;
  874 	gpu_array_tile_free(group->shared_tile);
 1130 		group->shared_tile = gpu_array_tile_create(ctx,
 1133 		if (!group->shared_tile)
 1135 		else if (!can_tile(acc, group->shared_tile))
 1136 			group->shared_tile =
 1137 					gpu_array_tile_free(group->shared_tile);
 1350 		if (!groups[i]->shared_tile)
 1355 			if (!groups[j]->shared_tile)
 1366 			if (!group->shared_tile ||
 1367 			    !smaller_tile(group->shared_tile,
 1368 					groups[i]->shared_tile,
 1369 					groups[j]->shared_tile)) {