Home
last modified time | relevance | path

Searched refs:getMin (Results 1 – 15 of 15) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Dialect/Quant/Transforms/
H A DConvertSimQuant.cpp91 fqOp.getLoc(), fqOp.getNumBits(), fqOp.getMin().convertToFloat(), in convertFakeQuantAttrsToType()
110 min.reserve(fqOp.getMin().size()); in convertFakeQuantAttrsToType()
112 for (auto m : fqOp.getMin()) in convertFakeQuantAttrsToType()
/llvm-project-15.0.7/llvm/lib/Support/
H A DAPFixedPoint.cpp123 APFixedPoint APFixedPoint::getMin(const FixedPointSemantics &Sema) { in getMin() function in llvm::APFixedPoint
145 APSInt MinInt = APFixedPoint::getMin(*this).getValue(); in fitsInFloatSemantics()
264 APSInt Min = APFixedPoint::getMin(CommonFXSema).getValue() in mul()
319 APSInt Min = APFixedPoint::getMin(CommonFXSema).getValue() in div()
355 APSInt Min = APFixedPoint::getMin(Sema).getValue().extOrTrunc(Wide); in shl()
558 APFloat FloatMin = getMin(DstFXSema).convertToFloat(*OpSema); in getFromFloatValue()
564 Res = getMin(DstFXSema).getValue(); in getFromFloatValue()
/llvm-project-15.0.7/llvm/unittests/ADT/
H A DAPFixedPointTest.cpp146 ASSERT_EQ(APFixedPoint::getMin(Sema).getValue(), in CheckMin()
172 TEST(FixedPointTest, getMin) { in TEST() argument
223 EXPECT_TRUE(APSInt::compareValues(APFixedPoint::getMin(Sema).getIntPart(), in CheckIntPartMin()
393 ASSERT_EQ(Fixed.convert(Dst), APFixedPoint::getMin(Dst)); in CheckSaturatedConversionMin()
669 (ExpectedOvf == MinSat ? APFixedPoint::getMin(Sema) in CheckFloatToFixedConversion()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DInstructionCostTest.cpp82 auto Min = InstructionCost::getMin(); in TEST_F()
/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DAPFixedPoint.h200 static APFixedPoint getMin(const FixedPointSemantics &Sema);
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Quant/
H A DQuantTypes.h404 double getMin() const;
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DInstructionCost.h72 static InstructionCost getMin() { return getMinValue(); } in getMin() function
/llvm-project-15.0.7/mlir/lib/CAPI/Dialect/
H A DQuant.cpp219 return unwrap(type).cast<quant::CalibratedQuantizedType>().getMin(); in mlirCalibratedQuantizedTypeGetMin()
/llvm-project-15.0.7/mlir/lib/Dialect/Quant/IR/
H A DTypeParser.cpp418 out << "<" << type.getMin() << ":" << type.getMax() << ">"; in printCalibratedQuantizedType()
H A DQuantTypes.cpp396 double CalibratedQuantizedType::getMin() const { return getImpl()->min; } in getMin() function in CalibratedQuantizedType
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DFixedPointBuilder.h98 APFixedPoint::getMin(DstSema).getValue().extOrTrunc(ResultWidth)); in Convert()
/llvm-project-15.0.7/openmp/runtime/src/
H A Dkmp_stats.h423 double getMin() const { return minVal; } in getMin() function
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp537 ExprResult Result = S.SubstExpr(Attr.getMin(), TemplateArgs); in instantiateDependentAMDGPUFlatWorkGroupSizeAttr()
580 ExprResult Result = S.SubstExpr(Attr.getMin(), TemplateArgs); in instantiateDependentAMDGPUWavesPerEUAttr()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DTargetInfo.cpp9366 Min = FlatWGS->getMin() in setFunctionDeclAttributes()
9397 Attr->getMin()->EvaluateKnownConstInt(M.getContext()).getExtValue(); in setFunctionDeclAttributes()
/llvm-project-15.0.7/clang/lib/AST/
H A DASTContext.cpp12270 return llvm::APFixedPoint::getMin(getFixedPointSemantics(Ty)); in getFixedPointMin()