Home
last modified time | relevance | path

Searched refs:IsMax (Results 1 – 13 of 13) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMipsExpandPseudo.cpp343 bool IsMax = false; in expandAtomicBinOpSubword() local
404 IsMax = true; in expandAtomicBinOpSubword()
451 } else if (IsMin || IsMax) { in expandAtomicBinOpSubword()
458 unsigned SELIncr = IsMax ? SELNEZ : SELEQZ; in expandAtomicBinOpSubword()
459 unsigned SELOldVal = IsMax ? SELEQZ : SELNEZ; in expandAtomicBinOpSubword()
460 unsigned MOVIncr = IsMax ? MOVN : MOVZ; in expandAtomicBinOpSubword()
644 bool IsMax = false; in expandAtomicBinOp() local
708 IsMax = true; in expandAtomicBinOp()
732 if (IsMin || IsMax) { in expandAtomicBinOp()
744 unsigned SELIncr = IsMax ? SELNEZ : SELEQZ; in expandAtomicBinOp()
[all …]
/external/llvm-project/llvm/lib/Target/Mips/
DMipsExpandPseudo.cpp343 bool IsMax = false; in expandAtomicBinOpSubword() local
404 IsMax = true; in expandAtomicBinOpSubword()
451 } else if (IsMin || IsMax) { in expandAtomicBinOpSubword()
458 unsigned SELIncr = IsMax ? SELNEZ : SELEQZ; in expandAtomicBinOpSubword()
459 unsigned SELOldVal = IsMax ? SELEQZ : SELNEZ; in expandAtomicBinOpSubword()
460 unsigned MOVIncr = IsMax ? MOVN : MOVZ; in expandAtomicBinOpSubword()
644 bool IsMax = false; in expandAtomicBinOp() local
708 IsMax = true; in expandAtomicBinOp()
732 if (IsMin || IsMax) { in expandAtomicBinOp()
744 unsigned SELIncr = IsMax ? SELNEZ : SELEQZ; in expandAtomicBinOp()
[all …]
/external/tensorflow/tensorflow/core/grappler/
Dop_types.h114 bool IsMax(const NodeDef& node);
Dop_types.cc367 bool IsMax(const NodeDef& node) { return node.op() == "Max"; } in IsMax() function
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorFunctors.h195 template <typename T, bool IsMax = true, bool IsInteger = true>
/external/tensorflow/tensorflow/core/kernels/
Dreduction_gpu_kernels.cu.h1001 struct IsMax {
1027 static_assert(IsSum<T, Op>::value || IsMax<T, Op>::value ||
1039 U operator()(typename std::enable_if<IsMax<U, OpCopy>::value, U>::type t =
/external/llvm/lib/Target/NVPTX/
DNVPTXISelLowering.cpp4079 const bool IsMax = (Larger == True); in PerformSELECTCombine() local
4085 IntrinsicId = IsMax ? Intrinsic::nvvm_max_i : Intrinsic::nvvm_min_i; in PerformSELECTCombine()
4087 IntrinsicId = IsMax ? Intrinsic::nvvm_max_ui : Intrinsic::nvvm_min_ui; in PerformSELECTCombine()
4091 IntrinsicId = IsMax ? Intrinsic::nvvm_max_ll : Intrinsic::nvvm_min_ll; in PerformSELECTCombine()
4093 IntrinsicId = IsMax ? Intrinsic::nvvm_max_ull : Intrinsic::nvvm_min_ull; in PerformSELECTCombine()
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp3337 bool IsMax = (Opcode == ISD::SMAX); in computeKnownBits() local
3340 if (Op.getOperand(0).getOpcode() == (IsMax ? ISD::SMIN : ISD::SMAX)) in computeKnownBits()
3344 if (!IsMax) in computeKnownBits()
3367 if (IsMax) in computeKnownBits()
3671 bool IsMax = (Opcode == ISD::SMAX); in ComputeNumSignBits() local
3674 if (Op.getOperand(0).getOpcode() == (IsMax ? ISD::SMIN : ISD::SMAX)) in ComputeNumSignBits()
3678 if (!IsMax) in ComputeNumSignBits()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp3368 bool IsMax = (Opcode == ISD::SMAX); in computeKnownBits() local
3371 if (Op.getOperand(0).getOpcode() == (IsMax ? ISD::SMIN : ISD::SMAX)) in computeKnownBits()
3375 if (!IsMax) in computeKnownBits()
3701 bool IsMax = (Opcode == ISD::SMAX); in ComputeNumSignBits() local
3704 if (Op.getOperand(0).getOpcode() == (IsMax ? ISD::SMIN : ISD::SMAX)) in ComputeNumSignBits()
3708 if (!IsMax) in ComputeNumSignBits()
/external/tensorflow/tensorflow/core/grappler/optimizers/
Dlayout_optimizer.cc320 return IsSum(node) || IsMean(node) || IsProd(node) || IsMax(node) || in IsReduceOp()
Dgeneric_layout_optimizer_transposer.cc2102 return IsSum(node) || IsMean(node) || IsProd(node) || IsMax(node) || in IsReduceOp()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DScalarEvolution.cpp3568 bool IsMax = Kind == scSMaxExpr || Kind == scUMaxExpr; in getMinMaxExpr() local
3608 if (IsMax ? IsMinV : IsMaxV) { in getMinMaxExpr()
3612 } else if (IsMax ? IsMaxV : IsMinV) { in getMinMaxExpr()
3647 llvm::CmpInst::Predicate FirstPred = IsMax ? GEPred : LEPred; in getMinMaxExpr()
3648 llvm::CmpInst::Predicate SecondPred = IsMax ? LEPred : GEPred; in getMinMaxExpr()
/external/llvm-project/llvm/lib/Analysis/
DScalarEvolution.cpp3505 bool IsMax = Kind == scSMaxExpr || Kind == scUMaxExpr; in getMinMaxExpr() local
3545 if (IsMax ? IsMinV : IsMaxV) { in getMinMaxExpr()
3549 } else if (IsMax ? IsMaxV : IsMinV) { in getMinMaxExpr()
3584 llvm::CmpInst::Predicate FirstPred = IsMax ? GEPred : LEPred; in getMinMaxExpr()
3585 llvm::CmpInst::Predicate SecondPred = IsMax ? LEPred : GEPred; in getMinMaxExpr()