2021-02-01 13:31:45 +01:00
|
|
|
/* ******************************************************************************
|
|
|
|
*
|
2019-06-06 14:21:15 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
2021-02-01 13:31:45 +01:00
|
|
|
* See the NOTICE file distributed with this work for additional
|
|
|
|
* information regarding copyright ownership.
|
2019-06-06 14:21:15 +02:00
|
|
|
* 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, created on 15.12.17.
|
|
|
|
// @author Yurii Shyrma (iuriish@yahoo.com)
|
|
|
|
//
|
|
|
|
|
|
|
|
#include <types/types.h>
|
2020-03-02 10:49:41 +01:00
|
|
|
#include <system/op_boilerplate.h>
|
2019-06-06 14:21:15 +02:00
|
|
|
#include <loops/random.h>
|
2020-03-02 10:49:41 +01:00
|
|
|
#include <helpers/OmpLaunchHelper.h>
|
2019-06-06 14:21:15 +02:00
|
|
|
|
|
|
|
using namespace randomOps;
|
|
|
|
|
|
|
|
namespace functions {
|
|
|
|
namespace random {
|
|
|
|
|
2020-01-31 06:57:31 +01:00
|
|
|
|
2019-06-06 14:21:15 +02:00
|
|
|
template<typename X>
|
|
|
|
template<typename OpClass>
|
|
|
|
void RandomFunction<X>::execTransform(Nd4jPointer state,
|
2020-05-09 07:06:14 +02:00
|
|
|
const void *vx, const Nd4jLong *xShapeInfo,
|
|
|
|
const void *vy, const Nd4jLong *yShapeInfo,
|
|
|
|
void *vz, const Nd4jLong *zShapeInfo,
|
|
|
|
void *vextraArguments) {
|
|
|
|
|
|
|
|
auto x = reinterpret_cast<const X *>(vx);
|
|
|
|
auto y = reinterpret_cast<const X *>(vy);
|
2019-06-06 14:21:15 +02:00
|
|
|
auto z = reinterpret_cast<X *>(vz);
|
|
|
|
auto extraArguments = reinterpret_cast<X *>(vextraArguments);
|
|
|
|
|
|
|
|
if (OpClass::requiresSpecial) {
|
|
|
|
OpClass::specialOp(state, x, xShapeInfo, y, yShapeInfo, z, zShapeInfo, extraArguments);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-11 19:12:09 +02:00
|
|
|
auto length = shape::length(zShapeInfo);
|
2019-06-06 14:21:15 +02:00
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
sd::graph::RandomGenerator* rng = reinterpret_cast<sd::graph::RandomGenerator*>(state);
|
2019-09-11 19:12:09 +02:00
|
|
|
|
2019-06-06 14:21:15 +02:00
|
|
|
if(shape::haveSameShapeAndStrides(xShapeInfo, yShapeInfo) && shape::haveSameShapeAndStrides(xShapeInfo, zShapeInfo)) {
|
|
|
|
|
|
|
|
|
2020-01-31 06:57:31 +01:00
|
|
|
if(shape::elementWiseStride(zShapeInfo) == 1 && shape::elementWiseStride(xShapeInfo) == 1 && shape::elementWiseStride(yShapeInfo) == 1 &&
|
|
|
|
shape::order(xShapeInfo) == shape::order(zShapeInfo) && shape::order(zShapeInfo) == shape::order(yShapeInfo) ){
|
|
|
|
|
|
|
|
auto func = PRAGMA_THREADS_FOR {
|
|
|
|
PRAGMA_OMP_SIMD
|
|
|
|
for (auto i = start; i < stop; i++) {
|
|
|
|
z[i] = OpClass::op(x[i], y[i], i, length, rng, extraArguments);
|
|
|
|
}
|
|
|
|
};
|
2020-03-09 06:22:49 +01:00
|
|
|
samediff::Threads::parallel_for(func, 0, length, 1);
|
2020-01-31 06:57:31 +01:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
uint xShapeInfoCast[MAX_RANK];
|
2020-03-02 10:49:41 +01:00
|
|
|
const bool canCastX = sd::DataTypeUtils::castShapeInfo(xShapeInfo, xShapeInfoCast);
|
2020-01-31 06:57:31 +01:00
|
|
|
|
|
|
|
auto func = PRAGMA_THREADS_FOR {
|
|
|
|
PRAGMA_OMP_SIMD
|
2020-02-20 09:43:26 +01:00
|
|
|
for (auto i = start; i < stop; i++) {
|
2020-01-31 06:57:31 +01:00
|
|
|
auto offset = shape::indexOffset(i, xShapeInfo, xShapeInfoCast, canCastX);
|
|
|
|
z[offset] = OpClass::op(x[offset], y[offset], i, length, rng, extraArguments);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-03-09 06:22:49 +01:00
|
|
|
samediff::Threads::parallel_for(func, 0, length, 1);
|
2020-01-31 06:57:31 +01:00
|
|
|
}
|
2019-06-06 14:21:15 +02:00
|
|
|
}
|
|
|
|
else if (shape::haveSameShapeAndStrides(xShapeInfo, yShapeInfo)) {
|
|
|
|
|
|
|
|
uint xShapeInfoCast[MAX_RANK];
|
|
|
|
uint zShapeInfoCast[MAX_RANK];
|
2020-03-02 10:49:41 +01:00
|
|
|
const bool canCastX = sd::DataTypeUtils::castShapeInfo(xShapeInfo, xShapeInfoCast);
|
|
|
|
const bool canCastZ = sd::DataTypeUtils::castShapeInfo(zShapeInfo, zShapeInfoCast);
|
2019-06-06 14:21:15 +02:00
|
|
|
|
2019-11-13 15:15:18 +01:00
|
|
|
auto func = PRAGMA_THREADS_FOR {
|
2019-06-06 14:21:15 +02:00
|
|
|
PRAGMA_OMP_SIMD
|
2020-02-26 19:12:19 +01:00
|
|
|
for (auto i = start; i < stop; i++) {
|
2019-11-13 15:15:18 +01:00
|
|
|
auto offset = shape::indexOffset(i, xShapeInfo, xShapeInfoCast, canCastX);
|
|
|
|
auto zOffset = shape::indexOffset(i, zShapeInfo, zShapeInfoCast, canCastZ);
|
2019-06-06 14:21:15 +02:00
|
|
|
z[zOffset] = OpClass::op(x[offset], y[offset], i, length, rng, extraArguments);
|
|
|
|
}
|
2019-11-13 15:15:18 +01:00
|
|
|
};
|
|
|
|
|
2020-03-09 06:22:49 +01:00
|
|
|
samediff::Threads::parallel_for(func, 0, length, 1);
|
2019-06-06 14:21:15 +02:00
|
|
|
}
|
|
|
|
else if (shape::haveSameShapeAndStrides(xShapeInfo, zShapeInfo)) {
|
|
|
|
|
|
|
|
uint xShapeInfoCast[MAX_RANK];
|
|
|
|
uint yShapeInfoCast[MAX_RANK];
|
2020-03-02 10:49:41 +01:00
|
|
|
const bool canCastX = sd::DataTypeUtils::castShapeInfo(xShapeInfo, xShapeInfoCast);
|
|
|
|
const bool canCastY = sd::DataTypeUtils::castShapeInfo(yShapeInfo, yShapeInfoCast);
|
2019-06-06 14:21:15 +02:00
|
|
|
|
2019-11-13 15:15:18 +01:00
|
|
|
auto func = PRAGMA_THREADS_FOR {
|
2019-06-06 14:21:15 +02:00
|
|
|
PRAGMA_OMP_SIMD
|
2020-02-26 19:12:19 +01:00
|
|
|
for (auto i = start; i < stop; i++) {
|
2019-11-13 15:15:18 +01:00
|
|
|
auto offset = shape::indexOffset(i, xShapeInfo, xShapeInfoCast, canCastX);
|
|
|
|
auto yOffset = shape::indexOffset(i, yShapeInfo, yShapeInfoCast, canCastY);
|
2019-06-06 14:21:15 +02:00
|
|
|
z[offset] = OpClass::op(x[offset], y[yOffset], i, length, rng, extraArguments);
|
|
|
|
}
|
2019-11-13 15:15:18 +01:00
|
|
|
};
|
|
|
|
|
2020-03-09 06:22:49 +01:00
|
|
|
samediff::Threads::parallel_for(func, 0, length, 1);
|
2019-06-06 14:21:15 +02:00
|
|
|
}
|
|
|
|
else if (shape::haveSameShapeAndStrides(yShapeInfo, zShapeInfo)) {
|
|
|
|
|
|
|
|
uint xShapeInfoCast[MAX_RANK];
|
|
|
|
uint yShapeInfoCast[MAX_RANK];
|
2020-03-02 10:49:41 +01:00
|
|
|
const bool canCastX = sd::DataTypeUtils::castShapeInfo(xShapeInfo, xShapeInfoCast);
|
|
|
|
const bool canCastY = sd::DataTypeUtils::castShapeInfo(yShapeInfo, yShapeInfoCast);
|
2019-06-06 14:21:15 +02:00
|
|
|
|
2019-11-13 15:15:18 +01:00
|
|
|
auto func = PRAGMA_THREADS_FOR {
|
2019-06-06 14:21:15 +02:00
|
|
|
PRAGMA_OMP_SIMD
|
2020-02-26 19:12:19 +01:00
|
|
|
for (auto i = start; i < stop; i++) {
|
2019-11-13 15:15:18 +01:00
|
|
|
auto xOffset = shape::indexOffset(i, xShapeInfo, xShapeInfoCast, canCastX);
|
|
|
|
auto offset = shape::indexOffset(i, yShapeInfo, yShapeInfoCast, canCastY);
|
2019-06-06 14:21:15 +02:00
|
|
|
z[offset] = OpClass::op(x[xOffset], y[offset], i, length, rng, extraArguments);
|
|
|
|
}
|
2019-11-13 15:15:18 +01:00
|
|
|
};
|
|
|
|
|
2020-03-09 06:22:49 +01:00
|
|
|
samediff::Threads::parallel_for(func, 0, length, 1);
|
2019-06-06 14:21:15 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
|
|
|
|
uint xShapeInfoCast[MAX_RANK];
|
|
|
|
uint yShapeInfoCast[MAX_RANK];
|
|
|
|
uint zShapeInfoCast[MAX_RANK];
|
2020-03-02 10:49:41 +01:00
|
|
|
const bool canCastX = sd::DataTypeUtils::castShapeInfo(xShapeInfo, xShapeInfoCast);
|
|
|
|
const bool canCastY = sd::DataTypeUtils::castShapeInfo(yShapeInfo, yShapeInfoCast);
|
|
|
|
const bool canCastZ = sd::DataTypeUtils::castShapeInfo(zShapeInfo, zShapeInfoCast);
|
2019-06-06 14:21:15 +02:00
|
|
|
|
2019-11-13 15:15:18 +01:00
|
|
|
auto func = PRAGMA_THREADS_FOR {
|
2019-06-06 14:21:15 +02:00
|
|
|
PRAGMA_OMP_SIMD
|
2020-02-26 19:12:19 +01:00
|
|
|
for (auto i = start; i < stop; i++) {
|
2019-11-13 15:15:18 +01:00
|
|
|
auto xOffset = shape::indexOffset(i, xShapeInfo, xShapeInfoCast, canCastX);
|
|
|
|
auto yOffset = shape::indexOffset(i, yShapeInfo, yShapeInfoCast, canCastY);
|
|
|
|
auto zOffset = shape::indexOffset(i, zShapeInfo, zShapeInfoCast, canCastZ);
|
2019-06-06 14:21:15 +02:00
|
|
|
z[zOffset] = OpClass::op(x[xOffset], y[yOffset], i, length, rng, extraArguments);
|
|
|
|
}
|
2019-11-13 15:15:18 +01:00
|
|
|
};
|
|
|
|
|
2020-03-09 06:22:49 +01:00
|
|
|
samediff::Threads::parallel_for(func, 0, length, 1);
|
2019-06-06 14:21:15 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template<typename X>
|
|
|
|
template<typename OpClass>
|
|
|
|
void RandomFunction<X>::execTransform(Nd4jPointer state,
|
2020-05-09 07:06:14 +02:00
|
|
|
const void *vx, const Nd4jLong *xShapeInfo,
|
|
|
|
void *vz, const Nd4jLong *zShapeInfo,
|
|
|
|
void *vextraArguments) {
|
|
|
|
auto x = reinterpret_cast<const X *>(vx);
|
2019-06-06 14:21:15 +02:00
|
|
|
auto z = reinterpret_cast<X *>(vz);
|
|
|
|
auto extraArguments = reinterpret_cast<X *>(vextraArguments);
|
|
|
|
|
|
|
|
auto length = shape::length(zShapeInfo);
|
|
|
|
|
|
|
|
uint xShapeInfoCast[MAX_RANK];
|
2020-03-02 10:49:41 +01:00
|
|
|
const bool canCastX = sd::DataTypeUtils::castShapeInfo(xShapeInfo, xShapeInfoCast);
|
2019-06-06 14:21:15 +02:00
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
sd::graph::RandomGenerator* rng = reinterpret_cast<sd::graph::RandomGenerator*>(state);
|
2019-09-11 19:12:09 +02:00
|
|
|
|
2019-06-06 14:21:15 +02:00
|
|
|
if(shape::haveSameShapeAndStrides(xShapeInfo, zShapeInfo)) {
|
|
|
|
|
2020-01-31 06:57:31 +01:00
|
|
|
if(shape::elementWiseStride(zShapeInfo) == 1 && shape::elementWiseStride(xShapeInfo) == 1 && shape::order(xShapeInfo) == shape::order(zShapeInfo)){
|
|
|
|
|
|
|
|
auto func = PRAGMA_THREADS_FOR {
|
|
|
|
PRAGMA_OMP_SIMD
|
|
|
|
for (auto i = start; i < stop; i++) {
|
|
|
|
z[i] = OpClass::op(x[i], i, length, rng, extraArguments);
|
|
|
|
}
|
|
|
|
};
|
2020-03-09 06:22:49 +01:00
|
|
|
samediff::Threads::parallel_for(func, 0, length, 1);
|
2020-01-31 06:57:31 +01:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
auto func = PRAGMA_THREADS_FOR {
|
|
|
|
PRAGMA_OMP_SIMD
|
2020-02-26 19:12:19 +01:00
|
|
|
for (auto i = start; i < stop; i++) {
|
2020-01-31 06:57:31 +01:00
|
|
|
auto offset = shape::indexOffset(i, xShapeInfo, xShapeInfoCast, canCastX);
|
|
|
|
z[offset] = OpClass::op(x[offset], i, length, rng, extraArguments);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-03-09 06:22:49 +01:00
|
|
|
samediff::Threads::parallel_for(func, 0, length, 1);
|
2020-01-31 06:57:31 +01:00
|
|
|
}
|
2019-06-06 14:21:15 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
|
|
|
|
uint zShapeInfoCast[MAX_RANK];
|
2020-03-02 10:49:41 +01:00
|
|
|
const bool canCastZ = sd::DataTypeUtils::castShapeInfo(zShapeInfo, zShapeInfoCast);
|
2019-06-06 14:21:15 +02:00
|
|
|
|
2019-11-13 15:15:18 +01:00
|
|
|
auto func = PRAGMA_THREADS_FOR {
|
2019-06-06 14:21:15 +02:00
|
|
|
PRAGMA_OMP_SIMD
|
2020-02-26 19:12:19 +01:00
|
|
|
for (auto i = start; i < stop; i++) {
|
2019-11-13 15:15:18 +01:00
|
|
|
auto xOffset = shape::indexOffset(i, xShapeInfo, xShapeInfoCast, canCastX);
|
|
|
|
auto zOffset = shape::indexOffset(i, zShapeInfo, zShapeInfoCast, canCastZ);
|
2019-06-06 14:21:15 +02:00
|
|
|
z[zOffset] = OpClass::op(x[xOffset], i, length, rng, extraArguments);
|
|
|
|
}
|
2019-11-13 15:15:18 +01:00
|
|
|
};
|
|
|
|
|
2020-03-09 06:22:49 +01:00
|
|
|
samediff::Threads::parallel_for(func, 0, length, 1);
|
2019-06-06 14:21:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template<typename X>
|
|
|
|
template<typename OpClass>
|
2020-05-09 07:06:14 +02:00
|
|
|
void RandomFunction<X>::execTransform(Nd4jPointer state, void *vz, const Nd4jLong *zShapeInfo, void *vextraArguments) {
|
2019-06-06 14:21:15 +02:00
|
|
|
|
|
|
|
auto z = reinterpret_cast<X *>(vz);
|
|
|
|
auto extraArguments = reinterpret_cast<X *>(vextraArguments);
|
|
|
|
|
|
|
|
auto length = shape::length(zShapeInfo);
|
2019-09-11 19:12:09 +02:00
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
sd::graph::RandomGenerator* rng = reinterpret_cast<sd::graph::RandomGenerator*>(state);
|
2019-06-06 14:21:15 +02:00
|
|
|
|
2020-01-31 06:57:31 +01:00
|
|
|
if(shape::elementWiseStride(zShapeInfo) == 1){
|
2019-06-06 14:21:15 +02:00
|
|
|
|
2020-01-31 06:57:31 +01:00
|
|
|
auto func = PRAGMA_THREADS_FOR {
|
|
|
|
PRAGMA_OMP_SIMD
|
|
|
|
for (auto i = start; i < stop; i++) {
|
|
|
|
z[i] = OpClass::op( i, length, rng, extraArguments);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-03-09 06:22:49 +01:00
|
|
|
samediff::Threads::parallel_for(func, 0, length, 1);
|
2020-01-31 06:57:31 +01:00
|
|
|
}
|
|
|
|
else{
|
2020-03-02 10:49:41 +01:00
|
|
|
sd::OmpLaunchHelper info(length);
|
2020-01-31 06:57:31 +01:00
|
|
|
|
|
|
|
uint zShapeInfoCast[MAX_RANK];
|
2020-03-02 10:49:41 +01:00
|
|
|
const bool canCastZ = sd::DataTypeUtils::castShapeInfo(zShapeInfo, zShapeInfoCast);
|
2019-11-13 15:15:18 +01:00
|
|
|
|
2020-01-31 06:57:31 +01:00
|
|
|
auto func = PRAGMA_THREADS_FOR {
|
|
|
|
PRAGMA_OMP_SIMD
|
2020-02-26 19:12:19 +01:00
|
|
|
for (auto i = start; i < stop; i++) {
|
2020-01-31 06:57:31 +01:00
|
|
|
auto offset = shape::indexOffset(i, zShapeInfo, zShapeInfoCast, canCastZ);
|
|
|
|
z[offset] = OpClass::op(i, length, rng, extraArguments);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-03-09 06:22:49 +01:00
|
|
|
samediff::Threads::parallel_for(func, 0, length, 1);
|
2020-01-31 06:57:31 +01:00
|
|
|
}
|
2019-06-06 14:21:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename X>
|
2020-05-09 07:06:14 +02:00
|
|
|
void RandomFunction<X>::execTransform(int opNum, Nd4jPointer state, const void *x, const Nd4jLong *xShapeInfo, void *z, const Nd4jLong *zShapeInfo, void *extraArguments) {
|
2019-06-06 14:21:15 +02:00
|
|
|
DISPATCH_BY_OPNUM_T(execTransform, PARAMS(state, x, xShapeInfo, z, zShapeInfo, extraArguments), RANDOM_OPS)
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename X>
|
2020-05-09 07:06:14 +02:00
|
|
|
void RandomFunction<X>::execTransform(int opNum, Nd4jPointer state, const void *x, const Nd4jLong *xShapeInfo, const void *y, const Nd4jLong *yShapeInfo, void *z, const Nd4jLong *zShapeInfo, void *extraArguments) {
|
2019-06-06 14:21:15 +02:00
|
|
|
DISPATCH_BY_OPNUM_T(execTransform, PARAMS(state, x, xShapeInfo, y, yShapeInfo, z, zShapeInfo, extraArguments), RANDOM_OPS)
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename X>
|
2020-05-09 07:06:14 +02:00
|
|
|
void RandomFunction<X>::execTransform(int opNum, Nd4jPointer state, void *z, const Nd4jLong *zShapeInfo, void *extraArguments) {
|
2019-06-06 14:21:15 +02:00
|
|
|
DISPATCH_BY_OPNUM_T(execTransform, PARAMS(state, z, zShapeInfo, extraArguments), RANDOM_OPS)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-10 08:57:18 +01:00
|
|
|
//BUILD_SINGLE_TEMPLATE(template class ND4J_EXPORT RandomFunction, , FLOAT_TYPES);
|
2019-06-06 14:21:15 +02:00
|
|
|
}
|
|
|
|
}
|