Home
last modified time | relevance | path

Searched defs:Reciprocal (Results 1 – 19 of 19) sorted by relevance

/external/pytorch/aten/src/ATen/native/cuda/
DForeachUnaryOp.cu293 struct Reciprocal { struct
294 T one = T(1);
295 __device__ T operator()(T t) const { in operator ()()
/external/executorch/backends/arm/test/ops/
Dtest_reciprocal.py37 class Reciprocal(torch.nn.Module): class in TestReciprocal
/external/tensorflow/tensorflow/core/kernels/mlir_generated/
Dgpu_unary_ops_test.cc874 GENERATE_DEFAULT_TEST(Reciprocal, DT_FLOAT, DT_FLOAT, baseline_reciprocal, in GENERATE_DEFAULT_TEST() argument
/external/tensorflow/tensorflow/python/lib/core/
Dbfloat16.cc1274 struct Reciprocal { struct
1275 T operator()(T a) { return T(1.f / static_cast<float>(a)); } in operator ()()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp1226 APFloat Reciprocal(FpVal.getSemantics()); in CvtFDivConstToReciprocal() local
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dmath.cc167 XlaOp Reciprocal(XlaOp operand) { return ScalarLike(operand, 1.0) / operand; } in Reciprocal() function
/external/deqp-deps/SPIRV-Tools/source/opt/
Dfolding_rules.cpp286 uint32_t Reciprocal(analysis::ConstantManager* const_mgr, in Reciprocal() function
/external/angle/third_party/spirv-tools/src/source/opt/
Dfolding_rules.cpp289 uint32_t Reciprocal(analysis::ConstantManager* const_mgr, in Reciprocal() function
/external/tensorflow/tensorflow/cc/gradients/
Dmath_grad_test.cc253 TEST_F(CWiseUnaryGradTest, Reciprocal) { in TEST_F() argument
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dfolding_rules.cpp274 uint32_t Reciprocal(analysis::ConstantManager* const_mgr, in Reciprocal() function
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp8758 SDValue Reciprocal = DAG.getNode(ISD::FDIV, DL, VT, FPOne, N1, Flags); in combineRepeatedFPDivisors() local
14574 SDNodeFlags *Flags, bool Reciprocal) { in buildSqrtNROneConst()
14618 SDNodeFlags *Flags, bool Reciprocal) { in buildSqrtNRTwoConst()
14664 bool Reciprocal) { in buildSqrtEstimateImpl()
/external/tensorflow/tensorflow/core/ops/
Dmath_grad_test.cc466 TEST_F(MathGradTest, Reciprocal) { in TEST_F() argument
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DTargetLowering.h4024 bool &UseOneConstNR, bool Reciprocal) const { in getSqrtEstimate()
/external/pytorch/aten/src/ATen/test/
Dvec_test_all_types.cpp305 TYPED_TEST(SqrtAndReciprocalReal, Reciprocal) { in TYPED_TEST() argument
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp12710 SDValue Reciprocal = DAG.getNode(ISD::FDIV, DL, VT, FPOne, N1, Flags); in combineRepeatedFPDivisors() local
20665 SDNodeFlags Flags, bool Reciprocal) { in buildSqrtNROneConst()
20697 SDNodeFlags Flags, bool Reciprocal) { in buildSqrtNRTwoConst()
20736 bool Reciprocal) { in buildSqrtEstimateImpl()
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/
DTargetLowering.h4776 bool &UseOneConstNR, bool Reciprocal) const { in getSqrtEstimate()
/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp15842 SDValue Reciprocal = DAG.getNode(ISD::FDIV, DL, VT, FPOne, N1, Flags); in combineRepeatedFPDivisors() local
25899 SDNodeFlags Flags, bool Reciprocal) { in buildSqrtNROneConst()
25931 SDNodeFlags Flags, bool Reciprocal) { in buildSqrtNRTwoConst()
25970 bool Reciprocal) { in buildSqrtEstimateImpl()
/external/tensorflow/tensorflow/compiler/tests/
Drandomized_tests.cc3785 TEST_F(OpTest, Reciprocal) { in TEST_F() argument
/external/tensorflow/tensorflow/go/op/
Dwrappers.go35931 func Reciprocal(scope *Scope, x tf.Output) (y tf.Output) { func