1. 21 Feb, 2023 1 commit
  2. 16 Feb, 2023 3 commits
  3. 15 Feb, 2023 4 commits
    • Brian Pickrell's avatar
      Dyn slice (#1503) · 102c6bdb
      Brian Pickrell authored
      Add dynamic shape support to slice operator.
      
      First draft of this feature doesn't support ops slicing non-fixed, dynamic axes. Resulting shape in such cases is not guaranteed.* Also, onnx parsing doesn't support any arguments other than "axes".
      102c6bdb
    • charlie's avatar
      Fix operation bug at mod_compute_shape · 3f4ef63e
      charlie authored
      removed the new rank<1> function as it messed up batch_quant_dot_5
      verify test
      3f4ef63e
    • charlie's avatar
      cleanup · 700d7761
      charlie authored
      700d7761
    • charlie's avatar
      Code cleanup · 1f47b7a1
      charlie authored
      1f47b7a1
  4. 14 Feb, 2023 4 commits
  5. 13 Feb, 2023 1 commit
  6. 11 Feb, 2023 1 commit
  7. 10 Feb, 2023 3 commits
  8. 08 Feb, 2023 1 commit
  9. 06 Feb, 2023 2 commits
  10. 04 Feb, 2023 1 commit
  11. 03 Feb, 2023 2 commits
  12. 02 Feb, 2023 1 commit
  13. 01 Feb, 2023 1 commit
    • Ted Themistokleous's avatar
      Parse if inline constant args (#1533) · ca15cd37
      Ted Themistokleous authored
      Allows migraphx to inline the IF operator when we run into an IF that can be evaluated at compile time, thus avoiding us injecting IF and just inserting the instructions directly.
      ca15cd37
  14. 31 Jan, 2023 4 commits
  15. 30 Jan, 2023 2 commits
  16. 26 Jan, 2023 1 commit
  17. 24 Jan, 2023 2 commits
  18. 21 Jan, 2023 1 commit
  19. 19 Jan, 2023 1 commit
  20. 17 Jan, 2023 4 commits
    • Charlie Lin's avatar
      Dynamic ONNX Gemm (#1459) · 8b651eee
      Charlie Lin authored
      Extends ONNX Gemm parser to handle dynamic input shapes
      Limits ONNX Gemm parsing to 2D input tensors for A and B inputs
      As per the ONNX specifications
      Changed Gemm ONNX tests to 2D input versions
      Add onnx_verify tests for Gemm
      Parsing ONNX Gemm links to more than one operator, checking that it produces the correct result
      8b651eee
    • Charlie Lin's avatar
      Dynamic ref reshape (one non-fixed case) (#1500) · 3f49f8eb
      Charlie Lin authored
      Extends reshape to handle the case of a single non-fixed dynamic_dimension
      3f49f8eb
    • Paul Fultz II's avatar
    • Charlie Lin's avatar
      Dynamic ref pad (#1487) · 8202e411
      Charlie Lin authored
      Extends pad operator to handle dynamic input shapes
      Only handles computing the shape for adding constant padding to a dynamic shape
      - adds the padding to the min, max, and opt values (unless opt is 0, where it keeps it 0)
      - does not handle reflect padding with dynamic shapes
      8202e411