1. 18 Mar, 2023 1 commit
  2. 17 Feb, 2023 1 commit
  3. 16 Feb, 2023 2 commits
  4. 15 Feb, 2023 1 commit
  5. 11 Feb, 2023 1 commit
  6. 09 Feb, 2023 1 commit
  7. 01 Feb, 2023 1 commit
  8. 26 Jan, 2023 2 commits
  9. 24 Jan, 2023 1 commit
  10. 11 Jan, 2023 1 commit
  11. 15 Dec, 2022 2 commits
  12. 17 Nov, 2022 6 commits
  13. 02 Nov, 2022 1 commit
  14. 31 Oct, 2022 1 commit
  15. 30 Oct, 2022 1 commit
  16. 20 Oct, 2022 2 commits
  17. 19 Oct, 2022 1 commit
    • Charlie Lin's avatar
      Refactor dynamic compute; Dynamic ref unary functions (#1407) · 693cb5d8
      Charlie Lin authored
      Refactor dynamic compute
      - add a compute_output_shape object that implicitly converts to a new dyn_output or shape object
      - dyn_output object can handle computing the static output shape of an operator given the input arguments shapes
        change an operator's compute function to argument compute(const dyn_output& dyn_out, std::vector<argument> args) to 
        use dyn_output object
      
      Dynamic ref unary functions
      -  Included these changes to have an example of the refactored dynamic compute being used
      -  Changes to unary base class to handle dynamic shapes
      -  Changed elu and leaky_relu to use unary base class and pointwise JIT
      693cb5d8
  18. 17 Oct, 2022 2 commits
  19. 10 Oct, 2022 3 commits
  20. 09 Oct, 2022 6 commits
  21. 04 Oct, 2022 1 commit
  22. 03 Oct, 2022 1 commit
    • Umang Yadav's avatar
      Add output_alias and runs_on_offload_target flags for the custom ops (#1309) · c9ffb38d
      Umang Yadav authored
      Adds two methods for the custom_ops virtual class.
      
      bool runs_on_offload_target(), if the custom op runs directly on the gpu then it should be set to true. in this case, custom op expects its parameters to reside in GPU memory and writes output to the GPU memory. If it is set to false then, custom op expects it's parameter to reside on the host and puts back the result into the host memory.
      
      output_alias, if output of the custom op is aliasing the input buffer. i.e. interpreting the same input buffer with differnet shape and strides.
      
      Update as_vector() in C++ API to handle non-standard shapes. It required exposing element_index to space_index conversion method for the shape class.
      c9ffb38d
  23. 06 Sep, 2022 1 commit