"tests/entrypoints/pooling/classify/test_offline.py" did not exist on "d6953beb91da4e9c99be4c0a1304a2d24189535c"
  1. 18 Sep, 2024 1 commit
  2. 17 Sep, 2024 1 commit
  3. 13 Sep, 2024 1 commit
  4. 11 Sep, 2024 1 commit
  5. 29 Aug, 2024 1 commit
  6. 27 Aug, 2024 1 commit
  7. 21 Aug, 2024 1 commit
  8. 16 Aug, 2024 3 commits
  9. 14 Aug, 2024 1 commit
  10. 13 Aug, 2024 1 commit
  11. 07 Aug, 2024 2 commits
  12. 05 Aug, 2024 1 commit
  13. 01 Aug, 2024 1 commit
  14. 30 Jul, 2024 1 commit
  15. 25 Jul, 2024 1 commit
  16. 23 Jul, 2024 3 commits
  17. 21 Jul, 2024 1 commit
  18. 16 Jul, 2024 1 commit
  19. 11 Jul, 2024 1 commit
  20. 07 Jul, 2024 1 commit
  21. 03 Jul, 2024 3 commits
  22. 02 Jul, 2024 1 commit
  23. 01 Jul, 2024 1 commit
  24. 30 Jun, 2024 1 commit
  25. 25 Jun, 2024 1 commit
  26. 19 Jun, 2024 1 commit
  27. 18 Jun, 2024 1 commit
  28. 17 Jun, 2024 1 commit
  29. 16 Jun, 2024 1 commit
  30. 15 Jun, 2024 1 commit
  31. 13 Jun, 2024 2 commits
  32. 12 Jun, 2024 1 commit
    • Cody Yu's avatar
      [Kernel] Vectorized FP8 quantize kernel (#5396) · 5985e342
      Cody Yu authored
      Inspired by #5146, this PR improves FP8 quantize kernel by vectorizing data transfer to better utilize memory bandwidth. Microbenchmark shows that this improved kernel can achieve 1.0x-1.5x speedup (especially when hidden size is large).
      
      In details, we applied 3 optimizations:
      
      - Use inverted scale so that most divisions are changed to multiplications.
      - Unroll the loop by 4 times to improve ILP.
      - Use vectorized 4 to transfer data between HBM and SRAM.
      5985e342