2019-06-06 14:21:15 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright (c) 2015-2018 Skymind, Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
//
|
|
|
|
// Created by Yurii Shyrma on 12.12.2017
|
|
|
|
//
|
|
|
|
|
|
|
|
#include<ops/declarable/helpers/polyGamma.h>
|
|
|
|
#include<ops/declarable/helpers/zeta.h>
|
|
|
|
#include <NDArrayFactory.h>
|
2019-11-13 15:15:18 +01:00
|
|
|
#include <execution/Threads.h>
|
2019-06-06 14:21:15 +02:00
|
|
|
|
|
|
|
namespace nd4j {
|
|
|
|
namespace ops {
|
|
|
|
namespace helpers {
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// calculate factorial
|
|
|
|
template <typename T>
|
|
|
|
static FORCEINLINE T getFactorial(const int n) {
|
|
|
|
if (n < 0)
|
|
|
|
throw std::runtime_error("factorial is not defined for negative number !");
|
|
|
|
|
|
|
|
if(n==0 || n==1)
|
|
|
|
return (T)1.f;
|
|
|
|
|
|
|
|
T result = (T)1.f;
|
|
|
|
|
|
|
|
for(int i = 2; i <= n; ++i)
|
|
|
|
result *= i;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// implementation is based on serial representation written in terms of the Hurwitz zeta function as polygamma = (-1)^{n+1} * n! * zeta(n+1, x)
|
|
|
|
template <typename T>
|
|
|
|
static FORCEINLINE T polyGammaScalar(nd4j::LaunchContext * context, const int n, const T x) {
|
|
|
|
|
|
|
|
// if (n < 0)
|
|
|
|
// throw("polyGamma function: n must be >= 0 !");
|
|
|
|
|
|
|
|
// if (x <= (T)0.)
|
|
|
|
// throw("polyGamma function: x must be > 0 !");
|
|
|
|
|
|
|
|
// TODO case for n = 0 (digamma)
|
|
|
|
|
|
|
|
int sign = (n + 1) % 2 ? -1 : 1;
|
|
|
|
// T factorial = (T)std::tgamma(n + 1);
|
|
|
|
|
|
|
|
return sign * getFactorial<T>(n) * zetaScalar<T>((T)(n + 1), x);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// calculate polygamma function for arrays
|
|
|
|
template <typename T>
|
|
|
|
static void polyGamma_(nd4j::LaunchContext * context, const NDArray& n, const NDArray& x, NDArray& output) {
|
|
|
|
|
|
|
|
NDArray& result = output;
|
|
|
|
|
|
|
|
int xLen = x.lengthOf();
|
2019-11-13 15:15:18 +01:00
|
|
|
|
|
|
|
auto func = PRAGMA_THREADS_FOR {
|
|
|
|
for (auto i = start; i < stop; i += increment)
|
|
|
|
result.p(i, polyGammaScalar<T>(context, n.e<int>(i), x.e<T>(i)));
|
|
|
|
};
|
|
|
|
samediff::Threads::parallel_for(func, 0, x.lengthOf());
|
2019-06-06 14:21:15 +02:00
|
|
|
|
|
|
|
// return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void polyGamma(nd4j::LaunchContext * context, const NDArray& n, const NDArray& x, NDArray& output) {
|
|
|
|
BUILD_SINGLE_SELECTOR(x.dataType(), polyGamma_, (context, n, x, output), FLOAT_TYPES);
|
|
|
|
}
|
|
|
|
|
|
|
|
BUILD_SINGLE_TEMPLATE(template void polyGamma_, (nd4j::LaunchContext * context, const NDArray& n, const NDArray& x, NDArray& output), FLOAT_TYPES);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|