1. 26 Jul, 2023 2 commits
  2. 25 Jul, 2023 1 commit
  3. 24 Jul, 2023 1 commit
  4. 23 Jul, 2023 1 commit
  5. 22 Jul, 2023 2 commits
  6. 21 Jul, 2023 3 commits
  7. 20 Jul, 2023 1 commit
  8. 19 Jul, 2023 2 commits
  9. 17 Jul, 2023 1 commit
  10. 16 Jul, 2023 1 commit
  11. 13 Jul, 2023 1 commit
    • Charlie Lin's avatar
      Update deconvolution -> convolution_backwards and Dynamic Shape Support (#1801) · 4edf1195
      Charlie Lin authored
      Renames deconvolution -> convolution_backwards to be more consistent with the literature
      Note: this is not the cross-correlation operator (which is the adjoint of convolution). This is technically a standard convolution operator combined with an upsampling operator rather than a downsampling operator.
      Adds unit tests for the padding, strides, dilations, and other op attributes.
      Throws on auto_pad attribute since it has not been implemented
      Previously it read the attribute and set it but then did nothing with it
      Extended for dynamic shapes
      Does not support using asymmetric padding (padding_L != padding_R) and output_shape with dynamic shapes.
      4edf1195
  12. 10 Jul, 2023 3 commits
  13. 08 Jul, 2023 2 commits
  14. 06 Jul, 2023 4 commits
  15. 05 Jul, 2023 3 commits
  16. 02 Jul, 2023 3 commits
  17. 29 Jun, 2023 2 commits
  18. 27 Jun, 2023 1 commit
  19. 23 Jun, 2023 1 commit
  20. 22 Jun, 2023 1 commit
  21. 20 Jun, 2023 1 commit
  22. 17 Jun, 2023 1 commit
  23. 16 Jun, 2023 1 commit
  24. 15 Jun, 2023 1 commit
    • 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