1. 16 Jun, 2023 1 commit
  2. 15 Jun, 2023 2 commits
    • Umang Yadav's avatar
      use __hmax, __hmin (#1813) · d208adfc
      Umang Yadav authored
      d208adfc
    • Brian Pickrell's avatar
      fix parse_instancenorm to create broadcast and multibroadcast instruc… (#1715) · 41ba30d5
      Brian Pickrell authored
      * fix parse_instancenorm to create broadcast and multibroadcast instructions with two dynamic shape arguments instead of 1.  Their make_op() functions don't support dynamic shapes when called with one input.  This caused an error when parsing an ONNX 3duunet model
      
      * Use add_common_op() to create multibroadcast op.
      
      * add verification and parsing test for instance_norm with dynamic input.  Parse test doesn't pass.
      
      * fix for test; still doesn't pass
      
      * another fix for test; still doesn't pass
      
      * work in progress, instance_norm_dyn_batch_test works but instance_norm_test doesn't
      
      * fix onnx instancenorm tests to match parser changes.  Passes all check tests
      
      * Updated comments explaining usage of add_common_op()
      
      * hand-merged conflicts with develop
      
      * fix instance_norm_half_test after merge
      
      * add Onnx test instance_norm_dyn_batch_half_test
      
      * add shape test cases broadcast_1in_dyn_error and multibroadcast_1in_dyn_error_0
      41ba30d5
  3. 14 Jun, 2023 2 commits
  4. 12 Jun, 2023 1 commit
  5. 09 Jun, 2023 3 commits
  6. 08 Jun, 2023 2 commits
  7. 06 Jun, 2023 2 commits
  8. 05 Jun, 2023 1 commit
  9. 01 Jun, 2023 1 commit
  10. 31 May, 2023 1 commit
  11. 30 May, 2023 2 commits
  12. 28 May, 2023 1 commit
  13. 25 May, 2023 1 commit
  14. 24 May, 2023 2 commits
  15. 23 May, 2023 1 commit
  16. 20 May, 2023 1 commit
  17. 19 May, 2023 1 commit
  18. 17 May, 2023 2 commits
  19. 08 May, 2023 1 commit
  20. 06 May, 2023 1 commit
  21. 05 May, 2023 3 commits
  22. 04 May, 2023 2 commits
    • Paul Fultz II's avatar
      Rewrite multiplies with dot operator (#1685) · 457703a8
      Paul Fultz II authored
      When multiplying either the input or output across the K dimensions then the multiple can be applied to the constant which can then be folded with propagate_const.
      457703a8
    • Zhuoran Yin's avatar
      [mlir] Adding quant convolution fusion as anchor op (#1683) · 7f105952
      Zhuoran Yin authored
      Exposed the mlir_enabled() call the decide for lowering pipeline's enablement
      Disabled the rewrite quantization pipeline in mlir compilation
      Added quant convolution as anchor ops
      Fixed the return type expectations
      Added the fall back hip implementation for quantizelinear and dequantizelinear
      Will need advises to improve the implementation for quantizelinear
      7f105952
  23. 03 May, 2023 1 commit
    • Charlie Lin's avatar
      Update C/C++ API for dynamic batch (#1712) · 0ff00ef6
      Charlie Lin authored
      Relies on Removed split_single_dyn_dim compile flag #1711
      Exposes dynamic_dimension as a opaque object with dynamic_dimensions and optimals
      Exposes ONNX dyn_input_dims and default_dyn_dim to run with dynamic batch
      Updates api.py to be able to create objects from aggregate initialization (used for dynamic_dimension)
      Uses offload copy for now
      0ff00ef6
  24. 02 May, 2023 1 commit
  25. 28 Apr, 2023 1 commit
  26. 25 Apr, 2023 2 commits
  27. 24 Apr, 2023 1 commit
    • Charlie Lin's avatar
      Dynamic shape hip::copy_to_gpu and hip::copy_from_gpu (#1694) · 84acaea0
      Charlie Lin authored
      Updates the hip::copy_to_gpu and hip::copy_from_gpu operators to work with dynamic shapes
      
      Allows for offload_copy to be used with dynamic batch
      
      Changed assert in select_module because the argument might now be smaller with how offload_copy will work with dynamic batch. (maximum buffer size will be used)
      84acaea0