1. 03 Apr, 2023 1 commit
    • Charlie Lin's avatar
      promote_literals pass (#1593) · e3fb3a0d
      Charlie Lin authored
      Adds the promote_literals compiler pass that moves literals from the submodules to the main module.
      With the eliminate_common_subexpression pass, it will remove copies of literals created during split_single_dyn_dim.
      Pass is enabled with the split_single_dyn_dim compile option.
      e3fb3a0d
  2. 01 Apr, 2023 1 commit
  3. 31 Mar, 2023 1 commit
    • Charlie Lin's avatar
      Split single dynamic dimension compiler pass (#1580) · e9e3eacc
      Charlie Lin authored
      Adds a new GPU compiler pass split_single_dyn_dim that handles when one input parameter has a single non-fixed dynamic_dimension.
      commonly occurs for dynamic batch or BERT sequence length
      Splits the dynamic shape into several submodules will static input parameters to handle all of the cases in the dynamic_dimension range.
      Essentially does what I manually did for the select_module verify tests
      Adds a compile option split_single_dyn_dim that toggles the pass on/off. Defaults to false.
      Updates verify_program.hpp and run_verify.cpp to allow for the tests to change the compile_options
      e9e3eacc
  4. 30 Mar, 2023 1 commit
  5. 29 Mar, 2023 1 commit
  6. 28 Mar, 2023 1 commit
  7. 27 Mar, 2023 1 commit
  8. 25 Mar, 2023 1 commit
  9. 21 Mar, 2023 1 commit
  10. 18 Mar, 2023 1 commit
  11. 13 Mar, 2023 1 commit
  12. 10 Mar, 2023 2 commits
  13. 01 Mar, 2023 1 commit
  14. 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
  15. 23 Feb, 2023 1 commit
  16. 16 Feb, 2023 3 commits
  17. 14 Feb, 2023 1 commit
  18. 10 Feb, 2023 1 commit
  19. 06 Feb, 2023 1 commit
  20. 31 Jan, 2023 2 commits
  21. 19 Jan, 2023 1 commit
  22. 17 Jan, 2023 2 commits
  23. 11 Jan, 2023 1 commit
  24. 09 Jan, 2023 1 commit
  25. 11 Dec, 2022 1 commit
    • Umang Yadav's avatar
      change target flag (#1488) · b41c1f01
      Umang Yadav authored
      HIP had change in previous rocm releases to use --offload-arch instead of --cuda-gpu-arch.
      
      This should be backwards compatbile. hipRTC also supports --offload-arch.
      b41c1f01
  26. 08 Dec, 2022 2 commits
    • Charlie Lin's avatar
      Dynamic ref dot operator (#1457) · d411aa69
      Charlie Lin authored
      Extends dot MIGX operator to handle dynamic input shapes
      Only allow dot between two dynamic shapes that have exactly matching outer dimensions
      Inner dimensions must also match correspondingly
      Updates dot related tests
      Change check_shapes to use shape.ndim()
      ONNX parsers for GEMM and MatMult will be updated in a separate PR
      d411aa69
    • Charlie Lin's avatar
      Dynamic reference Softmax (#1475) · 8e7d2efe
      Charlie Lin authored
      No major changes required, use dyn_output and pass dynamic shape when calling compute_shape()
      Adds dynamic shape tests
      8e7d2efe
  27. 07 Dec, 2022 1 commit
  28. 06 Dec, 2022 2 commits
  29. 29 Nov, 2022 1 commit
  30. 20 Nov, 2022 1 commit
  31. 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
  32. 07 Nov, 2022 1 commit
  33. 06 Nov, 2022 1 commit