1. 19 May, 2023 2 commits
  2. 18 May, 2023 2 commits
  3. 17 May, 2023 4 commits
  4. 08 May, 2023 1 commit
  5. 06 May, 2023 1 commit
  6. 05 May, 2023 3 commits
  7. 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
  8. 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
  9. 02 May, 2023 1 commit
  10. 28 Apr, 2023 1 commit
  11. 25 Apr, 2023 2 commits
  12. 24 Apr, 2023 3 commits
  13. 21 Apr, 2023 1 commit
  14. 20 Apr, 2023 1 commit
  15. 19 Apr, 2023 1 commit
  16. 18 Apr, 2023 2 commits
  17. 17 Apr, 2023 2 commits
  18. 13 Apr, 2023 1 commit
  19. 12 Apr, 2023 1 commit
  20. 11 Apr, 2023 1 commit
  21. 10 Apr, 2023 4 commits
  22. 09 Apr, 2023 1 commit
  23. 07 Apr, 2023 1 commit
  24. 06 Apr, 2023 1 commit
    • Charlie Lin's avatar
      Driver dynamic batch update (#1652) · adccec52
      Charlie Lin authored
      Examples..
      
      bin/driver verify /codes/onnx_models/resnet50-v1-7/resnet50-v1-7.onnx --split-single-dyn-dim --batch 3 --dyn-input-dim @data "[{min:1, max:4}, 3, 224, 224]"
      
      bin/driver compile /codes/onnx_models/resnet50-v1-7/resnet50-v1-7.onnx --split-single-dyn-dim --default-dyn-dim "{min:1, max:10}" --output resnet50_batch1-10.mxr
      
      bin/driver perf resnet50_batch1-10.mxr --batch 4
      adccec52