/* * Copyright (C) 2018-2021 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "shared/source/helpers/ptr_math.h" #include namespace NEO { bool isCompatibleWithLayoutForImages(const std::array &localWorkgroupSize, const std::array &dimensionsOrder, uint16_t simd) { uint8_t xMask = simd == 8u ? 0b1 : 0b11; uint8_t yMask = 0b11; return dimensionsOrder.at(0) == 0 && dimensionsOrder.at(1) == 1 && (localWorkgroupSize.at(0) & xMask) == 0 && (localWorkgroupSize.at(1) & yMask) == 0 && localWorkgroupSize.at(2) == 1u; } inline void generateLocalIDsWithLayoutForImages(void *b, const std::array &localWorkgroupSize, uint16_t simd) { uint8_t rowWidth = simd == 32u ? 32u : 16u; 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 auto buffer = reinterpret_cast(b); uint16_t offset = 0u; auto numGrfs = (localWorkgroupSize.at(0) * localWorkgroupSize.at(1) * localWorkgroupSize.at(2) + (simd - 1)) / simd; uint8_t xMask = simd == 8u ? 0b1 : 0b11; 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; uint16_t extraX = 0u; uint16_t extraY = 0u; for (uint8_t i = 0u; i < simd; i++) { if (i > 0) { extraX++; if (extraX == xDelta) { extraX = 0u; } if ((i & xMask) == 0) { extraY++; if (y + extraY == localWorkgroupSize.at(1)) { extraY = 0; x += xDelta; } } } if (x == localWorkgroupSize.at(0)) { x = 0u; y += yDelta; if (y >= localWorkgroupSize.at(1)) { y = 0u; } } rowX[i] = x + extraX; rowY[i] = y + extraY; rowZ[i] = 0u; } x += xDelta; offset += 3 * rowWidth; } } void generateLocalIDsForSimdOne(void *b, const std::array &localWorkgroupSize, const std::array &dimensionsOrder, uint32_t grfSize) { 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(b)[0] = k; static_cast(b)[1] = j; static_cast(b)[2] = i; b = ptrOffset(b, grfSize); } } } } } // namespace NEO