/* ****************************************************************************** * * * 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 Oleh Semeniv (oleg.semeniv@gmail.com) // @author Abdelrauf (rauf@konduit.ai) // https://arxiv.org/pdf/2010.07468.pdf #include #include #include #include #include #include "execution/cuda/LaunchDims.h" #include "helpers/DebugHelper.h" namespace sd { namespace ops { namespace helpers { /////////////////////////////////////////////////////////////////// template SD_KERNEL void adaBeliefUpdaterCuda(const void* vx, const LongType* xShapeInfo, const void* vinv, const LongType* invShapeInfo, const void* vinm, const LongType* inmShapeInfo, void* vz, const LongType* zShapeInfo, void* vstV, const LongType* stvShapeInfo, void* vstM, const LongType* stmShapeInfo, const T lr, const T beta1, const T beta2, const T epsilon, const T iteration) { const auto grad = reinterpret_cast(vx); const auto initU = reinterpret_cast(vinv); const auto initM = reinterpret_cast(vinm); auto up = reinterpret_cast(vz); auto stU = reinterpret_cast(vstV); auto stM = reinterpret_cast(vstM); __shared__ LongType xLen; __shared__ T epsilonT; __shared__ bool bOrdering, bXZsame, bXInUSame, bXStUSame, bXInMSame, bXStMSame; // Cache shape information in shared memory __shared__ LongType xRank, zRank, invRank, stvRank, inmRank, stmRank; __shared__ LongType *xShape, *zShape, *invShape, *stvShape, *inmShape, *stmShape; __shared__ LongType *xStride, *zStride, *invStride, *stvStride, *inmStride, *stmStride; if (threadIdx.x == 0) { xLen = shape::length(xShapeInfo); T beta1T = math::sd_pow(beta1, (iteration + 1)); T beta2T = math::sd_pow(beta2, (iteration + 1)); epsilonT = lr * math::sd_sqrt(1. - beta2T) / (1.0 - beta1T); if (math::sd_isnan(epsilonT) || 0 == epsilonT || math::sd_isinf(epsilonT)) epsilonT = epsilon; // Cache ranks xRank = shape::rank(xShapeInfo); zRank = shape::rank(zShapeInfo); invRank = shape::rank(invShapeInfo); stvRank = shape::rank(stvShapeInfo); inmRank = shape::rank(inmShapeInfo); stmRank = shape::rank(stmShapeInfo); // Cache shapes xShape = shape::shapeOf(xShapeInfo); zShape = shape::shapeOf(zShapeInfo); invShape = shape::shapeOf(invShapeInfo); stvShape = shape::shapeOf(stvShapeInfo); inmShape = shape::shapeOf(inmShapeInfo); stmShape = shape::shapeOf(stmShapeInfo); // Cache strides xStride = shape::stride(xShapeInfo); zStride = shape::stride(zShapeInfo); invStride = shape::stride(invShapeInfo); stvStride = shape::stride(stvShapeInfo); inmStride = shape::stride(inmShapeInfo); stmStride = shape::stride(stmShapeInfo); bOrdering = shape::order(xShapeInfo) == shape::order(zShapeInfo) && shape::order(zShapeInfo) == shape::order(stmShapeInfo) && shape::order(stmShapeInfo) == shape::order(inmShapeInfo) && shape::order(inmShapeInfo) == shape::order(stvShapeInfo) && shape::order(stvShapeInfo) == shape::order(invShapeInfo); bXZsame = shape::haveSameShapeAndStrides(xShapeInfo, zShapeInfo); bXInUSame = shape::haveSameShapeAndStrides(xShapeInfo, invShapeInfo); bXStUSame = shape::haveSameShapeAndStrides(xShapeInfo, stvShapeInfo); bXInMSame = shape::haveSameShapeAndStrides(xShapeInfo, inmShapeInfo); bXStMSame = shape::haveSameShapeAndStrides(xShapeInfo, stmShapeInfo); } __syncthreads(); LongType coords[SD_MAX_RANK]; for (LongType i = blockIdx.x * blockDim.x + threadIdx.x; i < xLen; i += gridDim.x * blockDim.x) { LongType xOffset, zOffset, initMOffset, initUOffset, stMOffset, stUOffset; INDEX2COORDS(i, xRank, xShape, coords); COORDS2INDEX(xRank, xStride, coords, xOffset); if (bXZsame) { zOffset = xOffset; } else { COORDS2INDEX(zRank, zStride, coords, zOffset); } if (bXInUSame) { initUOffset = xOffset; } else { COORDS2INDEX(invRank, invStride, coords, initUOffset); } if (bXStUSame) { stUOffset = xOffset; } else { COORDS2INDEX(stvRank, stvStride, coords, stUOffset); } if (bXInMSame) { initMOffset = xOffset; } else { COORDS2INDEX(inmRank, inmStride, coords, initMOffset); } if (bXStMSame) { stMOffset = xOffset; } else { COORDS2INDEX(stmRank, stmStride, coords, stMOffset); } stM[stMOffset] = beta1 * initM[initMOffset] + grad[xOffset] * (1 - beta1); stU[stUOffset] = beta2 * initU[initUOffset] + (grad[xOffset] - stM[stMOffset]) * (grad[xOffset] - stM[stMOffset]) * (1 - beta2) + epsilon; up[zOffset] = (stM[stMOffset] * epsilonT) / (math::sd_sqrt(stU[stUOffset]) + epsilon); } } /////////////////////////////////////////////////////////////////// template void adaBeliefUpdaterCudaLauncher(const int blocksPerGrid, const int threadsPerBlock, const int sharedMemory, const cudaStream_t* stream, const void* vx, const LongType* xShapeInfo, const void* vinv, const LongType* invShapeInfo, const void* vinm, const LongType* inmShapeInfo, void* vz, const LongType* zShapeInfo, void* vstV, const LongType* stvShapeInfo, void* vstM, const LongType* stmShapeInfo, const double dLr, const double dBeta1, const double dBeta2, const double dEpsilon, const int nIteration) { const T lr = static_cast(dLr); const T beta1 = static_cast(dBeta1); const T beta2 = static_cast(dBeta2); T epsilon = static_cast(dEpsilon); //fp16 to prevent underflow if(epsilon == 0.0) { epsilon = static_cast(1e-7); } const T iteration = static_cast(nIteration); adaBeliefUpdaterCuda<<>>( vx, xShapeInfo, vinv, invShapeInfo, vinm, inmShapeInfo, vz, zShapeInfo, vstV, stvShapeInfo, vstM, stmShapeInfo, lr, beta1, beta2, epsilon, iteration); sd::DebugHelper::checkErrorCode(const_cast(stream), "adaBeliefUpdaterCuda failed"); } /////////////////////////////////////////////////////////////////// void updaterAdaBelief(LaunchContext* context, NDArray& gradient, NDArray& initStateU, NDArray& initStateM, NDArray& update, NDArray& stateU, NDArray& stateM, const double dLr, const double dBeta1, const double dBeta2, const double dEpsilon, const int nIteration) { PointersManager manager(context, "adamUpdater"); dim3 updaterDims2 = updaterDims(gradient.lengthOf()); NDArray::prepareSpecialUse({&update, &stateU, &stateM}, {&gradient, &initStateU, &initStateM}); BUILD_SINGLE_SELECTOR(gradient.dataType(), adaBeliefUpdaterCudaLauncher, (updaterDims2.y, updaterDims2.x, updaterDims2.z,context->getCudaStream(), gradient.specialBuffer(), gradient.specialShapeInfo(), initStateU.specialBuffer(), initStateU.specialShapeInfo(), initStateM.specialBuffer(), initStateM.specialShapeInfo(), update.specialBuffer(), update.specialShapeInfo(), stateU.specialBuffer(), stateU.specialShapeInfo(), stateM.specialBuffer(), stateM.specialShapeInfo(), dLr, dBeta1, dBeta2, dEpsilon, nIteration), SD_FLOAT_TYPES); NDArray::registerSpecialUse({&update, &stateU, &stateM}, {&gradient, &initStateU, &initStateM}); manager.synchronize(); } } // namespace helpers } // namespace ops } // namespace sd