chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,256 @@
|
||||
/* ******************************************************************************
|
||||
*
|
||||
*
|
||||
* 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)
|
||||
//
|
||||
|
||||
#include <execution/Threads.h>
|
||||
#include <helpers/OmpLaunchHelper.h>
|
||||
#include <helpers/ShapeUtils.h>
|
||||
#include <ops/declarable/helpers/batchnorm.h>
|
||||
|
||||
#if NOT_EXCLUDED(OP_batchnorm)
|
||||
namespace sd {
|
||||
namespace ops {
|
||||
namespace helpers {
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
template <typename T>
|
||||
static void batchnorm_(NDArray* input, NDArray* mean, NDArray* variance, NDArray* gamma,
|
||||
NDArray* beta, NDArray* output, const std::vector<LongType>& axes, const double epsilon) {
|
||||
// formula: output = gamma * ((input - mean) / sqrt(variance + epsilon)) + beta
|
||||
|
||||
const T* x = input->bufferAsT<T>();
|
||||
T* z = output->bufferAsT<T>();
|
||||
const T* m = mean->bufferAsT<T>();
|
||||
const T* v = variance->bufferAsT<T>();
|
||||
const T* g = gamma == nullptr ? nullptr : gamma->bufferAsT<T>();
|
||||
const T* b = beta == nullptr ? nullptr : beta->bufferAsT<T>();
|
||||
|
||||
const bool xzSameOffset = shape::haveSameShapeAndStrides(input->shapeInfo(), output->shapeInfo());
|
||||
|
||||
bool paramSameOffset = shape::haveSameShapeAndStrides(mean->shapeInfo(), variance->shapeInfo());
|
||||
if (paramSameOffset && gamma != nullptr)
|
||||
paramSameOffset &= shape::haveSameShapeAndStrides(mean->shapeInfo(), gamma->shapeInfo());
|
||||
if (paramSameOffset && beta != nullptr)
|
||||
paramSameOffset &= shape::haveSameShapeAndStrides(mean->shapeInfo(), beta->shapeInfo());
|
||||
|
||||
const sd::LongType lenBig = input->lengthOf();
|
||||
const sd::LongType lenSmall = mean->lengthOf();
|
||||
|
||||
const sd::LongType steps = lenBig / lenSmall;
|
||||
std::vector<sd::LongType> *dimsToExclude = ShapeUtils::evalDimsToExclude(input->rankOf(), axes.size(),axes.data());
|
||||
|
||||
OmpLaunchHelper info(lenBig, lenSmall);
|
||||
|
||||
auto func = PRAGMA_THREADS_DO {
|
||||
sd::LongType* xOffsets = new sd::LongType[steps];
|
||||
sd::LongType* zOffsets = xzSameOffset ? xOffsets : new sd::LongType[steps];
|
||||
sd::LongType * auxBuff = new sd::LongType [2 * input->rankOf()];
|
||||
|
||||
sd::LongType meanRank = shape::rank(mean->shapeInfo());
|
||||
sd::LongType varianceRank = shape::rank(variance->shapeInfo());
|
||||
sd::LongType gammaRank = gamma == nullptr ? 0 : shape::rank(gamma->shapeInfo());
|
||||
sd::LongType betaRank = beta == nullptr ? 0 : shape::rank(beta->shapeInfo());
|
||||
sd::LongType *meanShape = shape::shapeOf(mean->shapeInfo());
|
||||
sd::LongType *varianceShape = shape::shapeOf(variance->shapeInfo());
|
||||
sd::LongType *gammaShape = gamma == nullptr ? nullptr : shape::shapeOf(gamma->shapeInfo());
|
||||
sd::LongType *betaShape = beta == nullptr ? nullptr : shape::shapeOf(beta->shapeInfo());
|
||||
sd::LongType *meanStride = shape::stride(mean->shapeInfo());
|
||||
sd::LongType *varianceStride = shape::stride(variance->shapeInfo());
|
||||
sd::LongType *gammaStride = gamma == nullptr ? nullptr : shape::stride(gamma->shapeInfo());
|
||||
sd::LongType *betaStride = beta == nullptr ? nullptr : shape::stride(beta->shapeInfo());
|
||||
|
||||
|
||||
for (sd::LongType j = 0; j < lenSmall; ++j) {
|
||||
const bool isOwner = (j < info._numThreads) ? thread_id == j : thread_id == (j % info._numThreads);
|
||||
|
||||
if (!isOwner) continue;
|
||||
|
||||
LongType meanCoords[SD_MAX_RANK];
|
||||
LongType varCoords[SD_MAX_RANK];
|
||||
LongType gammaCoords[SD_MAX_RANK];
|
||||
LongType betaCoords[SD_MAX_RANK];
|
||||
LongType meanOffset;
|
||||
LongType varOffset;
|
||||
LongType gammaOffset;
|
||||
LongType betaOffset;
|
||||
|
||||
INDEX2COORDS(j, meanRank, meanShape, meanCoords);
|
||||
COORDS2INDEX(meanRank, meanStride, meanCoords, meanOffset);
|
||||
varOffset = paramSameOffset ? meanOffset : 0;
|
||||
if (!paramSameOffset) {
|
||||
INDEX2COORDS(j, varianceRank, varianceShape, varCoords);
|
||||
COORDS2INDEX(varianceRank, varianceStride, varCoords, varOffset);
|
||||
}
|
||||
|
||||
const auto meanVal = m[meanOffset];
|
||||
auto sigmaInvGam = static_cast<T>(1) / sd::math::sd_sqrt<T, T>(v[varOffset] + epsilon);
|
||||
|
||||
if (g != nullptr) {
|
||||
gammaOffset = paramSameOffset ? meanOffset : 0;
|
||||
if (!paramSameOffset) {
|
||||
INDEX2COORDS(j, gammaRank, gammaShape, gammaCoords);
|
||||
COORDS2INDEX(gammaRank, gammaStride, gammaCoords, gammaOffset);
|
||||
}
|
||||
sigmaInvGam *= g[gammaOffset];
|
||||
}
|
||||
|
||||
T betaVal = static_cast<T>(0);
|
||||
if (b != nullptr) {
|
||||
betaOffset = paramSameOffset ? meanOffset : 0;
|
||||
if (!paramSameOffset) {
|
||||
INDEX2COORDS(j, betaRank, betaShape, betaCoords);
|
||||
COORDS2INDEX(betaRank, betaStride, betaCoords, betaOffset);
|
||||
}
|
||||
betaVal = b[betaOffset];
|
||||
}
|
||||
|
||||
// calculate offsets for input and output
|
||||
shape::outerArrayOffsets(xOffsets, j, input->shapeInfo(), mean->shapeInfo(), auxBuff, dimsToExclude->data());
|
||||
if (!xzSameOffset)
|
||||
shape::outerArrayOffsets(zOffsets, j, output->shapeInfo(), mean->shapeInfo(), auxBuff, dimsToExclude->data());
|
||||
|
||||
PRAGMA_OMP_SIMD
|
||||
for (sd::LongType i = 0; i < steps; ++i) z[zOffsets[i]] = (x[xOffsets[i]] - meanVal) * sigmaInvGam + betaVal;
|
||||
}
|
||||
|
||||
delete[] auxBuff;
|
||||
delete[] xOffsets;
|
||||
if (!xzSameOffset) delete[] zOffsets;
|
||||
};
|
||||
|
||||
samediff::Threads::parallel_do(func, info._numThreads);
|
||||
|
||||
delete dimsToExclude;
|
||||
}
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
template <typename T>
|
||||
static void batchnorm2_(NDArray* input, NDArray* mean, NDArray* variance, NDArray* gamma,
|
||||
NDArray* beta, NDArray* output, const std::vector<int>& axes, const double epsilon) {
|
||||
// formula: output = gamma * ((input - mean) / sqrt(variance + epsilon)) + beta
|
||||
|
||||
const auto x = input->bufferAsT<T>();
|
||||
auto z = output->bufferAsT<T>();
|
||||
const auto m = mean->bufferAsT<T>();
|
||||
const auto v = variance->bufferAsT<T>();
|
||||
const auto g = gamma == nullptr ? nullptr : gamma->bufferAsT<T>();
|
||||
const auto b = beta == nullptr ? nullptr : beta->bufferAsT<T>();
|
||||
|
||||
// xRank == zRank, minRank = meanRank = varianceRank = gammaRank = betaRank
|
||||
const sd::LongType xRank = input->rankOf();
|
||||
const sd::LongType minRank = mean->rankOf();
|
||||
const sd::LongType numAxes = axes.size();
|
||||
|
||||
const bool xzSameOffset = shape::haveSameShapeAndStrides(input->shapeInfo(), output->shapeInfo());
|
||||
|
||||
bool paramSameOffset = shape::haveSameShapeAndStrides(mean->shapeInfo(), variance->shapeInfo());
|
||||
if (paramSameOffset && gamma != nullptr)
|
||||
paramSameOffset &= shape::haveSameShapeAndStrides(mean->shapeInfo(), gamma->shapeInfo());
|
||||
if (paramSameOffset && beta != nullptr)
|
||||
paramSameOffset &= shape::haveSameShapeAndStrides(mean->shapeInfo(), beta->shapeInfo());
|
||||
|
||||
auto func = PRAGMA_THREADS_FOR {
|
||||
sd::LongType xzCoords[SD_MAX_RANK], minCoords[SD_MAX_RANK];
|
||||
|
||||
for (sd::LongType i = 0, j = 0; i < xRank; ++i)
|
||||
if (j < numAxes && i != axes[j])
|
||||
minCoords[i] = 0;
|
||||
else
|
||||
++j;
|
||||
|
||||
sd::LongType *inputShape = input->shapeOf();
|
||||
sd::LongType *inputStride = input->stridesOf();
|
||||
|
||||
sd::LongType *outputShape = output->shapeOf();
|
||||
sd::LongType *outputStride = output->stridesOf();
|
||||
|
||||
sd::LongType *meanShape = mean->shapeOf();
|
||||
sd::LongType *varianceShape = variance->shapeOf();
|
||||
sd::LongType *gammaShape = gamma == nullptr ? nullptr : gamma->shapeOf();
|
||||
sd::LongType *betaShape = beta == nullptr ? nullptr : beta->shapeOf();
|
||||
|
||||
sd::LongType *meanStride = mean->stridesOf();
|
||||
sd::LongType *varianceStride = variance->stridesOf();
|
||||
|
||||
sd::LongType *gammaStride = gamma == nullptr ? nullptr : gamma->stridesOf();
|
||||
sd::LongType *betaStride = beta == nullptr ? nullptr : beta->stridesOf();
|
||||
for (sd::LongType i = start; i < stop; i++) {
|
||||
INDEX2COORDS(i, xRank, inputShape, xzCoords);
|
||||
|
||||
sd::LongType xOffset;
|
||||
COORDS2INDEX(xRank, inputStride, xzCoords, xOffset);
|
||||
sd::LongType zOffset = xzSameOffset ? xOffset : 0;
|
||||
if (!xzSameOffset) {
|
||||
COORDS2INDEX(xRank,outputStride, xzCoords, zOffset);
|
||||
}
|
||||
|
||||
if (minRank == xRank) {
|
||||
for (sd::LongType j = 0; j < numAxes; ++j) minCoords[axes[j]] = xzCoords[axes[j]];
|
||||
} else // minRank = numAxes = 1 in this case
|
||||
minCoords[0] = xzCoords[axes[0]];
|
||||
|
||||
sd::LongType meanOffset, varianceOffset;
|
||||
COORDS2INDEX(minRank, meanStride, minCoords, meanOffset);
|
||||
varianceOffset = paramSameOffset ? meanOffset : 0;
|
||||
if (!paramSameOffset) {
|
||||
COORDS2INDEX(minRank, varianceStride, minCoords, varianceOffset);
|
||||
}
|
||||
|
||||
T sigmaInvGam = 1. / sd::math::sd_sqrt<T, T>(v[varianceOffset] + epsilon);
|
||||
|
||||
if (g != nullptr) {
|
||||
sd::LongType gammaOffset = paramSameOffset ? meanOffset : 0;
|
||||
if (!paramSameOffset) {
|
||||
COORDS2INDEX(minRank,gammaStride, minCoords, gammaOffset);
|
||||
}
|
||||
sigmaInvGam *= g[gammaOffset];
|
||||
}
|
||||
|
||||
z[zOffset] = (x[xOffset] - m[meanOffset]) * sigmaInvGam;
|
||||
|
||||
if (b != nullptr) {
|
||||
sd::LongType betaOffset = paramSameOffset ? meanOffset : 0;
|
||||
if (!paramSameOffset) {
|
||||
COORDS2INDEX(minRank,betaStride, minCoords, betaOffset);
|
||||
}
|
||||
z[zOffset] += b[betaOffset];
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
samediff::Threads::parallel_for(func, 0, input->lengthOf());
|
||||
}
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
void batchnorm(NDArray* input, NDArray* mean, NDArray* variance, NDArray* gamma,
|
||||
NDArray* beta, NDArray* output, const std::vector<LongType>& axes, const double epsilon) {
|
||||
// batchnorm2_ is still slower ?
|
||||
BUILD_SINGLE_SELECTOR(input->dataType(), batchnorm_, (input, mean, variance, gamma, beta, output, axes, epsilon),
|
||||
SD_FLOAT_TYPES);
|
||||
}
|
||||
|
||||
BUILD_SINGLE_TEMPLATE( void batchnorm_,
|
||||
(NDArray* input, NDArray* mean, NDArray* variance, NDArray* gamma,
|
||||
NDArray* beta, NDArray* output, const std::vector<sd::LongType>& axes, const double epsilon),
|
||||
SD_FLOAT_TYPES);
|
||||
|
||||
} // namespace helpers
|
||||
} // namespace ops
|
||||
} // namespace sd
|
||||
#endif
|
||||
Reference in New Issue
Block a user