174 lines
7.8 KiB
Plaintext
174 lines
7.8 KiB
Plaintext
/* ******************************************************************************
|
|
*
|
|
*
|
|
* 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 raver119@gmail.com
|
|
//
|
|
|
|
#ifndef SCALAR_CU
|
|
#define SCALAR_CU
|
|
|
|
#include "loops/scalar.h"
|
|
#include <cuda.h>
|
|
#include <cuda_runtime.h>
|
|
#include <system/op_boilerplate.h>
|
|
#include <helpers/TAD.h>
|
|
#include <types/types.h>
|
|
|
|
using namespace simdOps;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
template <typename X, typename Y, typename Z, typename OpType>
|
|
__global__ static void scalarSimpleShaped(void const* vx, void const* vscalar, Nd4jLong const* xShapeInfo, void *vparams, void *vz, Nd4jLong const* zShapeInfo, int *allocationBuffer) {
|
|
|
|
auto scalar = reinterpret_cast<Y const*>(vscalar)[0];
|
|
auto x = reinterpret_cast<X const*>(vx);
|
|
auto params = reinterpret_cast<Z*>(vparams);
|
|
auto z = reinterpret_cast<Z*>(vz);
|
|
|
|
int totalThreads = gridDim.x * blockDim.x;
|
|
int tid = blockIdx.x * blockDim.x + threadIdx.x;
|
|
|
|
__shared__ Nd4jLong length;
|
|
if(threadIdx.x == 0) {
|
|
length = shape::length(xShapeInfo);
|
|
}
|
|
__syncthreads();
|
|
|
|
auto xEws = shape::elementWiseStride(xShapeInfo);
|
|
auto zEws = shape::elementWiseStride(zShapeInfo);
|
|
|
|
auto xOrder = shape::order(xShapeInfo);
|
|
auto zOrder = shape::order(zShapeInfo);
|
|
|
|
|
|
if (xEws >= 1 && zEws >= 1 && xOrder == zOrder) {
|
|
for (Nd4jLong i = tid; i < length; i += totalThreads) {
|
|
z[i * zEws] = OpType::op(x[i * xEws], scalar, params);
|
|
}
|
|
} else {
|
|
for (Nd4jLong i = tid; i < length; i += totalThreads) {
|
|
z[shape::getIndexOffset(i, zShapeInfo)] = OpType::op(x[shape::getIndexOffset(i, xShapeInfo)], scalar, params);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
template <typename X, typename Y, typename Z, typename OpType>
|
|
__global__ static void scalarAlongDimension(void const* vx, Nd4jLong const* xShapeInfo,
|
|
void* vextraParams,
|
|
void* vz, Nd4jLong const* zShapeInfo,
|
|
void const* vscalars,
|
|
int *dimension, int dimensionLength,
|
|
Nd4jLong const* tadShapeInfo, Nd4jLong const* tadOffsets,
|
|
Nd4jLong const* tadShapeInfoZ, Nd4jLong const* tadOffsetsZ) {
|
|
|
|
auto x = reinterpret_cast<X const*>(vx);
|
|
auto extraParams = reinterpret_cast<Z*>(vextraParams);
|
|
auto z = reinterpret_cast<Z*>(vz);
|
|
auto scalars = reinterpret_cast<Y const*>(vscalars);
|
|
|
|
if (tadShapeInfoZ == nullptr) {
|
|
tadShapeInfoZ = tadShapeInfo;
|
|
tadOffsetsZ = tadOffsets;
|
|
}
|
|
|
|
// tad preparation
|
|
auto tadEws = shape::elementWiseStride(tadShapeInfo);
|
|
auto zEws = shape::elementWiseStride(tadShapeInfoZ);
|
|
auto tadLength = shape::length(tadShapeInfo);//shape::tadLength(xShapeInfo, dimension, dimensionLength);
|
|
auto numTads =shape::length(xShapeInfo) / tadLength;
|
|
|
|
if (tadEws > 0 && zEws > 0 && shape::order(tadShapeInfo) == shape::order(zShapeInfo)) {
|
|
|
|
// main loop, rolling over tads
|
|
for (int r = blockIdx.x; r < numTads; r += gridDim.x) {
|
|
Z *oZ = z + tadOffsetsZ[r];
|
|
auto oX = x + tadOffsets[r];
|
|
|
|
auto s = scalars[r];
|
|
|
|
for (int f = threadIdx.x; f < tadLength; f += blockDim.x)
|
|
oZ[f * zEws] = OpType::op(oX[f * tadEws], s, extraParams);
|
|
}
|
|
} else {
|
|
// main loop, rolling over tads
|
|
for (int r = blockIdx.x; r < numTads; r += gridDim.x) {
|
|
Z *oZ = z + tadOffsetsZ[r];
|
|
auto oX = x + tadOffsets[r];
|
|
|
|
auto s = scalars[r];
|
|
|
|
for (int f = threadIdx.x; f < tadLength; f += blockDim.x)
|
|
oZ[shape::getIndexOffset(f, tadShapeInfoZ)] = OpType::op(oX[shape::getIndexOffset(f, tadShapeInfo)], s, extraParams);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
namespace functions {
|
|
namespace scalar {
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
template<typename X, typename Y, typename Z>
|
|
template<typename OpType>
|
|
void _CUDA_H ScalarTransform<X,Y,Z>::intermediateShaped(dim3& launchDims, cudaStream_t *stream, void const* vx, Nd4jLong const* xShapeInfo, Nd4jLong const* hxShapeInfo, void *vz, Nd4jLong const* zShapeInfo, Nd4jLong const* hzShapeInfo, void const* vscalar, void *vextraParams, int *allocPointer){
|
|
|
|
auto xEws = shape::elementWiseStride(hxShapeInfo);
|
|
auto xOrder = shape::order(hxShapeInfo);
|
|
|
|
auto zEws = shape::elementWiseStride(hzShapeInfo);
|
|
auto zOrder = shape::order(hzShapeInfo);
|
|
|
|
auto length = shape::length(hxShapeInfo);
|
|
|
|
scalarSimpleShaped<X, Y, Z, OpType><<<launchDims.x, launchDims.y, launchDims.z, *stream>>>(vx, vscalar, xShapeInfo, vextraParams, vz, zShapeInfo, allocPointer);
|
|
sd::DebugHelper::checkErrorCode(stream, "scalarSimpleShapedA(...) failed");
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
template<typename X, typename Y, typename Z>
|
|
template<typename OpType>
|
|
void _CUDA_H ScalarTransform<X,Y,Z>::intermediateAlongDimension(dim3& launchDims, cudaStream_t *stream, void const* x, Nd4jLong const* xShapeInfo, void *z, Nd4jLong const* zShapeInfo, void const* scalars, void *extraParams, int *dimension, int dimensionLength, Nd4jLong const* tadShapeInfo, Nd4jLong const* tadOffsets, Nd4jLong const* tadShapeInfoZ, Nd4jLong const* tadOffsetsZ) {
|
|
scalarAlongDimension<X, Y, Z, OpType><<<launchDims.x, launchDims.y, launchDims.z>>>(x, xShapeInfo, extraParams, z, zShapeInfo, scalars, dimension, dimensionLength, tadShapeInfo, tadOffsets, tadShapeInfoZ, tadOffsetsZ);
|
|
sd::DebugHelper::checkErrorCode(stream, "scalarAlongDimA(...) failed");
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
template<typename X, typename Y, typename Z>
|
|
void ScalarTransform<X,Y,Z>::executeCudaShaped(dim3& launchDims, cudaStream_t *stream, int opNum, void const* vx, Nd4jLong const* xShapeInfo, Nd4jLong const* hxShapeInfo, void *vz, Nd4jLong const* zShapeInfo, Nd4jLong const* hzShapeInfo, void const* vscalar, void *vextraParams) {
|
|
|
|
if (sd::Environment::getInstance().isDebugAndVerbose())
|
|
printf("H14 opNum:[%i]\n", opNum);
|
|
|
|
DISPATCH_BY_OPNUM_TTT(intermediateShaped, PARAMS(launchDims, stream, vx, xShapeInfo, hxShapeInfo, vz, zShapeInfo, hzShapeInfo, vscalar, vextraParams, nullptr), SCALAR_OPS);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
template<typename X, typename Y, typename Z>
|
|
void ScalarTransform<X,Y,Z>::executeCudaAlongDimension(dim3& launchDims, cudaStream_t *stream, int opNum, void const* vx, Nd4jLong const* xShapeInfo, void *vz, Nd4jLong const* zShapeInfo, void const* vscalars, void *vextraParams, int *dimension, int dimensionLength, Nd4jLong const* tadShapeInfo, Nd4jLong const* tadOffsets, Nd4jLong const* tadShapeInfoZ, Nd4jLong const* tadOffsetsZ) {
|
|
DISPATCH_BY_OPNUM_TTT(intermediateAlongDimension, PARAMS(launchDims, stream, vx, xShapeInfo, vz, zShapeInfo, vscalars, vextraParams, dimension, dimensionLength, tadShapeInfo, tadOffsets, tadShapeInfoZ, tadOffsetsZ), SCALAR_OPS);
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#endif // SCALAR_CU |