Home
last modified time | relevance | path

Searched refs:zeta (Results 1 – 25 of 50) sorted by relevance

12

/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Zeta.pbtxt3 summary: "Compute the Hurwitz zeta function \\\\(\\zeta(x, q)\\\\)."
5 The Hurwitz zeta function is defined as:
8 \\(\zeta(x, q) = \sum_{n=0}^{\infty} (q + n)^{-x}\\)
/external/eigen/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/
DCudaSpecialFunctions.h52 using numext::zeta;
53 return make_float4(zeta(x.x, q.x), zeta(x.y, q.y), zeta(x.z, q.z), zeta(x.w, q.w));
59 using numext::zeta;
60 return make_double2(zeta(x.x, q.x), zeta(x.y, q.y));
/external/tensorflow/tensorflow/core/api_def/python_api/
Dapi_def_Zeta.pbtxt4 name: "math.zeta"
7 name: "zeta"
/external/tensorflow/tensorflow/core/kernels/
Dcwise_op_zeta.cc19 REGISTER2(BinaryOp, CPU, "Zeta", functor::zeta, float, double);
23 REGISTER2(BinaryOp, GPU, "Zeta", functor::zeta, float, double);
Dcwise_op_gpu_zeta.cu.cc22 DEFINE_BINARY2(zeta, float, double);
/external/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnv30_clear.c59 uint32_t colr = 0, zeta = 0, mode = 0; in nv30_clear() local
73 zeta = pack_zeta(fb->zsbuf->format, depth, stencil); in nv30_clear()
88 PUSH_DATA (push, zeta); in nv30_clear()
94 PUSH_DATA (push, zeta); in nv30_clear()
/external/eigen/unsupported/Eigen/src/SpecialFunctions/
DSpecialFunctionsPacketMath.h27 Packet pzeta(const Packet& x, const Packet& q) { using numext::zeta; return zeta(x, q); } in pzeta()
DSpecialFunctionsHalf.h21 template<> EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::half zeta(const Eigen::half& x, const Eigen… in zeta() function
22 return Eigen::half(Eigen::numext::zeta(static_cast<float>(x), static_cast<float>(q))); in zeta()
DSpecialFunctionsFunctors.h149 using numext::zeta; return zeta(x, q);
DSpecialFunctionsArrayAPI.h114 zeta(const Eigen::ArrayBase<DerivedX>& x, const Eigen::ArrayBase<DerivedQ>& q) in zeta() function
DSpecialFunctionsImpl.h1519 EIGEN_DEVICE_FUNC inline EIGEN_MATHFUNC_RETVAL(zeta, Scalar)
1520 zeta(const Scalar& x, const Scalar& q) {
1521 return EIGEN_MATHFUNC_IMPL(zeta, Scalar)::run(x, q);
/external/speex/libspeexdsp/
Dpreprocess.c219 spx_word16_t *zeta; /**< Smoothed a priori SNR */ member
459 st->zeta = (spx_word16_t*)speex_alloc((N+M)*sizeof(spx_word16_t)); in speex_preprocess_state_init()
553 speex_free(st->zeta); in speex_preprocess_state_destroy()
810 …st->zeta[0] = PSHR32(ADD32(MULT16_16(QCONST16(.7f,15),st->zeta[0]), MULT16_16(QCONST16(.3f,15),st-… in speex_preprocess_run()
812 …st->zeta[i] = PSHR32(ADD32(ADD32(ADD32(MULT16_16(QCONST16(.7f,15),st->zeta[i]), MULT16_16(QCONST16… in speex_preprocess_run()
815 …st->zeta[i] = PSHR32(ADD32(MULT16_16(QCONST16(.7f,15),st->zeta[i]), MULT16_16(QCONST16(.3f,15),st-… in speex_preprocess_run()
820 Zframe = ADD32(Zframe, EXTEND32(st->zeta[i])); in speex_preprocess_run()
855 P1 = QCONST16(.199f,15)+MULT16_16_Q15(QCONST16(.8f,15),qcurve (st->zeta[i])); in speex_preprocess_run()
/external/tensorflow/tensorflow/contrib/labeled_tensor/
D__init__.py100 zeta = _core.zeta variable
/external/swiftshader/third_party/llvm-7.0/llvm/test/Demangle/
Dms-mangle.test150 ?zeta@@YAXP6AHHH@Z@Z
151 ; CHECK: void __cdecl zeta(int (__cdecl *)(int, int))
153 ?zeta@@YAXP6AHHH@Z@Z
154 ; CHECK: void __cdecl zeta(int (__cdecl *)(int, int))
/external/eigen/unsupported/test/
Dspecial_functions.cpp143 CALL_SUBTEST( res = x.zeta(q); verify_component_wise(res, ref); ); in array_special_functions()
144 CALL_SUBTEST( res = zeta(x,q); verify_component_wise(res, ref); ); in array_special_functions()
/external/eigen/unsupported/Eigen/
DSpecialFunctions35 * - zeta
/external/eigen/doc/
DCoeffwiseMathFunctionsTable.dox491 and <a href="#cwisetable_zeta">\c zeta </a>.
509 \link Eigen::zeta zeta\endlink(a,b);
511 <td><a href="https://en.wikipedia.org/wiki/Hurwitz_zeta_function">Hurwitz zeta function</a>
512 \n \f$ \zeta(a_i,b_i)=\sum_{k=0}^{\infty}(b_i+k)^{\text{-}a_i} \f$</td>
/external/clang/test/CodeGenCXX/
Dmangle-ms.cpp170 void zeta(int (*)(int, int)) {} in zeta() function
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DHTMLEntities.properties165 # zeta 950
/external/tensorflow/tensorflow/python/kernel_tests/
Dcwise_ops_binary_test.py190 if tf_func not in (_FLOORDIV, math_ops.floordiv, math_ops.zeta,
194 if tf_func in (math_ops.zeta, math_ops.polygamma):
229 self._compareBoth(x_pos_small + 1, a_pos_small, special.zeta,
230 math_ops.zeta)
/external/eigen/Eigen/src/plugins/
DArrayCwiseBinaryOps.h329 zeta(const EIGEN_CURRENT_STORAGE_BASE_CLASS<DerivedQ> &q) const in zeta() function
/external/clang/include/clang/AST/
DCommentHTMLNamedCharacterReferences.td125 def : NCR<"zeta", 0x003B6>;
/external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
Dcore.py1199 zeta = define_binary_op('zeta', math_ops.zeta) variable
/external/llvm/test/CodeGen/PowerPC/
Dpr17168.ll198 !142 = !DILocalVariable(name: "zeta", line: 233, scope: !132, file: !5, type: !20)
207 !151 = !DILocalVariable(name: "zeta", line: 643, arg: 3, scope: !145, file: !5, type: !20)
229 !173 = !DILocalVariable(name: "zeta", line: 680, scope: !162, file: !5, type: !20)
244 !188 = !DILocalVariable(name: "zeta", line: 310, scope: !183, file: !5, type: !20)
/external/tensorflow/tensorflow/python/ops/parallel_for/
Dmath_test.py153 return math_ops.zeta(x * x + 1, y * y)

12