1. 05 Nov, 2022 3 commits
  2. 02 Nov, 2022 3 commits
  3. 01 Nov, 2022 2 commits
  4. 31 Oct, 2022 12 commits
  5. 28 Oct, 2022 1 commit
  6. 27 Oct, 2022 2 commits
  7. 26 Oct, 2022 2 commits
  8. 25 Oct, 2022 1 commit
  9. 24 Oct, 2022 1 commit
  10. 21 Oct, 2022 1 commit
  11. 19 Oct, 2022 2 commits
  12. 18 Oct, 2022 1 commit
  13. 17 Oct, 2022 1 commit
    • Umang Yadav's avatar
      memset fix (#1414) · 83784c52
      Umang Yadav authored
      hipMemset is causing random failure.
      hipMemsetAsync is doing the correct synchronization.
      83784c52
  14. 14 Oct, 2022 1 commit
  15. 13 Oct, 2022 2 commits
  16. 07 Oct, 2022 1 commit
  17. 04 Oct, 2022 2 commits
  18. 03 Oct, 2022 1 commit
    • Umang Yadav's avatar
      Add output_alias and runs_on_offload_target flags for the custom ops (#1309) · c9ffb38d
      Umang Yadav authored
      Adds two methods for the custom_ops virtual class.
      
      bool runs_on_offload_target(), if the custom op runs directly on the gpu then it should be set to true. in this case, custom op expects its parameters to reside in GPU memory and writes output to the GPU memory. If it is set to false then, custom op expects it's parameter to reside on the host and puts back the result into the host memory.
      
      output_alias, if output of the custom op is aliasing the input buffer. i.e. interpreting the same input buffer with differnet shape and strides.
      
      Update as_vector() in C++ API to handle non-standard shapes. It required exposing element_index to space_index conversion method for the shape class.
      c9ffb38d
  19. 29 Sep, 2022 1 commit