1. 07 Dec, 2022 2 commits
  2. 06 Dec, 2022 3 commits
  3. 02 Dec, 2022 2 commits
    • Charlie Lin's avatar
      Refactor non-standard literal construction (#1443) · fdc3f00a
      Charlie Lin authored
      Fix problem with the contiguous operator constructing non-standard shape literals.  A non-standard literal will almost never be used, since a literal is known at compile time.  Added some comments on the intended behavior:
      
      - literal{shape, vector} constructor with a non-standard shape is intended to keep the same ordering as the given vector. The data buffer will be populated such that when the non-standard indexing is used the original order is as given.
      - literal{shape, argument} constructor directly copies the data buffer from the argument
      - Changed non-standard literal fill() to use tensor_view iterators as it handles non-standard shapes now
      - Changed the contiguous ref_ops_test to be more helpful
      fdc3f00a
    • Charlie Lin's avatar
      Dynamic ref pooling (#1449) · 0e40ebaa
      Charlie Lin authored
      Extends the pooling operators for dynamic shape inputs
      
      AveragePooling
      GlobalAveragePooling
      MaxPooling
      GlobalMaxPooling
      LpNormPooling
      GlobalLpNormPooling
      y.github.com>
      0e40ebaa
  4. 30 Nov, 2022 1 commit
  5. 29 Nov, 2022 1 commit
  6. 28 Nov, 2022 1 commit
  7. 23 Nov, 2022 1 commit
  8. 22 Nov, 2022 1 commit
  9. 20 Nov, 2022 1 commit
  10. 18 Nov, 2022 1 commit
    • Umang Yadav's avatar
      Disable Find2.0 for now (#1462) · 493bb8d5
      Umang Yadav authored
      Disabling it untill int8 fix is in mainline from MIOpen and also so that QA tests could run migraphx-driver and unittests from MIGraphX.
      493bb8d5
  11. 17 Nov, 2022 2 commits
  12. 15 Nov, 2022 1 commit
  13. 14 Nov, 2022 1 commit
  14. 13 Nov, 2022 1 commit
    • Charlie Lin's avatar
      Dyn ref multibroadcast; dyn binary (#1423) · d73c6d7c
      Charlie Lin authored
      Updated Multibroadcast op to have a two input version for dynamic shapes
      Current dynamic shape broadcasting logic
      dynamic_dimensions must be the same or one of them is {1, 1, 0} or {1, 1, 1}
      Works for dyn-dyn, dyn-static, and static-static shape combinations
      Changed common.cpp for multibroadcasting for binary ops with dynamic shapes
      Extended binary.hpp for dynamic shapes to test the new common.cpp stuff
      d73c6d7c
  15. 07 Nov, 2022 2 commits
  16. 06 Nov, 2022 1 commit
  17. 02 Nov, 2022 3 commits
  18. 01 Nov, 2022 2 commits
  19. 31 Oct, 2022 1 commit
  20. 28 Oct, 2022 1 commit
  21. 27 Oct, 2022 2 commits
  22. 26 Oct, 2022 2 commits
  23. 25 Oct, 2022 1 commit
  24. 24 Oct, 2022 1 commit
  25. 21 Oct, 2022 1 commit
  26. 19 Oct, 2022 2 commits
  27. 18 Oct, 2022 1 commit
  28. 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