Skip to content
  1. Jun 12, 2014
  2. Jun 04, 2014
  3. Jun 03, 2014
    • Tobias Grosser's avatar
      Fix formatting · d79029ab
      Tobias Grosser authored
      llvm-svn: 210124
      d79029ab
    • Sebastian Pop's avatar
      record delinearization result and reuse it in polyhedral translation · 422e33f3
      Sebastian Pop authored
      Without this patch, the testcase would fail on the delinearization of the second
      array:
      
      ; void foo(long n, long m, long o, double A[n][m][o]) {
      ;   for (long i = 0; i < n; i++)
      ;     for (long j = 0; j < m; j++)
      ;       for (long k = 0; k < o; k++) {
      ;         A[i+3][j-4][k+7] = 1.0;
      ;         A[i][0][k] = 2.0;
      ;       }
      ; }
      
      ; CHECK: [n, m, o] -> { Stmt_for_body6[i0, i1, i2] -> MemRef_A[3 + i0, -4 + i1, 7 + i2] };
      ; CHECK: [n, m, o] -> { Stmt_for_body6[i0, i1, i2] -> MemRef_A[i0, 0, i2] };
      
      Here is the output of FileCheck on the testcase without this patch:
      
      ; CHECK: [n, m, o] -> { Stmt_for_body6[i0, i1, i2] -> MemRef_A[i0, 0, i2] };
               ^
      <stdin>:26:2: note: possible intended match here
       [n, m, o] -> { Stmt_for_body6[i0, i1, i2] -> MemRef_A[o0] };
       ^
      
      It is possible to find a good delinearization for A[i][0][k] only in the context
      of the delinearization of both array accesses.
      
      There are two ways to delinearize together all array subscripts touching the
      same base address: either duplicate the code from scop detection to first gather
      all array references and then run the delinearization; or as implemented in this
      patch, use the same delinearization info that we computed during scop detection.
      
      llvm-svn: 210117
      422e33f3
  4. May 28, 2014
    • Johannes Doerfert's avatar
      Added option for n-dimensional rectangular tiling · c3958b21
      Johannes Doerfert authored
      + CL-option --polly-tile-sizes=<int,...,int>
        The i'th value is used as a tile size for dimension i, if
        there is no i'th value, the value of --polly-default-tile-size is
        used
      
      + CL-option --polly-default-tile-size=int
        Used if no tile size is given for a dimension i
      
      + 3 Simple testcases
      
      llvm-svn: 209753
      c3958b21
    • Tobias Grosser's avatar
      Fix formatting · 704e4dee
      Tobias Grosser authored
      llvm-svn: 209710
      704e4dee
    • Sebastian Pop's avatar
      delinearize does not return a remainder · e0d9f5a4
      Sebastian Pop authored
      llvm-svn: 209696
      e0d9f5a4
    • Sebastian Pop's avatar
      pass element size to delinearization · bc9009a2
      Sebastian Pop authored
      Instead of relying on the delinearization to infer the size of an element,
      compute the element size from the base address type. This is a much more precise
      way of computing the element size than before, as we would have mixed together
      the size of an element with the strides of the innermost dimension.
      
      llvm-svn: 209695
      bc9009a2
  5. May 24, 2014
  6. May 19, 2014
    • Saleem Abdulrasool's avatar
      polly: update for LLVM API change · e653622b
      Saleem Abdulrasool authored
      SVN r209103 removed the OwningPtr variant of the MemoryBuffer APIs.  Switch to
      the equivalent std::unique_ptr versions.  This should clear up the build bots.
      
      llvm-svn: 209104
      e653622b
  7. May 12, 2014
  8. May 10, 2014
  9. May 08, 2014
  10. May 07, 2014
  11. Apr 30, 2014
  12. Apr 22, 2014
  13. Apr 18, 2014
  14. Apr 16, 2014
  15. Apr 15, 2014
  16. Apr 14, 2014
Loading