The current index is such that if you add "shift", * then the result is always a multiple of "stride", * where "stride" may be equal to 1. * Let D represent the initial tile->depth dimensions of the computed schedule. * The spaces of "lb" and "shift" are of the form * * D -> [b] */
| 14 | * D -> [b] |
| 15 | */ |
| 16 | struct gpu_array_bound { |
| 17 | isl_val *size; |
| 18 | isl_aff *lb; |
| 19 | |
| 20 | isl_val *stride; |
| 21 | isl_aff *shift; |
| 22 | }; |
| 23 | |
| 24 | /* A tile of an outer array. |
| 25 | * |
nothing calls this directly
no outgoing calls
no test coverage detected