1. 20 May, 2023 1 commit
  2. 04 May, 2023 1 commit
  3. 28 Apr, 2023 1 commit
  4. 24 Apr, 2023 2 commits
  5. 07 Apr, 2023 1 commit
  6. 05 Apr, 2023 1 commit
  7. 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
  8. 29 Mar, 2023 1 commit
  9. 21 Mar, 2023 1 commit
  10. 18 Mar, 2023 1 commit
  11. 17 Mar, 2023 2 commits
  12. 10 Mar, 2023 2 commits
  13. 28 Feb, 2023 1 commit
    • Charlie Lin's avatar
      Select module op (#1569) · a63ee2e0
      Charlie Lin authored
      Creates the select_module operator that selects one of the submodules passed to it to run based on the submodule parameters.  The submodule is selected by having the exact same static shapes for the arguments to select_module as the parameters in the submodule
      a63ee2e0
  14. 23 Feb, 2023 1 commit
  15. 16 Feb, 2023 1 commit
  16. 03 Feb, 2023 2 commits
  17. 17 Jan, 2023 1 commit
  18. 13 Jan, 2023 1 commit
  19. 11 Jan, 2023 1 commit
  20. 09 Jan, 2023 1 commit
  21. 14 Dec, 2022 1 commit
  22. 17 Nov, 2022 2 commits
  23. 15 Nov, 2022 2 commits
  24. 02 Nov, 2022 1 commit
  25. 28 Oct, 2022 1 commit
  26. 27 Oct, 2022 1 commit
    • kahmed10's avatar
      Add JIT pad (#1411) · 0d841ded
      kahmed10 authored
      updated GPU pad to now use JIT version.
      added range functions for JIT kernels.
      0d841ded
  27. 26 Oct, 2022 1 commit
  28. 21 Oct, 2022 1 commit
  29. 20 Oct, 2022 3 commits
  30. 19 Oct, 2022 2 commits
  31. 13 Oct, 2022 1 commit
    • Charlie Lin's avatar
      Refactor dynamic padding mode (#1387) · 32f6388c
      Charlie Lin authored
      Removes use_dynamic_same_auto_pad
      Change padding_mode to be used for dynamic padding
      Move compute_padded_shape to pad_calc.cpp as it will be used in other dynamic padding cases
      Fix same_lower compute_padded_shape bug and add a test.
      32f6388c