Skip to content
Snippets Groups Projects
  1. Jul 30, 2018
  2. Jun 20, 2018
  3. Jun 07, 2018
  4. May 28, 2018
  5. May 14, 2018
  6. May 13, 2018
    • Martin Bauer's avatar
      Improved Vectorization · 501b2d7e
      Martin Bauer authored
      - support aligned load/stores
      - nontemporal stores
      - aligned memory allocation for arrays and temporary buffers
      501b2d7e
  7. May 11, 2018
    • Martin Bauer's avatar
      Generalized vectorization · 57a3c27e
      Martin Bauer authored
      - vectorization for loops with ranges that are not a multiple of vector width
      - vectorization for variable sized loops if special transformation
        replace_inner_stride_with_one is run
      57a3c27e
  8. May 07, 2018
    • Martin Bauer's avatar
      Fixes in field index resolve · 755f168c
      Martin Bauer authored
      - move_constants_before_loop: in the rare case that a symbol
        with same name exists in move target - the assignment is not moved
        previously an exception was raised in this case
      - consistent naming of intermediate base pointers
      755f168c
  9. Apr 30, 2018
  10. Apr 28, 2018
  11. Apr 27, 2018
  12. Apr 18, 2018
  13. Apr 13, 2018
  14. Apr 10, 2018
  15. Mar 06, 2018
  16. Jan 31, 2018
  17. Jan 19, 2018
    • João Victor Tozatti Risso's avatar
      Code generation for field serialization into buffers · 979ee93b
      João Victor Tozatti Risso authored and Martin Bauer's avatar Martin Bauer committed
      Concept: Generate code involving the (un)packing of fields (from)to linear
      (1D) arrays, i.e. (de)serialization of the field values for buffered
      communication.
      
      A linear index is generated for the buffer, by inferring the strides and
      variables of the loops over fields in the AST. In the CPU, this information is
      obtained through the makeLoopOverDomain function, in
      pystencils/transformations/transformations.py. On CUDA, the strides of
      the fields (excluding buffers) are combined with the indexing variables to infer
      the indexing of the buffer.
      
      What is supported:
          - code generation for both CPU and GPU
          - (un)packing of fields with all the memory layouts supported by
          pystencils
          - (un)packing slices of fields (from)into the buffer
          - (un)packing subsets of cell values from the fields (from)into the buffer
      
      Limitations:
      
      - assumes that only one buffer and one field are being operated within
      each kernel, however multiple equations involving the...
      979ee93b
  18. Dec 11, 2017
  19. Dec 03, 2017
  20. Oct 11, 2017
  21. Oct 10, 2017
  22. Oct 09, 2017
    • Martin Bauer's avatar
      Vectorization & Type system overhaul · ea847bc5
      Martin Bauer authored
      - first vectorization tests are running
      - type system: use memoized getTypeOfExpression
      - casts are done using sp.Function('cast')
      - C backend adapted for vectorization support
      - AST nodes can required optional headers
      ea847bc5
  23. Sep 26, 2017
  24. Sep 25, 2017
  25. Sep 21, 2017