1. 18 Nov, 2022 1 commit
  2. 17 Nov, 2022 2 commits
  3. 15 Nov, 2022 1 commit
  4. 14 Nov, 2022 1 commit
  5. 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
  6. 11 Nov, 2022 1 commit
  7. 10 Nov, 2022 2 commits
    • Ted Themistokleous's avatar
      Update src/onnx/parse_if.cpp · 6f86d89d
      Ted Themistokleous authored
      
      
      fix comment for sub graph throw
      Co-authored-by: default avatarkahmed10 <15948690+kahmed10@users.noreply.github.com>
      6f86d89d
    • Ted Themistokleous's avatar
      Simplify parse_if to remove literal and broadcasting for empty branches · 62c746eb
      Ted Themistokleous authored
      Just grab the last output from the non empty branch and use the identity
      operator to get the proper shape for the output branch. In the case of
      an empty branch (empty tensor, of some type) this tends to mean "Do nothing"
      so we're folding the output of the other flow branch here, and thus if somehow,
      we do reach this at eval, should throw an error signalling either one of two things
      
      1. Onnx model is invalid
      2. The model has run into an error condition with its control flow.
      
      Since IF is an odd operator that can adjust axes, and other operators in a data driven
      fashion, this would serve as a check at compile and or/runtime.
      62c746eb
  8. 07 Nov, 2022 2 commits
  9. 06 Nov, 2022 1 commit
  10. 04 Nov, 2022 3 commits
  11. 02 Nov, 2022 4 commits
  12. 01 Nov, 2022 2 commits
  13. 31 Oct, 2022 1 commit
  14. 28 Oct, 2022 4 commits
  15. 27 Oct, 2022 3 commits
  16. 26 Oct, 2022 3 commits
  17. 25 Oct, 2022 1 commit
  18. 24 Oct, 2022 1 commit
  19. 21 Oct, 2022 3 commits
  20. 20 Oct, 2022 1 commit
    • Ted Themistokleous's avatar
      Add tests for valid multi output shapes going into IF operator · a27808b3
      Ted Themistokleous authored
      Adding test to validate what a "valid" multi input should look like and
      that we correctly handle trailing 1s and correctly sized outputs.
      
      Generated and added the two tests from gen_onnx.py with matching test
      in onnx_test.cpp
      
      -if_then_else_multi_output_shapes_test.onnx
      -if_then_else_multi_output_shapes_test2.onnx
      a27808b3
  21. 19 Oct, 2022 2 commits