1. 25 Aug, 2023 1 commit
  2. 24 Aug, 2023 2 commits
  3. 23 Aug, 2023 1 commit
  4. 22 Aug, 2023 1 commit
  5. 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
  6. 17 Aug, 2023 1 commit
  7. 15 Aug, 2023 2 commits
  8. 14 Aug, 2023 2 commits
  9. 11 Aug, 2023 2 commits
  10. 07 Aug, 2023 1 commit
  11. 31 Jul, 2023 1 commit
  12. 29 Jul, 2023 1 commit
  13. 27 Jul, 2023 2 commits
  14. 25 Jul, 2023 1 commit
  15. 24 Jul, 2023 1 commit
  16. 23 Jul, 2023 1 commit
  17. 21 Jul, 2023 2 commits
  18. 20 Jul, 2023 1 commit
  19. 17 Jul, 2023 1 commit
  20. 16 Jul, 2023 1 commit
  21. 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
  22. 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
  23. 06 Jul, 2023 3 commits
  24. 05 Jul, 2023 2 commits
  25. 02 Jul, 2023 1 commit
  26. 29 Jun, 2023 1 commit
  27. 17 Jun, 2023 1 commit
  28. 16 Jun, 2023 1 commit
  29. 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
  30. 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
  31. 31 Mar, 2023 1 commit
    • Charlie Lin's avatar
      Split single dynamic dimension compiler pass (#1580) · e9e3eacc
      Charlie Lin authored
      Adds a new GPU compiler pass split_single_dyn_dim that handles when one input parameter has a single non-fixed dynamic_dimension.
      commonly occurs for dynamic batch or BERT sequence length
      Splits the dynamic shape into several submodules will static input parameters to handle all of the cases in the dynamic_dimension range.
      Essentially does what I manually did for the select_module verify tests
      Adds a compile option split_single_dyn_dim that toggles the pass on/off. Defaults to false.
      Updates verify_program.hpp and run_verify.cpp to allow for the tests to change the compile_options
      e9e3eacc