Home
last modified time | relevance | path

Searched refs:fac (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/mlir/unittests/Dialect/Affine/Analysis/
H A DAffineStructuresParserTest.cpp35 fac.addEquality(eq);
37 fac.addInequality(ineq);
38 return fac;
43 FailureOr<IntegerPolyhedron> fac; in TEST() local
46 EXPECT_TRUE(failed(fac)) in TEST()
50 EXPECT_TRUE(failed(fac)) in TEST()
54 EXPECT_TRUE(failed(fac)) in TEST()
58 EXPECT_TRUE(failed(fac)) in TEST()
62 EXPECT_TRUE(failed(fac)) in TEST()
66 EXPECT_TRUE(failed(fac)) in TEST()
[all …]
/llvm-project-15.0.7/llvm/bindings/go/llvm/
H A Dexecutionengine_test.go28 fac := AddFunction(mod, "fac", fac_type)
29 fac.SetFunctionCallConv(CCallConv)
30 n := fac.Param(0)
32 entry := AddBasicBlock(fac, "entry")
33 iftrue := AddBasicBlock(fac, "iftrue")
34 iffalse := AddBasicBlock(fac, "iffalse")
35 end := AddBasicBlock(fac, "end")
51 call_fac := builder.CreateCall(fac, call_fac_args, "calltmp")
90 exec_res := engine.RunFunction(fac, exec_args)
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/
H A Dexpect_watch_value.cpp11 volatile unsigned long fac = 1; // DexLabel('entry') in Factorial() local
14 fac *= i; // DexLabel('loop') in Factorial()
16 return fac; // DexLabel('ret') in Factorial()
/llvm-project-15.0.7/libcxx/test/std/numerics/rand/rand.dist/rand.dist.norm/rand.dist.norm.f/
H A Deval.pass.cpp26 double fac(double x) in fac() function
39 r += fac(a+b-1)/(fac(j) * fac(a + b - 1 - j)) * std::pow(x, j) * in I()
H A Deval_param.pass.cpp26 double fac(double x) in fac() function
39 r += fac(a+b-1)/(fac(j) * fac(a + b - 1 - j)) * std::pow(x, j) * in I()
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Affine/Analysis/
H A DAffineStructures.h70 FlatAffineValueConstraints(const IntegerPolyhedron &fac,
72 : IntegerPolyhedron(fac) { in IntegerPolyhedron() argument
531 FlatAffineValueConstraints &fac) in FlatAffineRelation() argument
532 : FlatAffineValueConstraints(fac), numDomainDims(numDomainDims), in FlatAffineRelation()
536 IntegerPolyhedron &fac) in FlatAffineRelation() argument
537 : FlatAffineValueConstraints(fac), numDomainDims(numDomainDims), in FlatAffineRelation()
/llvm-project-15.0.7/llvm/test/Transforms/LoopVectorize/
H A Dmixed-precision-remarks.ll31 %fac = load double, double* %pi
39 %mul = fmul double %conv, %fac
45 %mul2 = fmul double %conv2, %fac
/llvm-project-15.0.7/mlir/lib/Dialect/Affine/Utils/
H A DUtils.cpp1763 FlatAffineValueConstraints fac(rank, numSymbolicOperands); in normalizeMemRefType() local
1768 fac.addBound(IntegerPolyhedron::LB, d, 0); in normalizeMemRefType()
1769 fac.addBound(IntegerPolyhedron::UB, d, shape[d] - 1); in normalizeMemRefType()
1777 if (failed(fac.composeMatchingMap(layoutMap))) in normalizeMemRefType()
1781 fac.projectOut(newRank, fac.getNumVars() - newRank - fac.getNumLocalVars()); in normalizeMemRefType()
1791 auto ubConst = fac.getConstantBound(IntegerPolyhedron::UB, d); in normalizeMemRefType()
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Ddeduced-return-type-cxx14.cpp100 auto fac(int n) { in fac() function
103 return n * fac(n-1); // ok in fac()
/llvm-project-15.0.7/mlir/lib/Dialect/Affine/Analysis/
H A DUtils.cpp1358 FlatAffineValueConstraints fac(set); in simplifyIntegerSet() local
1359 if (fac.isEmpty()) in simplifyIntegerSet()
1362 fac.removeTrivialRedundancy(); in simplifyIntegerSet()
1364 auto simplifiedSet = fac.getAsIntegerSet(set.getContext()); in simplifyIntegerSet()