HomeSort by relevance Sort by last modified time
    Searched refs:Reciprocal (Results 1 - 25 of 32) sorted by null

1 2

  /external/tensorflow/tensorflow/compiler/xla/client/lib/
math.h 43 // Computes the reciprocal of 'operand'.
44 XlaOp Reciprocal(XlaOp operand);
math_test.cc 242 Reciprocal(x);
math.cc 135 XlaOp Reciprocal(XlaOp operand) { return ScalarLike(operand, 1.0) / operand; }
  /external/tensorflow/tensorflow/core/kernels/
unary_ops_composition.cc 238 REGISTER_COMPUTE_FN(Reciprocal);
277 REGISTER_COMPUTE_FN_HELPER(Reciprocal, functor::inverse<T>);
307 REGISTER_COMPUTE_FN(Reciprocal);
335 REGISTER_COMPUTE_FN_HELPER(Reciprocal, functor::inverse<T>);
368 REGISTER_COMPUTE_FN(Reciprocal);
406 REGISTER_COMPUTE_FN_HELPER(Reciprocal, functor::inverse<T>);
  /external/tensorflow/tensorflow/cc/gradients/
math_grad.cc 83 REGISTER_GRADIENT_OP("Reciprocal", InvGrad);
148 auto dydx = Reciprocal(scope, op.input(0));
162 auto dydx = Reciprocal(scope, Add(scope, one, op.input(0)));
217 auto dydx = Reciprocal(scope, Cosh(scope, op.output(0)));
230 auto dydx = Reciprocal(scope, Sinh(scope, op.output(0)));
244 auto dydx = Reciprocal(scope, Sub(scope, one, Square(scope, op.input(0))));
312 auto dydx = Reciprocal(scope, Sqrt(scope, Sub(scope, one, x2)));
328 auto dydx = Neg(scope, Reciprocal(scope, Sqrt(scope, Sub(scope, one, x2))));
340 auto dydx = Square(scope, Reciprocal(scope, Cos(scope, op.input(0))));
355 auto dydx = Reciprocal(scope, Add(scope, one, Square(scope, op.input(0))))
    [all...]
math_grad_test.cc 117 y = Reciprocal(scope_, x);
236 TEST_F(CWiseUnaryGradTest, Reciprocal) {
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
unary_ops.cc 72 XLAJIT_MAKE_UNARY(Reciprocal, xla::ScalarLike(x, 1.0) / x);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 567 APFloat Reciprocal(Op1F.getSemantics());
568 if (Op1F.getExactInverse(&Reciprocal)) {
569 ConstantFP *RFP = ConstantFP::get(Builder->getContext(), Reciprocal);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.h 229 bool Reciprocal) const override;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/NVPTX/
NVPTXISelLowering.h 534 bool Reciprocal) const override;
  /external/tensorflow/tensorflow/compiler/xla/python/
local_computation_builder.h 441 _FORWARD_UNOP(Reciprocal)
local_computation_builder.i 376 %unignore xla::swig::ComputationBuilder::Reciprocal;
local_computation_builder.cc 839 _FORWARD_UNOP(Reciprocal)
  /external/deqp-deps/SPIRV-Tools/source/opt/
folding_rules.cpp 176 // Takes the reciprocal of |c|. |c|'s type must be Float or a vector of Float.
177 // Returns 0 if the reciprocal is NaN, infinite or subnormal.
178 uint32_t Reciprocal(analysis::ConstantManager* const_mgr,
220 id = Reciprocal(const_mgr, comp);
228 id = Reciprocal(const_mgr, constants[1]);
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
folding_rules.cpp 176 // Takes the reciprocal of |c|. |c|'s type must be Float or a vector of Float.
177 // Returns 0 if the reciprocal is NaN, infinite or subnormal.
178 uint32_t Reciprocal(analysis::ConstantManager* const_mgr,
220 id = Reciprocal(const_mgr, comp);
228 id = Reciprocal(const_mgr, constants[1]);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
AArch64ISelLowering.h 190 // Reciprocal estimates and steps.
650 bool Reciprocal) const override;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
PPCISelLowering.h 85 /// Reciprocal estimate instructions (unary FP ops).
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/tests/
batch_normalization_test.cc 212 auto normalization_factors = Reciprocal(gt_eps);
    [all...]
  /external/tensorflow/tensorflow/core/grappler/optimizers/
arithmetic_optimizer_test.cc 253 auto recip1 = ops::Reciprocal(s.WithOpName("recip1"), neg2);
254 auto recip2 = ops::Reciprocal(s.WithOpName("recip2"), recip1);
268 // Negation and Reciprocal nodes cancelled each other.
282 auto recip1 = ops::Reciprocal(s.WithOpName("recip1"), c);
285 auto recip2 = ops::Reciprocal(s.WithOpName("recip2"), squeeze);
301 // Check that Reciprocal nodes were removed from the graph.
326 auto recip1 = ops::Reciprocal(s.WithOpName("recip1"), c);
329 auto recip2 = ops::Reciprocal(
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
X86ISelLowering.h 260 /// Floating point reciprocal-sqrt and reciprocal approximation.
265 // AVX-512 reciprocal approximations with a little more precision.
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 364 SDNodeFlags *Flags, bool Reciprocal);
366 SDNodeFlags *Flags, bool Reciprocal);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 440 SDNodeFlags Flags, bool Reciprocal);
442 SDNodeFlags Flags, bool Reciprocal);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
TargetLowering.h 321 /// Reciprocal estimate status values used by the functions below.
    [all...]
  /external/tensorflow/tensorflow/core/ops/
math_grad_test.cc 435 TEST_F(MathGradTest, Reciprocal) {
441 auto ans = SymGrad("Reciprocal", x);
    [all...]

Completed in 396 milliseconds

1 2