1. 18 Mar, 2023 1 commit
  2. 17 Mar, 2023 1 commit
  3. 13 Mar, 2023 2 commits
  4. 10 Mar, 2023 2 commits
  5. 09 Mar, 2023 1 commit
  6. 07 Mar, 2023 1 commit
  7. 04 Mar, 2023 1 commit
  8. 01 Mar, 2023 1 commit
  9. 28 Feb, 2023 1 commit
    • Charlie Lin's avatar
      Select module op (#1569) · a63ee2e0
      Charlie Lin authored
      Creates the select_module operator that selects one of the submodules passed to it to run based on the submodule parameters.  The submodule is selected by having the exact same static shapes for the arguments to select_module as the parameters in the submodule
      a63ee2e0
  10. 23 Feb, 2023 1 commit
  11. 16 Feb, 2023 3 commits
  12. 15 Feb, 2023 1 commit
    • 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
  13. 14 Feb, 2023 3 commits
  14. 13 Feb, 2023 1 commit
  15. 11 Feb, 2023 1 commit
  16. 10 Feb, 2023 2 commits
  17. 06 Feb, 2023 1 commit
  18. 03 Feb, 2023 2 commits
  19. 02 Feb, 2023 1 commit
  20. 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
  21. 31 Jan, 2023 3 commits
  22. 30 Jan, 2023 1 commit
  23. 26 Jan, 2023 1 commit
  24. 24 Jan, 2023 1 commit
  25. 21 Jan, 2023 1 commit
  26. 19 Jan, 2023 1 commit
  27. 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