HomeSort by relevance Sort by last modified time
    Searched refs:igamma (Results 1 - 24 of 24) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
cwise_op_gpu_igammas_double.cu.cc 23 DEFINE_BINARY1(igamma, double);
cwise_op_gpu_igammas_float.cu.cc 23 DEFINE_BINARY1(igamma, float);
cwise_op_igammas.cc 20 REGISTER2(BinaryOp, CPU, "Igamma", functor::igamma, float, double);
24 REGISTER2(BinaryOp, GPU, "Igamma", functor::igamma, float, double);
cwise_ops.h 964 struct igamma : base<T, Eigen::internal::scalar_igamma_op<T>> {}; struct in namespace:tensorflow::functor
    [all...]
  /external/eigen/unsupported/Eigen/src/SpecialFunctions/
SpecialFunctionsPacketMath.h 41 /** \internal \returns the incomplete gamma function igamma(\a a, \a x) */
43 Packet pigamma(const Packet& a, const Packet& x) { using numext::igamma; return igamma(a, x); }
SpecialFunctionsHalf.h 33 template<> EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::half igamma(const Eigen::half& a, const Eigen::half& x) { function in namespace:Eigen::numext
34 return Eigen::half(Eigen::numext::igamma(static_cast<float>(a), static_cast<float>(x)));
SpecialFunctionsArrayAPI.h 16 /** \cpp11 \returns an expression of the coefficient-wise igamma(\a a, \a x) to the given arrays.
28 igamma(const Eigen::ArrayBase<Derived>& a, const Eigen::ArrayBase<ExponentDerived>& x) function in namespace:Eigen
44 * \sa Eigen::igamma(), Eigen::lgamma()
SpecialFunctionsFunctors.h 20 * \brief Template functor to compute the incomplete gamma function igamma(a, x)
22 * \sa class CwiseBinaryOp, Cwise::igamma
28 using numext::igamma; return igamma(a, x);
SpecialFunctionsImpl.h 631 * Implementation of igamma (incomplete gamma integral), based on Cephes but requires C++11/C99 *
1544 igamma(const Scalar& a, const Scalar& x) { function in namespace:Eigen::numext
    [all...]
  /external/eigen/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/
CudaSpecialFunctions.h 108 using numext::igamma;
110 igamma(a.x, x.x),
111 igamma(a.y, x.y),
112 igamma(a.z, x.z),
113 igamma(a.w, x.w));
119 using numext::igamma;
120 return make_double2(igamma(a.x, x.x), igamma(a.y, x.y));
  /external/eigen/unsupported/test/
special_functions.cpp 61 // Test various propreties of igamma & igammac. These are normalized
64 // igamma(a, x) = gamma(a, x) / Gamma(a)
74 ArrayType gamma_a_x = Eigen::igamma(a, x) * a.lgamma().exp();
75 ArrayType gamma_a_m1_x = Eigen::igamma(a_m1, x) * a_m1.lgamma().exp();
91 // Check exact values of igamma and igammac against a third party calculation.
120 VERIFY((std::isnan)(numext::igamma(a_s[i], x_s[j])));
122 VERIFY_IS_APPROX(numext::igamma(a_s[i], x_s[j]), igamma_s[i][j]);
  /external/tensorflow/tensorflow/contrib/labeled_tensor/
__init__.py 98 igamma = _core.igamma variable
  /external/tensorflow/tensorflow/python/kernel_tests/random/
random_grad_test.py 119 where u = igamma(alpha, sample).
162 igamma(alpha, sample) = u, where u ~ Uniform(0, 1).
165 d igamma(alpha, sample) / dalpha
166 + d igamma(alpha, sample) / dsample * dsample/dalpha = 0
167 d igamma(alpha, sample) / dalpha
168 + d igamma(alpha, sample) / dsample * dsample / dalpha = 0
169 dsample/dalpha = - (d igamma(alpha, sample) / dalpha)
170 / d igamma(alpha, sample) / dsample
184 cdf = math_ops.igamma(alpha, sample_sg)
  /external/tensorflow/tensorflow/python/ops/distributions/
gamma.py 231 # Note that igamma returns the regularized incomplete gamma function,
233 return math_ops.igamma(self.concentration, self.rate * x)
  /external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
core.py 1197 igamma = define_binary_op('igamma', math_ops.igamma) variable
    [all...]
core_test.py 843 ('igamma', None, math_ops.igamma, core.igamma),
  /external/tensorflow/tensorflow/python/data/experimental/kernel_tests/optimization/
map_vectorization_test.py 160 ("Igamma", math_ops.igamma),
  /external/tensorflow/tensorflow/python/ops/parallel_for/
math_test.py 167 math_ops.igamma,
pfor.py     [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
cwise_ops_binary_test.py 225 math_ops.igamma)
293 math_ops.igamma)
    [all...]
  /external/libpng/
pngrutil.c 1122 png_fixed_point igamma; local
    [all...]
  /external/pdfium/third_party/libpng16/
pngrutil.c 1112 png_fixed_point igamma; local
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorBase.h 136 // igamma(a = this, x = other)
139 igamma(const OtherDerived& other) const { function in class:Eigen::TensorBase
    [all...]
  /external/ImageMagick/coders/
png.c 5868 igamma; local
    [all...]

Completed in 2072 milliseconds