2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2021-05-17 02:51:16 +08:00
|
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-09-03 05:25:03 +08:00
|
|
|
#include "shared/source/helpers/ptr_math.h"
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2018-08-06 17:35:59 +08:00
|
|
|
#include <array>
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2018-08-20 17:23:20 +08:00
|
|
|
bool isCompatibleWithLayoutForImages(const std::array<uint16_t, 3> &localWorkgroupSize, const std::array<uint8_t, 3> &dimensionsOrder, uint16_t simd) {
|
|
|
|
uint8_t xMask = simd == 8u ? 0b1 : 0b11;
|
|
|
|
uint8_t yMask = 0b11;
|
2018-08-08 18:49:36 +08:00
|
|
|
return dimensionsOrder.at(0) == 0 &&
|
|
|
|
dimensionsOrder.at(1) == 1 &&
|
2018-08-20 17:23:20 +08:00
|
|
|
(localWorkgroupSize.at(0) & xMask) == 0 &&
|
|
|
|
(localWorkgroupSize.at(1) & yMask) == 0 &&
|
|
|
|
localWorkgroupSize.at(2) == 1u;
|
2018-08-08 18:49:36 +08:00
|
|
|
}
|
|
|
|
|
2018-08-20 17:23:20 +08:00
|
|
|
inline void generateLocalIDsWithLayoutForImages(void *b, const std::array<uint16_t, 3> &localWorkgroupSize, uint16_t simd) {
|
2018-08-08 18:49:36 +08:00
|
|
|
uint8_t rowWidth = simd == 32u ? 32u : 16u;
|
2018-08-20 17:23:20 +08:00
|
|
|
uint8_t xDelta = simd == 8u ? 2u : 4u; // difference between corresponding values in consecutive X rows
|
|
|
|
uint8_t yDelta = (simd == 8u || localWorkgroupSize.at(1) == 4u) ? 4u : rowWidth / xDelta; // difference between corresponding values in consecutive Y rows
|
|
|
|
|
2018-08-08 18:49:36 +08:00
|
|
|
auto buffer = reinterpret_cast<uint16_t *>(b);
|
|
|
|
uint16_t offset = 0u;
|
2018-08-20 17:23:20 +08:00
|
|
|
auto numGrfs = (localWorkgroupSize.at(0) * localWorkgroupSize.at(1) * localWorkgroupSize.at(2) + (simd - 1)) / simd;
|
2018-08-22 18:06:53 +08:00
|
|
|
uint8_t xMask = simd == 8u ? 0b1 : 0b11;
|
2018-08-20 17:23:20 +08:00
|
|
|
uint16_t x = 0u;
|
|
|
|
uint16_t y = 0u;
|
|
|
|
for (auto grfId = 0; grfId < numGrfs; grfId++) {
|
|
|
|
auto rowX = buffer + offset;
|
|
|
|
auto rowY = buffer + offset + rowWidth;
|
|
|
|
auto rowZ = buffer + offset + 2 * rowWidth;
|
2018-08-22 18:06:53 +08:00
|
|
|
uint16_t extraX = 0u;
|
|
|
|
uint16_t extraY = 0u;
|
2018-08-20 17:23:20 +08:00
|
|
|
|
|
|
|
for (uint8_t i = 0u; i < simd; i++) {
|
2018-08-22 18:06:53 +08:00
|
|
|
if (i > 0) {
|
|
|
|
extraX++;
|
|
|
|
if (extraX == xDelta) {
|
|
|
|
extraX = 0u;
|
|
|
|
}
|
|
|
|
if ((i & xMask) == 0) {
|
|
|
|
extraY++;
|
|
|
|
if (y + extraY == localWorkgroupSize.at(1)) {
|
|
|
|
extraY = 0;
|
|
|
|
x += xDelta;
|
|
|
|
}
|
|
|
|
}
|
2018-08-20 17:23:20 +08:00
|
|
|
}
|
|
|
|
if (x == localWorkgroupSize.at(0)) {
|
|
|
|
x = 0u;
|
|
|
|
y += yDelta;
|
2018-08-22 18:06:53 +08:00
|
|
|
if (y >= localWorkgroupSize.at(1)) {
|
2018-08-20 17:23:20 +08:00
|
|
|
y = 0u;
|
2018-08-08 18:49:36 +08:00
|
|
|
}
|
|
|
|
}
|
2018-08-22 18:06:53 +08:00
|
|
|
rowX[i] = x + extraX;
|
|
|
|
rowY[i] = y + extraY;
|
2018-08-20 17:23:20 +08:00
|
|
|
rowZ[i] = 0u;
|
2018-08-08 18:49:36 +08:00
|
|
|
}
|
2018-08-20 17:23:20 +08:00
|
|
|
x += xDelta;
|
|
|
|
offset += 3 * rowWidth;
|
2018-08-08 18:49:36 +08:00
|
|
|
}
|
|
|
|
}
|
2019-10-23 15:36:37 +08:00
|
|
|
|
|
|
|
void generateLocalIDsForSimdOne(void *b, const std::array<uint16_t, 3> &localWorkgroupSize,
|
2019-12-17 15:55:09 +08:00
|
|
|
const std::array<uint8_t, 3> &dimensionsOrder, uint32_t grfSize) {
|
2019-10-23 15:36:37 +08:00
|
|
|
uint32_t xDimNum = dimensionsOrder[0];
|
|
|
|
uint32_t yDimNum = dimensionsOrder[1];
|
|
|
|
uint32_t zDimNum = dimensionsOrder[2];
|
|
|
|
|
|
|
|
for (int i = 0; i < localWorkgroupSize[zDimNum]; i++) {
|
|
|
|
for (int j = 0; j < localWorkgroupSize[yDimNum]; j++) {
|
|
|
|
for (int k = 0; k < localWorkgroupSize[xDimNum]; k++) {
|
|
|
|
static_cast<uint16_t *>(b)[0] = k;
|
|
|
|
static_cast<uint16_t *>(b)[1] = j;
|
|
|
|
static_cast<uint16_t *>(b)[2] = i;
|
2019-12-17 15:55:09 +08:00
|
|
|
b = ptrOffset(b, grfSize);
|
2019-10-23 15:36:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|