/* * ****************************************************************************** * * * * * * This program and the accompanying materials are made available under the * * terms of the Apache License, Version 2.0 which is available at * * https://www.apache.org/licenses/LICENSE-2.0. * * * * See the NOTICE file distributed with this work for additional * * information regarding copyright ownership. * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * * License for the specific language governing permissions and limitations * * under the License. * * * * SPDX-License-Identifier: Apache-2.0 * ***************************************************************************** */ // // @author AbdelRauf // #include #include #include #include #include #include #include #include "execution/cuda/LaunchDims.h" namespace sd { namespace ops { namespace helpers { template SD_HOST_DEVICE static uint8_t pack(const X* buff, const X& threshold) { uint8_t res; res = (buff[0] > threshold) << 7; res = res | ((buff[1] > threshold) << 6); res = res | ((buff[2] > threshold) << 5); res = res | ((buff[3] > threshold) << 4); res = res | ((buff[4] > threshold) << 3); res = res | ((buff[5] > threshold) << 2); res = res | ((buff[6] > threshold) << 1); res = res | (buff[7] > threshold); return res; } template <> SD_HOST_DEVICE uint8_t pack(const bool* buff, const bool& threshold) { // ignore threshold uint8_t res; res = buff[0] << 7; res = res | (buff[1] << 6); res = res | (buff[2] << 5); res = res | (buff[3] << 4); res = res | (buff[4] << 3); res = res | (buff[5] << 2); res = res | (buff[6] << 1); res = res | buff[7]; return res; } template SD_HOST_DEVICE static uint8_t pack(const X* buff, int stride, const X& threshold) { uint8_t res; res = (buff[0] > threshold) << 7; res = res | ((buff[1 * stride] > threshold) << 6); res = res | ((buff[2 * stride] > threshold) << 5); res = res | ((buff[3 * stride] > threshold) << 4); res = res | ((buff[4 * stride] > threshold) << 3); res = res | ((buff[5 * stride] > threshold) << 2); res = res | ((buff[6 * stride] > threshold) << 1); res = res | (buff[7 * stride] > threshold); return res; } template <> SD_HOST_DEVICE uint8_t pack(const bool* buff, int stride, const bool& threshold) { // ignore threshold uint8_t res; res = buff[0] << 7; res = res | (buff[1 * stride] << 6); res = res | (buff[2 * stride] << 5); res = res | (buff[3 * stride] << 4); res = res | (buff[4 * stride] << 3); res = res | (buff[5 * stride] << 2); res = res | (buff[6 * stride] << 1); res = res | buff[7 * stride]; return res; } /////////////////////////////////////////////////////////////////// template static void SD_KERNEL cmpBitpack(const void* vx, void* vz, int rank, int len, const LongType* xStridesExtended, const LongType* outPutShapeInfo, T threshold) { const T* x = reinterpret_cast(vx); uint8_t* z = reinterpret_cast(vz); const auto tid = blockIdx.x * blockDim.x + threadIdx.x; auto shapes = shape::shapeOf(outPutShapeInfo); auto zStrides = shape::stride(outPutShapeInfo); LongType coords[SD_MAX_RANK] = {}; LongType* ptr_coords = (LongType*)&coords; // its extended as {rank+1} so xStridesExtended[rank] is valid auto inLastStride = xStridesExtended[rank]; for (auto k = tid; k < len; k += gridDim.x * blockDim.x) { INDEX2COORDS(k, rank, shapes, ptr_coords); LongType xOffset; COORDS2INDEX(rank, xStridesExtended, ptr_coords, xOffset); LongType zOffset; COORDS2INDEX(rank, zStrides, ptr_coords, zOffset); auto buffPart = &(x[xOffset]); auto outBuffPart = &(z[zOffset]); *outBuffPart = pack(buffPart, inLastStride, threshold); } } template static void SD_KERNEL cmpBitpackEws(const void* vx, void* vz, int len, const LongType xStride, const LongType yStride, T threshold) { const T* x = reinterpret_cast(vx); uint8_t* z = reinterpret_cast(vz); const auto tid = blockIdx.x * blockDim.x + threadIdx.x; if (xStride == 1) { for (auto k = tid; k < len; k += gridDim.x * blockDim.x) { auto buffPart = &(x[k * 8]); auto outBuffPart = &(z[k * yStride]); *outBuffPart = pack(buffPart, threshold); } } else { for (auto k = tid; k < len; k += gridDim.x * blockDim.x) { auto buffPart = &(x[k * 8 * xStride]); auto outBuffPart = &(z[k * yStride]); *outBuffPart = pack(buffPart, xStride, threshold); } } } /////////////////////////////////////////////////////////////////// template static SD_HOST void cmpBitpackCudaLauncher(graph::Context& block, NDArray& input, NDArray& thresholdScalar, NDArray& output) { T threshold = thresholdScalar.e(0); auto inStrides = input.stridesOf(); auto rank = output.rankOf(); // threadblock size // grid size auto stream = block.launchContext()->getCudaStream(); dim3 compareAndBitpackDims = getCompareAndBitpackDims(output.lengthOf()); PointersManager manager(block.launchContext(), "compare_and_bitpack"); NDArray::prepareSpecialUse({&output}, {&input}); if (input.ordering() == 'c' && output.ordering() == 'c') { cmpBitpackEws<<>>(input.specialBuffer(), output.specialBuffer(), output.lengthOf(), inStrides[rank - 1], output.stridesOf()[rank - 1], threshold); sd::DebugHelper::checkGlobalErrorCode("cmpBitpackEws failed"); } else { // if output shape is {n1, n2, n3} then input shape is { n1. n2, n3 * 8} // therefore we can split input shape {n1, n2, n3 , 8} and correct its stride // as we do not need last shape info. lets just extend and correct its stride LongType extendedStrides[SD_MAX_RANK]; for (int i = 0; i < rank; i++) { extendedStrides[i] = inStrides[i]; } // lets correct new stride extendedStrides[rank - 1] = 8 * inStrides[rank - 1]; extendedStrides[rank] = inStrides[rank - 1]; auto strideSize = (rank + 1) * sizeof(LongType); LongType* extendedStridesDevPtr = reinterpret_cast(manager.replicatePointer(extendedStrides, strideSize)); cmpBitpack<<>>(input.specialBuffer(), output.specialBuffer(), rank, output.lengthOf(), extendedStridesDevPtr, output.specialShapeInfo(), threshold); sd::DebugHelper::checkGlobalErrorCode("compareAndBitpackDims failed"); } NDArray::registerSpecialUse({&output}, {&input}); manager.synchronize(); } void compareAndBitpack(graph::Context& block, NDArray& input, NDArray& threshold, NDArray& output) { BUILD_SINGLE_SELECTOR(input.dataType(), cmpBitpackCudaLauncher, (block, input, threshold, output), SD_COMMON_TYPES); } } // namespace helpers } // namespace ops } // namespace sd