1. 22 Mar, 2023 1 commit
  2. 21 Mar, 2023 2 commits
    • Charlie Lin's avatar
      select_module refactor (#1615) · 94a7f6ee
      Charlie Lin authored
      Refactor to have select_module use output parameters
      Disable select_module verify tests on cpu
      94a7f6ee
    • Umang Yadav's avatar
      Fix default target in driver (#1635) · 11e2451f
      Umang Yadav authored
      Recent changes #1608 removed migraphx_all_target lib from driver and that led to missing compile time definitions.
      Missing compile definitions led to change of default target in driver.
      11e2451f
  3. 18 Mar, 2023 1 commit
  4. 17 Mar, 2023 1 commit
  5. 13 Mar, 2023 2 commits
  6. 10 Mar, 2023 2 commits
  7. 09 Mar, 2023 1 commit
  8. 07 Mar, 2023 1 commit
  9. 04 Mar, 2023 1 commit
  10. 01 Mar, 2023 1 commit
  11. 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
  12. 23 Feb, 2023 1 commit
  13. 16 Feb, 2023 3 commits
  14. 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
  15. 14 Feb, 2023 3 commits
  16. 13 Feb, 2023 1 commit
  17. 11 Feb, 2023 1 commit
  18. 10 Feb, 2023 2 commits
  19. 06 Feb, 2023 1 commit
  20. 03 Feb, 2023 2 commits
  21. 02 Feb, 2023 1 commit
  22. 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
  23. 31 Jan, 2023 3 commits
  24. 30 Jan, 2023 1 commit
  25. 26 Jan, 2023 1 commit
  26. 24 Jan, 2023 1 commit
  27. 21 Jan, 2023 1 commit
  28. 19 Jan, 2023 1 commit
  29. 17 Jan, 2023 1 commit
    • 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