Home
last modified time | relevance | path

Searched refs:kLanczosGamma (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/compiler/mlir/hlo/lib/Dialect/mhlo/transforms/
Dchlo_legalize_to_hlo.cc496 constexpr double kLanczosGamma = 7; // aka g variable
550 getConstantLike(rewriter, loc, kLanczosGamma + 0.5, x); in MaterializeLgamma()
553 getConstantLike(rewriter, loc, std::log(kLanczosGamma + 0.5), x); in MaterializeLgamma()
702 getConstantLike(rewriter, loc, kLanczosGamma + 0.5, x); in MaterializeDigamma()
705 getConstantLike(rewriter, loc, std::log(kLanczosGamma + 0.5), x); in MaterializeDigamma()
714 loc, getConstantLike(rewriter, loc, kLanczosGamma, x), t); in MaterializeDigamma()
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dmath.cc495 static constexpr double kLanczosGamma = 7; // aka g variable
520 XlaOp lanczos_gamma_plus_one_half = ScalarLike(input, kLanczosGamma + 0.5); in Lgamma()
522 ScalarLike(input, std::log(kLanczosGamma + 0.5)); in Lgamma()
654 XlaOp lanczos_gamma = ScalarLike(input, kLanczosGamma); in Digamma()
655 XlaOp lanczos_gamma_plus_one_half = ScalarLike(input, kLanczosGamma + 0.5); in Digamma()
657 ScalarLike(input, std::log(kLanczosGamma + 0.5)); in Digamma()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Dlower_tf.cc512 static constexpr double kLanczosGamma = 7; // aka g variable
586 Value lanczos_gamma_plus_one_half = create_const_op(kLanczosGamma + 0.5); in matchAndRewrite()
588 create_const_op(std::log(kLanczosGamma + 0.5)); in matchAndRewrite()