Home
last modified time | relevance | path

Searched refs:Reciprocal (Results 1 – 25 of 109) sorted by relevance

12345

/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/
DReciprocal.pbtxt2 name: "Reciprocal"
28 name: "Reciprocal"
55 name: "Reciprocal"
82 name: "Reciprocal"
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/
Dtf_trait_folds.mlir35 // CHECK: [[RECIPROCAL:%.+]] = "tf.Reciprocal"([[ARG0]])
36 %0 = "tf.Reciprocal"(%arg0) : (tensor<i32>) -> tensor<i32>
44 %0 = "tf.Reciprocal"(%arg0) : (tensor<i32>) -> tensor<i32>
45 %1 = "tf.Reciprocal"(%0) : (tensor<i32>) -> tensor<i32>
53 // CHECK: [[RECIPROCAL:%.+]] = "tf.Reciprocal"([[ARG0]])
54 %0 = "tf.Reciprocal"(%arg0) : (tensor<i32>) -> tensor<i32>
55 %1 = "tf.Reciprocal"(%0) : (tensor<i32>) -> tensor<i32>
56 %2 = "tf.Reciprocal"(%1) : (tensor<i32>) -> tensor<i32>
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/
DReciprocal.pbtxt2 name: "Reciprocal"
28 name: "Reciprocal"
55 name: "Reciprocal"
/external/tensorflow/tensorflow/core/api_def/java_api/
Dapi_def_Reciprocal.pbtxt2 graph_op_name: "Reciprocal"
4 name: "math.Reciprocal"
/external/llvm-project/clang/include/clang/Basic/
Darm_fp16.td22 // Reciprocal/Sqrt
27 // Reciprocal Estimate
30 // Reciprocal Exponent
33 // Reciprocal Square Root Estimate
Darm_neon.td392 // E.3.10 Reciprocal/Sqrt
816 // Reciprocal/Sqrt
1367 // Scalar Floating-point Reciprocal Step
1371 // Scalar Floating-point Reciprocal Square Root Step
1409 // Scalar Floating-point Reciprocal Estimate
1413 // Scalar Floating-point Reciprocal Exponent
1417 // Scalar Floating-point Reciprocal Square Root Estimate
1693 // Reciprocal/Sqrt
/external/tensorflow/tensorflow/core/kernels/
Dunary_ops_composition.cc239 REGISTER_COMPUTE_FN(Reciprocal); in UnaryOpsCompositionSupport()
278 REGISTER_COMPUTE_FN_HELPER(Reciprocal, functor::inverse<T>);
308 REGISTER_COMPUTE_FN(Reciprocal); in UnaryOpsCompositionSupport()
336 REGISTER_COMPUTE_FN_HELPER(Reciprocal, functor::inverse<T>);
369 REGISTER_COMPUTE_FN(Reciprocal); in UnaryOpsCompositionSupport()
407 REGISTER_COMPUTE_FN_HELPER(Reciprocal, functor::inverse<T>);
/external/tensorflow/tensorflow/core/api_def/python_api/
Dapi_def_Reciprocal.pbtxt2 graph_op_name: "Reciprocal"
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Reciprocal.pbtxt2 graph_op_name: "Reciprocal"
/external/tensorflow/tensorflow/core/kernels/mlir_generated/op_definitions/
Dreciprocal.mlir.tmpl3 %0 = "tf.Reciprocal"(%arg0) : (tensor<*xelem_type>) -> tensor<*xoutput_type>
/external/tensorflow/tensorflow/cc/gradients/
Dmath_grad.cc147 auto dydx = Reciprocal(scope, op.input(0)); in LogGrad()
161 auto dydx = Reciprocal(scope, Add(scope, one, op.input(0))); in Log1pGrad()
216 auto dydx = Reciprocal(scope, Cosh(scope, op.output(0))); in AsinhGrad()
229 auto dydx = Reciprocal(scope, Sinh(scope, op.output(0))); in AcoshGrad()
243 auto dydx = Reciprocal(scope, Sub(scope, one, Square(scope, op.input(0)))); in AtanhGrad()
311 auto dydx = Reciprocal(scope, Sqrt(scope, Sub(scope, one, x2))); in AsinGrad()
327 auto dydx = Neg(scope, Reciprocal(scope, Sqrt(scope, Sub(scope, one, x2)))); in AcosGrad()
339 auto dydx = Square(scope, Reciprocal(scope, Cos(scope, op.input(0)))); in TanGrad()
354 auto dydx = Reciprocal(scope, Add(scope, one, Square(scope, op.input(0)))); in AtanGrad()
598 auto z_inv = Reciprocal(scope, Complex(scope, im, re)); in AngleGrad()
Dmath_grad_test.cc119 y = Reciprocal(scope_, x); in TestCWiseGrad()
244 TEST_F(CWiseUnaryGradTest, Reciprocal) { in TEST_F() argument
/external/python/cpython3/Tools/msi/bundle/bootstrap/
Dpythonba.def4 ; This software is released under Microsoft Reciprocal License (MS-RL).
DLICENSE.txt5 Microsoft Reciprocal License (MS-RL)
20 …(A) Reciprocal Grants- For any file you distribute that contains code from the software (in source…
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dmath.h44 XlaOp Reciprocal(XlaOp operand);
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dunary_ops_composition.cc63 ADD_XLA_OP_GENERATOR(Reciprocal); in PopulateXlaOpGeneratorMap()
Dunary_ops.cc74 XLAJIT_MAKE_UNARY(Reciprocal, xla::ScalarLike(x, 1.0) / x);
/external/llvm/include/llvm/IR/
DIntrinsicsARM.td258 // Vector Reciprocal Step.
261 // Vector Reciprocal Square Root Step.
366 // Vector Reciprocal Estimate.
369 // Vector Reciprocal Square Root Estimate.
DIntrinsicsAArch64.td298 // Reciprocal Estimate/Step
302 // Reciprocal Exponent
374 // Vector Reciprocal Estimate
/external/swiftshader/src/Reactor/
DOptimalIntrinsics.cpp19 Float4 Reciprocal(RValue<Float4> x, bool pp = false, bool finite = false, bool exactAtPow2 = false) in Reciprocal() function
53 Float4 r = Reciprocal(s2 * s2 + c2 * c2, false, true, false); in SinOrCos()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp1226 APFloat Reciprocal(FpVal.getSemantics()); in CvtFDivConstToReciprocal() local
1227 bool Cvt = FpVal.getExactInverse(&Reciprocal); in CvtFDivConstToReciprocal()
1230 Reciprocal = APFloat(FpVal.getSemantics(), 1.0f); in CvtFDivConstToReciprocal()
1231 (void)Reciprocal.divide(FpVal, APFloat::rmNearestTiesToEven); in CvtFDivConstToReciprocal()
1232 Cvt = !Reciprocal.isDenormal(); in CvtFDivConstToReciprocal()
1239 R = ConstantFP::get(Dividend->getType()->getContext(), Reciprocal); in CvtFDivConstToReciprocal()
/external/tensorflow/tensorflow/compiler/jit/tests/
Dopens2s_gnmt_mixed_precision.golden_summary79 Reciprocal 2
/external/llvm-project/llvm/lib/Target/NVPTX/
DNVPTXISelLowering.h533 bool Reciprocal) const override;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXISelLowering.h534 bool Reciprocal) const override;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DIntrinsicsARM.td450 // Vector Reciprocal Step.
453 // Vector Reciprocal Square Root Step.
556 // Vector Reciprocal Estimate.
559 // Vector Reciprocal Square Root Estimate.

12345