Skip to content
Snippets Groups Projects
  1. Sep 30, 2019
  2. Sep 27, 2019
  3. Sep 24, 2019
  4. Sep 23, 2019
  5. Sep 22, 2019
  6. Aug 21, 2019
  7. Aug 19, 2019
  8. Aug 16, 2019
  9. Aug 15, 2019
  10. Aug 14, 2019
  11. Aug 13, 2019
  12. Aug 12, 2019
  13. Aug 06, 2019
    • Markus Holzer's avatar
      implemented derivation of gradient weights via rotation · 248a5e0d
      Markus Holzer authored and Markus Holzer's avatar Markus Holzer committed
      derive gradient weights of other direction with
      already calculated weights of one direction
      via rotation and apply them to a field.
      
      as_matrix gives now a deprecated warning and as_array is no newly implemented to replace it. as_array works with MutableDenseNDimArray now instead of Matrix
      248a5e0d
  14. Aug 05, 2019
  15. Aug 02, 2019
  16. Jul 18, 2019
  17. Jul 15, 2019
  18. Jul 11, 2019
  19. Jul 10, 2019
    • Stephan Seitz's avatar
      Add DestructuringBindingsForFieldClass to use pystencils kernels in a more C++-ish way · 8e63c9ff
      Stephan Seitz authored
      DestructuringBindingsForFieldClass defines all field-related variables
      in its subordinated block.
      However, it leaves a TypedSymbol of type 'Field' for each field
      undefined.
      By that trick we can generate kernels that accept structs as
      kernelparameters.
      Either to include a pystencils specific Field struct of the following
      definition:
      
      ```cpp
      template<DTYPE_T, DIMENSION>
      struct Field
      {
          DTYPE_T* data;
          std::array<DTYPE_T, DIMENSION> shape;
          std::array<DTYPE_T, DIMENSION> stride;
      }
      
      or to be able to destructure user defined types like `pybind11::array`,
      `at::Tensor`, `tensorflow::Tensor`
      
      ```
      8e63c9ff
  20. Jul 08, 2019