1. 28 Aug, 2023 1 commit
  2. 25 Aug, 2023 1 commit
  3. 24 Aug, 2023 2 commits
  4. 23 Aug, 2023 1 commit
  5. 22 Aug, 2023 1 commit
  6. 18 Aug, 2023 1 commit
    • Charlie Lin's avatar
      Variable input slice (#2039) · e4ef64f4
      Charlie Lin authored
      Allows slice to work with variable starts, ends, and axes input
      Outputs a dynamic shape even with a static shape data input when the starts and ends are variable
      e4ef64f4
  7. 17 Aug, 2023 1 commit
  8. 15 Aug, 2023 2 commits
  9. 14 Aug, 2023 2 commits
  10. 11 Aug, 2023 2 commits
  11. 07 Aug, 2023 1 commit
  12. 31 Jul, 2023 1 commit
  13. 29 Jul, 2023 1 commit
  14. 27 Jul, 2023 2 commits
  15. 25 Jul, 2023 1 commit
  16. 24 Jul, 2023 1 commit
  17. 23 Jul, 2023 1 commit
  18. 21 Jul, 2023 2 commits
  19. 20 Jul, 2023 1 commit
  20. 17 Jul, 2023 1 commit
  21. 16 Jul, 2023 1 commit
  22. 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
  23. 10 Jul, 2023 1 commit
    • Brian Pickrell's avatar
      Pooling op. calculation changes (#1823) · bb06dbf5
      Brian Pickrell authored
      Changes to the way Pooling operation calculates pooling when there's padding. Old code would clip off any padding values before computing; for instance if an Average pooling window contained 0 1 2 where the 0 is padding, the result was 1.5 instead of 1.0. See Issue 1766
      bb06dbf5
  24. 06 Jul, 2023 3 commits
  25. 05 Jul, 2023 2 commits
  26. 02 Jul, 2023 1 commit
  27. 29 Jun, 2023 1 commit
  28. 17 Jun, 2023 1 commit
  29. 16 Jun, 2023 1 commit
  30. 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
  31. 04 Apr, 2023 1 commit
    • Charlie Lin's avatar
      Refactor dynamic_dimension to have multiple optimals (#1625) · e7ec374f
      Charlie Lin authored
      Makes the optimals into a std::set<std::size_t>
      Changes shape object functions to handle the opts change
      Changes to convolution, flatten, pooling, and convolution in that they no longer calculate the output optimal dimensions. Instead returns empty opts. Will need to change this in the future if we want to support dynamic shapes fully.
      Many changes to tests and shape calls with respect to the new optimals
      e7ec374f