1. 16 Nov, 2022 4 commits
  2. 15 Nov, 2022 2 commits
  3. 13 Nov, 2022 1 commit
    • Charlie Lin's avatar
      Dyn ref multibroadcast; dyn binary (#1423) · d73c6d7c
      Charlie Lin authored
      Updated Multibroadcast op to have a two input version for dynamic shapes
      Current dynamic shape broadcasting logic
      dynamic_dimensions must be the same or one of them is {1, 1, 0} or {1, 1, 1}
      Works for dyn-dyn, dyn-static, and static-static shape combinations
      Changed common.cpp for multibroadcasting for binary ops with dynamic shapes
      Extended binary.hpp for dynamic shapes to test the new common.cpp stuff
      d73c6d7c
  4. 08 Nov, 2022 1 commit
  5. 04 Nov, 2022 1 commit
  6. 03 Nov, 2022 4 commits
  7. 02 Nov, 2022 2 commits
  8. 01 Nov, 2022 3 commits
  9. 31 Oct, 2022 3 commits
  10. 28 Oct, 2022 4 commits
  11. 27 Oct, 2022 7 commits
  12. 26 Oct, 2022 3 commits
  13. 24 Oct, 2022 2 commits
  14. 20 Oct, 2022 2 commits
  15. 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