1. 21 Mar, 2023 1 commit
  2. 18 Mar, 2023 1 commit
  3. 13 Mar, 2023 1 commit
  4. 10 Mar, 2023 2 commits
  5. 01 Mar, 2023 1 commit
  6. 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
  7. 23 Feb, 2023 1 commit
  8. 16 Feb, 2023 3 commits
  9. 14 Feb, 2023 1 commit
  10. 10 Feb, 2023 1 commit
  11. 06 Feb, 2023 1 commit
  12. 31 Jan, 2023 2 commits
  13. 19 Jan, 2023 1 commit
  14. 17 Jan, 2023 2 commits
  15. 11 Jan, 2023 1 commit
  16. 09 Jan, 2023 1 commit
  17. 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
  18. 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
  19. 07 Dec, 2022 1 commit
  20. 06 Dec, 2022 2 commits
  21. 29 Nov, 2022 1 commit
  22. 20 Nov, 2022 1 commit
  23. 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
  24. 07 Nov, 2022 1 commit
  25. 06 Nov, 2022 1 commit
  26. 02 Nov, 2022 2 commits
  27. 28 Oct, 2022 1 commit
  28. 27 Oct, 2022 2 commits
  29. 26 Oct, 2022 1 commit
  30. 24 Oct, 2022 1 commit
  31. 19 Oct, 2022 1 commit
    • Charlie Lin's avatar
      Refactor dynamic compute; Dynamic ref unary functions (#1407) · 693cb5d8
      Charlie Lin authored
      Refactor dynamic compute
      - add a compute_output_shape object that implicitly converts to a new dyn_output or shape object
      - dyn_output object can handle computing the static output shape of an operator given the input arguments shapes
        change an operator's compute function to argument compute(const dyn_output& dyn_out, std::vector<argument> args) to 
        use dyn_output object
      
      Dynamic ref unary functions
      -  Included these changes to have an example of the refactored dynamic compute being used
      -  Changes to unary base class to handle dynamic shapes
      -  Changed elu and leaky_relu to use unary base class and pointwise JIT
      693cb5d8