Home
last modified time | relevance | path

Searched refs:polygamma (Results 1 – 25 of 33) sorted by relevance

12

/external/eigen/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/
DCudaSpecialFunctions.h66 using numext::polygamma;
67 …return make_float4(polygamma(n.x, x.x), polygamma(n.y, x.y), polygamma(n.z, x.z), polygamma(n.w, x…
73 using numext::polygamma;
74 return make_double2(polygamma(n.x, x.x), polygamma(n.y, x.y));
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Polygamma.pbtxt3 summary: "Compute the polygamma function \\\\(\\psi^{(n)}(x)\\\\)."
5 The polygamma function is defined as:
11 The polygamma function is defined only for non-negative integer orders \\a\\.
/external/tensorflow/tensorflow/core/api_def/python_api/
Dapi_def_Polygamma.pbtxt4 name: "math.polygamma"
7 name: "polygamma"
/external/tensorflow/tensorflow/core/kernels/
Dcwise_op_zeta.cc20 REGISTER2(BinaryOp, CPU, "Polygamma", functor::polygamma, float, double);
27 REGISTER2(BinaryOp, GPU, "Polygamma", functor::polygamma, float, double);
Dcwise_op_gpu_zeta.cu.cc26 DEFINE_BINARY2(polygamma, float, double);
/external/eigen/unsupported/Eigen/src/SpecialFunctions/
DSpecialFunctionsPacketMath.h31 Packet ppolygamma(const Packet& n, const Packet& x) { using numext::polygamma; return polygamma(n, … in ppolygamma()
DSpecialFunctionsHalf.h24 template<> EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::half polygamma(const Eigen::half& n, const … in polygamma() function
25 return Eigen::half(Eigen::numext::polygamma(static_cast<float>(n), static_cast<float>(x))); in polygamma()
DSpecialFunctionsFunctors.h171 using numext::polygamma; return polygamma(n, x);
DSpecialFunctionsArrayAPI.h70 polygamma(const Eigen::ArrayBase<DerivedN>& n, const Eigen::ArrayBase<DerivedX>& x) in polygamma() function
DSpecialFunctionsImpl.h1525 EIGEN_DEVICE_FUNC inline EIGEN_MATHFUNC_RETVAL(polygamma, Scalar)
1526 polygamma(const Scalar& n, const Scalar& x) {
1527 return EIGEN_MATHFUNC_IMPL(polygamma, Scalar)::run(n, x);
/external/eigen/unsupported/Eigen/
DSpecialFunctions34 * - polygamma
/external/eigen/unsupported/test/
Dspecial_functions.cpp170 CALL_SUBTEST( res = polygamma(n,x); verify_component_wise(res, ref); ); in array_special_functions()
174 CALL_SUBTEST( res = polygamma(n,x); verify_component_wise(res.head(8), ref.head(8)); ); in array_special_functions()
/external/tensorflow/tensorflow/compiler/tf2xla/python/
Dxla.py209 polygamma = _broadcasting_binary_op(math_ops.polygamma) variable
/external/tensorflow/tensorflow/compiler/tests/
Dspecial_math_test.py59 return math_ops.polygamma(n, x)
322 expected_values = sps.polygamma(n, x)
335 expected_values = sps.polygamma(n, x)
/external/eigen/Eigen/src/plugins/
DArrayCwiseBinaryOps.h305 polygamma(const EIGEN_CURRENT_STORAGE_BASE_CLASS<DerivedN> &n) const
/external/tensorflow/tensorflow/python/kernel_tests/
Dcwise_ops_binary_test.py192 math_ops.polygamma):
195 if tf_func in (math_ops.zeta, math_ops.polygamma):
233 self._compareBoth(n_small, x_pos_small, special.polygamma,
234 math_ops.polygamma)
/external/tensorflow/tensorflow/compiler/mlir/hlo/tests/
Dchlo_legalize_to_hlo_broadcasts.mlir256 // CHECK: chlo.polygamma %[[LHS]], %[[RHS]]
/external/eigen/doc/
DCoeffwiseMathFunctionsTable.dox485 \link Eigen::polygamma polygamma\endlink(n,x);
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/optimization/
Dmap_vectorization_test.py153 return math_ops.polygamma(
/external/tensorflow/tensorflow/python/ops/parallel_for/
Dmath_test.py169 return math_ops.polygamma(
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.math.pbtxt312 name: "polygamma"
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.math.pbtxt312 name: "polygamma"
/external/tensorflow/tensorflow/compiler/mlir/hlo/include/mlir-hlo/Dialect/mhlo/IR/
Dchlo_ops.td370 def HLOClient_PolygammaOp : HLOClient_Op<"polygamma", [NoSideEffect,
/external/tensorflow/tensorflow/python/ops/
Dmath_grad.py874 partial_x = math_ops.polygamma(array_ops.constant(1, dtype=x.dtype), x)
1154 partial_x = math_ops.polygamma(n + 1, x)
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorBase.h160 polygamma(const OtherDerived& other) const { in polygamma() function

12