1. 17 Sep, 2022 1 commit
  2. 16 Sep, 2022 1 commit
  3. 15 Sep, 2022 1 commit
  4. 14 Sep, 2022 1 commit
  5. 13 Sep, 2022 1 commit
    • turneram's avatar
      Use rocblas_gemm_ex for batched gemms with broadcasted B (#1354) · a10a8ef1
      turneram authored
      Improves performance for 4/6 GEMMs used by huggingface BERT models with batch_size>1 by using a non-batched rocBLAS call for GEMMs where the B input has a broadcasted batch dimension.
      The four verify tests added reflect the actual configurations used by bert-base-cased, with varied batch sizes.
      
      Also adds a matcher to simplify_reshapes to move multibroadcasts after concats.
      a10a8ef1
  6. 12 Sep, 2022 3 commits
  7. 08 Sep, 2022 1 commit
  8. 07 Sep, 2022 3 commits
  9. 06 Sep, 2022 5 commits
  10. 31 Aug, 2022 3 commits
  11. 30 Aug, 2022 4 commits
  12. 27 Aug, 2022 2 commits
  13. 26 Aug, 2022 5 commits
  14. 17 Aug, 2022 1 commit
  15. 16 Aug, 2022 1 commit
  16. 12 Aug, 2022 1 commit
  17. 02 Aug, 2022 1 commit
  18. 29 Jul, 2022 1 commit
    • Umang Yadav's avatar
      Avoid registering host buffer ptr multiple times during hip copies (#1245) · 7596f3f1
      Umang Yadav authored
      Currently, while copying a host buffer to the device, it first registers/maps the host buffer pointer to address space of the device.
      
      If the host buffer has been allocated by the hipHostMalloc then, it is implicitly registered to the device's address space, and no need to register again. This PR adds a check for the same.
      7596f3f1
  19. 25 Jul, 2022 1 commit
    • Ted Themistokleous's avatar
      Add onnx mod operator (#1302) · 77e80b8e
      Ted Themistokleous authored
      * Add in changes for onnx Mod operator
      
      Initial operator for mod implementation and test cases for integer and floating based types.
      
      Need to use fmod from stdlib for floating point types. half_float::half thankfully is specced to the use the existing std::fmod() call when looking at the half.hpp implementation.
      
      fmod_flag should mirror the onnx fmod attribute. Right now using a floating point type without setting that on the user side to true will result in an exception.
      
      Ref ticket #1283 
      77e80b8e
  20. 19 Jul, 2022 1 commit
    • Charlie Lin's avatar
      Fix op includes (#1308) · 39b307b2
      Charlie Lin authored
      Changes to operator includes:
      
      removed some includes that were not used
      included argument.hpp where clang-tidy wanted it
      39b307b2
  21. 12 Jul, 2022 1 commit
  22. 11 Jul, 2022 1 commit