1. 23 Feb, 2023 1 commit
  2. 22 Feb, 2023 1 commit
  3. 21 Feb, 2023 1 commit
  4. 14 Feb, 2023 1 commit
    • Chris Austen's avatar
      Rocm55 neg param fix (#1566) · b1d3c954
      Chris Austen authored
      test change to neg unit ops to prevent on use for param
      change to insert instruction, add and modify existing tes
      Equivalent to #1562
      b1d3c954
  5. 13 Feb, 2023 1 commit
  6. 11 Feb, 2023 1 commit
    • Chris Austen's avatar
      Fixci 55 (#1558) · be2fb38d
      Chris Austen authored
      * Migrate to Docker Layer Caching2 (#1550)
      * Fix CI failure: move from AWS to download.onnxruntime.ai for onnx model testing (#1555)
      * upgrade to ROCm 5.4.2 in CI (#1543)
      be2fb38d
  7. 31 Jan, 2023 2 commits
  8. 30 Jan, 2023 4 commits
  9. 26 Jan, 2023 2 commits
  10. 24 Jan, 2023 2 commits
  11. 21 Jan, 2023 1 commit
  12. 19 Jan, 2023 1 commit
  13. 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
  14. 16 Jan, 2023 1 commit
  15. 13 Jan, 2023 2 commits
  16. 11 Jan, 2023 3 commits
  17. 09 Jan, 2023 2 commits
  18. 06 Jan, 2023 2 commits
  19. 04 Jan, 2023 1 commit
  20. 29 Dec, 2022 1 commit
  21. 14 Dec, 2022 1 commit
  22. 13 Dec, 2022 2 commits
  23. 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
  24. 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