1. 16 Feb, 2023 2 commits
  2. 15 Feb, 2023 2 commits
  3. 14 Feb, 2023 2 commits
    • charlie's avatar
      Somehow this verify test works · 996426be
      charlie authored
      * Changed the allocates to occur in the submodules
        * Incomplete, as the use_local_alloc variable in module does not work
        properly
      * added a hip::sync_stream before the return
      * not sure why the hip::sync_stream gets rid of the dangling reference
      error (code-wise it's because hip::sync_stream's output alias is -1)
      996426be
    • shivadbhavsar's avatar
      Set device to current hip device when loading programs (#1561) · 4e11431d
      shivadbhavsar authored
      Currently, we default to device 0 when loading programs. Updating this to use hipGetDevice to set the device for the loaded program.
      4e11431d
  4. 10 Feb, 2023 2 commits
  5. 08 Feb, 2023 1 commit
  6. 06 Feb, 2023 2 commits
  7. 31 Jan, 2023 2 commits
  8. 19 Jan, 2023 1 commit
  9. 17 Jan, 2023 1 commit
  10. 11 Jan, 2023 1 commit
  11. 09 Jan, 2023 1 commit
  12. 11 Dec, 2022 1 commit
    • Umang Yadav's avatar
      change target flag (#1488) · b41c1f01
      Umang Yadav authored
      HIP had change in previous rocm releases to use --offload-arch instead of --cuda-gpu-arch.
      
      This should be backwards compatbile. hipRTC also supports --offload-arch.
      b41c1f01
  13. 07 Dec, 2022 1 commit
  14. 06 Dec, 2022 2 commits
  15. 29 Nov, 2022 1 commit
  16. 20 Nov, 2022 1 commit
  17. 18 Nov, 2022 1 commit
    • Umang Yadav's avatar
      Disable Find2.0 for now (#1462) · 493bb8d5
      Umang Yadav authored
      Disabling it untill int8 fix is in mainline from MIOpen and also so that QA tests could run migraphx-driver and unittests from MIGraphX.
      493bb8d5
  18. 07 Nov, 2022 1 commit
  19. 06 Nov, 2022 1 commit
  20. 02 Nov, 2022 2 commits
  21. 28 Oct, 2022 1 commit
  22. 27 Oct, 2022 2 commits
  23. 26 Oct, 2022 1 commit
  24. 24 Oct, 2022 1 commit
  25. 19 Oct, 2022 2 commits
  26. 18 Oct, 2022 1 commit
  27. 13 Oct, 2022 1 commit
  28. 04 Oct, 2022 2 commits
  29. 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