129 lines
4.7 KiB
Plaintext
129 lines
4.7 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 Yurii Shyrma (iuriish@yahoo.com), created on 30.05.2019
|
|
//
|
|
|
|
#include <array/NDArrayFactory.h>
|
|
#include <array/ResultSet.h>
|
|
#include <exceptions/cuda_exception.h>
|
|
#include <helpers/ConstantTadHelper.h>
|
|
#include <helpers/PointersManager.h>
|
|
#include <helpers/ShapeUtils.h>
|
|
|
|
#include <ops/declarable/helpers/one_hot.h>
|
|
|
|
#include <numeric>
|
|
|
|
#include "execution/cuda/LaunchDims.h"
|
|
#include "helpers/DebugHelper.h"
|
|
|
|
|
|
namespace sd {
|
|
namespace ops {
|
|
namespace helpers {
|
|
|
|
///////////////////////////////////////////////////////////////////
|
|
// x - indices, z - output
|
|
template <typename X, typename Z>
|
|
SD_KERNEL static void onehotCuda(const void *vx, const LongType *xShapeInfo, void *vz,
|
|
const LongType *zShapeInfo, const LongType axis, const LongType depth,
|
|
const Z on, const Z off) {
|
|
const auto x = reinterpret_cast<const X *>(vx);
|
|
auto z = reinterpret_cast<Z *>(vz);
|
|
|
|
__shared__ int xRank, zRank;
|
|
__shared__ LongType zLen, totalThreads;
|
|
__shared__ const LongType *xShape, *xStride, *zShape, *zStride;
|
|
|
|
if (threadIdx.x == 0) {
|
|
xRank = shape::rank(xShapeInfo);
|
|
zRank = shape::rank(zShapeInfo);
|
|
zLen = shape::length(zShapeInfo);
|
|
totalThreads = gridDim.x * blockDim.x;
|
|
|
|
xShape = shape::shapeOf(xShapeInfo);
|
|
xStride = shape::stride(xShapeInfo);
|
|
zShape = shape::shapeOf(zShapeInfo);
|
|
zStride = shape::stride(zShapeInfo);
|
|
}
|
|
__syncthreads();
|
|
|
|
const auto tid = blockIdx.x * blockDim.x + threadIdx.x;
|
|
LongType coord[SD_MAX_RANK];
|
|
|
|
for (LongType i = tid; i < zLen; i += totalThreads) {
|
|
// Compute output coordinate and offset
|
|
INDEX2COORDS(i, zRank, zShape, coord);
|
|
LongType zOffset;
|
|
COORDS2INDEX(zRank, zStride, coord, zOffset);
|
|
|
|
// Extract depth coordinate and shift axis
|
|
const auto depthCoord = coord[axis];
|
|
for (LongType j = axis; j < zRank - 1; ++j) {
|
|
coord[j] = coord[j + 1];
|
|
}
|
|
|
|
// Compute input offset
|
|
LongType xOffset;
|
|
COORDS2INDEX(xRank, xStride, coord, xOffset);
|
|
|
|
// Check if the depth matches the index
|
|
const LongType idx = static_cast<LongType>(x[xOffset]);
|
|
z[zOffset] = (depthCoord == idx) ? on : off;
|
|
}
|
|
}
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////
|
|
template <typename X, typename Y>
|
|
static void onehotCudaLauncher(const int blocksPerGrid, const int threadsPerBlock, const int sharedMem,
|
|
const cudaStream_t *stream, const void *vx, const LongType *xShapeInfo, void *vz,
|
|
const LongType *zShapeInfo, const LongType axis, const LongType depth,
|
|
const double on, const double off) {
|
|
onehotCuda<X, Y><<<blocksPerGrid, threadsPerBlock, sharedMem, *stream>>>(vx, xShapeInfo, vz, zShapeInfo, axis, depth,
|
|
static_cast<Y>(on), static_cast<Y>(off));
|
|
sd::DebugHelper::checkErrorCode(const_cast<cudaStream_t *>(stream), "onehotCuda failed");
|
|
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////
|
|
void onehot(const LaunchContext *context, NDArray *indices, NDArray *output, const LongType axis,
|
|
const LongType depth, const double on, const double off) {
|
|
const auto xType = indices->dataType();
|
|
const auto zType = output->dataType();
|
|
|
|
dim3 oneHotLaunch = oneHotDims(output->lengthOf(),output->rankOf(), sizeof(decltype(*output->shapeInfo())));
|
|
PointersManager manager(context, "onehot");
|
|
|
|
NDArray::prepareSpecialUse({output}, {indices});
|
|
BUILD_DOUBLE_SELECTOR(
|
|
xType, zType, onehotCudaLauncher,
|
|
(oneHotLaunch.y, oneHotLaunch.x, oneHotLaunch.z, context->getCudaStream(), indices->specialBuffer(),
|
|
indices->specialShapeInfo(), output->specialBuffer(), output->specialShapeInfo(), axis, depth, on, off),
|
|
SD_COMMON_TYPES, SD_COMMON_TYPES);
|
|
NDArray::registerSpecialUse({output}, {indices});
|
|
|
|
manager.synchronize();
|
|
}
|
|
|
|
} // namespace helpers
|
|
} // namespace ops
|
|
} // namespace sd
|