[Mlir-commits] [mlir] [MLIR][Presburger] Implement function to evaluate the number of terms in a generating function. (PR #78078)
    Arjun P 
    llvmlistbot at llvm.org
       
    Tue Jan 16 10:34:00 PST 2024
    
    
  
================
@@ -245,3 +245,254 @@ QuasiPolynomial mlir::presburger::detail::getCoefficientInRationalFunction(
   }
   return coefficients[power].simplify();
 }
+
+static std::vector<Fraction> convolution(std::vector<Fraction> a,
+                                         std::vector<Fraction> b) {
+  // The length of the convolution is the maximum of the lengths
----------------
Superty wrote:
outdated comment
https://github.com/llvm/llvm-project/pull/78078
    
    
More information about the Mlir-commits
mailing list