"example/vscode:/vscode.git/clone" did not exist on "b6ece3c6f2d062a3cbc52eab45e1e50fb77e5c11"
  1. 16 Dec, 2022 1 commit
  2. 06 Dec, 2022 1 commit
  3. 03 Nov, 2022 1 commit
  4. 02 Nov, 2022 1 commit
  5. 28 Oct, 2022 1 commit
  6. 17 Oct, 2022 1 commit
    • Umang Yadav's avatar
      memset fix (#1414) · 83784c52
      Umang Yadav authored
      hipMemset is causing random failure.
      hipMemsetAsync is doing the correct synchronization.
      83784c52
  7. 14 Oct, 2022 1 commit
  8. 13 Oct, 2022 2 commits
  9. 07 Oct, 2022 1 commit
  10. 04 Oct, 2022 2 commits
  11. 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
  12. 29 Sep, 2022 2 commits
  13. 28 Sep, 2022 1 commit
    • Umang Yadav's avatar
      Add compute_fp32 flag for quant_gemm tests (#1360) · 70e63960
      Umang Yadav authored
      test_gpu_pack_int8_args fails on gfx908 machine, because it doesn't set compute_fp32 flag correctly. This PR fixes the test such that it checks for the device-name, and rocblas-versions and sets this flag accordingly.
      70e63960
  14. 27 Sep, 2022 1 commit
  15. 26 Sep, 2022 3 commits
  16. 24 Sep, 2022 2 commits
  17. 23 Sep, 2022 1 commit
  18. 21 Sep, 2022 2 commits
  19. 19 Sep, 2022 2 commits
    • Paul Fultz II's avatar
      Improve layernorm and reductions performance (#1348) · 97a1ed2d
      Paul Fultz II authored
      Compute mean and variance in same reduction
      Set block size to numbers divisible by 32 instead powers of 2
      Global is also set exactly instead of being divisible by block size
      More exact matching of global/local can help get rid of branching/loops
      Reduce vectors first before doing dpp_reduce
      Explicitly vectorize array operators since the compiler doesnt always vectorize them
      Still uses old for loop when its computing at compile-time since the reinterpret_cast nor the all the vector types is supported
      97a1ed2d
    • Chris Austen's avatar
  20. 16 Sep, 2022 2 commits
  21. 15 Sep, 2022 1 commit
  22. 14 Sep, 2022 4 commits
  23. 13 Sep, 2022 1 commit
    • turneram's avatar
      Use rocblas_gemm_ex for batched gemms with broadcasted B (#1354) · a10a8ef1
      turneram authored
      Improves performance for 4/6 GEMMs used by huggingface BERT models with batch_size>1 by using a non-batched rocBLAS call for GEMMs where the B input has a broadcasted batch dimension.
      The four verify tests added reflect the actual configurations used by bert-base-cased, with varied batch sizes.
      
      Also adds a matcher to simplify_reshapes to move multibroadcasts after concats.
      a10a8ef1
  24. 09 Sep, 2022 1 commit
  25. 08 Sep, 2022 2 commits
  26. 07 Sep, 2022 1 commit
  27. 06 Sep, 2022 1 commit