Home
last modified time | relevance | path

Searched refs:IsSqrt (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DTargetLoweringBase.cpp1836 static std::string getReciprocalOpName(bool IsSqrt, EVT VT) { in getReciprocalOpName() argument
1839 Name += IsSqrt ? "sqrt" : "div"; in getReciprocalOpName()
1879 static int getOpEnabled(bool IsSqrt, EVT VT, StringRef Override) { in getOpEnabled() argument
1912 std::string VTName = getReciprocalOpName(IsSqrt, VT); in getOpEnabled()
1939 static int getOpRefinementSteps(bool IsSqrt, EVT VT, StringRef Override) { in getOpRefinementSteps() argument
1967 std::string VTName = getReciprocalOpName(IsSqrt, VT); in getOpRefinementSteps()
/external/llvm-project/llvm/lib/CodeGen/
DTargetLoweringBase.cpp2033 static std::string getReciprocalOpName(bool IsSqrt, EVT VT) { in getReciprocalOpName() argument
2036 Name += IsSqrt ? "sqrt" : "div"; in getReciprocalOpName()
2076 static int getOpEnabled(bool IsSqrt, EVT VT, StringRef Override) { in getOpEnabled() argument
2109 std::string VTName = getReciprocalOpName(IsSqrt, VT); in getOpEnabled()
2136 static int getOpRefinementSteps(bool IsSqrt, EVT VT, StringRef Override) { in getOpRefinementSteps() argument
2164 std::string VTName = getReciprocalOpName(IsSqrt, VT); in getOpRefinementSteps()
/external/tensorflow/tensorflow/core/grappler/
Dop_types.h177 bool IsSqrt(const NodeDef& node);
Dop_types.cc539 bool IsSqrt(const NodeDef& node) { return node.op() == "Sqrt"; } in IsSqrt() function
/external/tensorflow/tensorflow/core/grappler/optimizers/
Darithmetic_optimizer.cc1849 if (IsSqrt(*y) && !IsInPreserveSet(*y) && in TrySimplify()