1. 19 Apr, 2022 2 commits
  2. 13 Apr, 2022 1 commit
  3. 12 Apr, 2022 2 commits
  4. 11 Apr, 2022 4 commits
  5. 08 Apr, 2022 1 commit
  6. 06 Apr, 2022 1 commit
  7. 04 Apr, 2022 4 commits
  8. 31 Mar, 2022 2 commits
  9. 29 Mar, 2022 5 commits
  10. 28 Mar, 2022 7 commits
  11. 25 Mar, 2022 1 commit
  12. 24 Mar, 2022 4 commits
  13. 22 Mar, 2022 1 commit
  14. 21 Mar, 2022 1 commit
  15. 18 Mar, 2022 2 commits
  16. 15 Mar, 2022 2 commits
    • Umang Yadav's avatar
      Expose APIs for the MIGraphX program (#1093) · 64e79a94
      Umang Yadav authored
      API includes following
      create_module,
      get_main_module
      add_instruction without module args
      add_instruction with module args
      add_parameter
      add_return
      64e79a94
    • Paul Fultz II's avatar
      Add iterators to kernels tensor_view and fix roialign to work with non-standard shape (#1126) · 31e63991
      Paul Fultz II authored
      This adds iterators to tensor_view, which can allow kernels to work with non-standard shapes like for roialign.
      
      To improve the performance of indexing when using the iterators, the shape class was updated to use integral_constants since the compiler doesn't always fold the const values. An integral_constant will at least enforce that in the AST.
      
      Finally, since index calculations with single integers are improved, I also updated pointwise to use single index rather than multi index. There is about 4% improvement in some cases.
      31e63991