"...entrypoints/openai/completion/test_prompt_validation.py" did not exist on "f0a1c8453ad1c664c8a04c83fe545195fcd556eb"
  1. 01 Jun, 2024 2 commits
  2. 31 May, 2024 2 commits
  3. 30 May, 2024 1 commit
  4. 28 May, 2024 1 commit
  5. 27 May, 2024 3 commits
  6. 25 May, 2024 1 commit
  7. 24 May, 2024 1 commit
  8. 23 May, 2024 3 commits
  9. 22 May, 2024 3 commits
  10. 21 May, 2024 2 commits
  11. 20 May, 2024 3 commits
  12. 19 May, 2024 2 commits
  13. 18 May, 2024 1 commit
  14. 17 May, 2024 2 commits
  15. 16 May, 2024 4 commits
  16. 15 May, 2024 1 commit
    • SangBin Cho's avatar
      [Core][2/N] Model runner refactoring part 2. Combine prepare prefill / decode... · 65bf2ac1
      SangBin Cho authored
      [Core][2/N] Model runner refactoring part 2. Combine prepare prefill / decode to a single API (#4681)
      
      This PR combines prepare_prompt and prepare_decode into a single API. This PR also coelsce the attn metadata for prefill/decode to a single class and allow to slice them when running attn backend.
      
      It also refactors subquery_start_loc which was not refactored in the previous PR
      65bf2ac1
  17. 13 May, 2024 4 commits
  18. 12 May, 2024 1 commit
  19. 11 May, 2024 1 commit
  20. 10 May, 2024 1 commit
    • SangBin Cho's avatar
      [Core] Fix circular reference which leaked llm instance in local dev env (#4737) · 6a0f6172
      SangBin Cho authored
      Storing exception frame is extremely prone to circular refernece because it contains the reference to objects.
      
      When tensorizer is not installed, it leaks llm instance because error frame has references to various modules which cause circular reference problem.
      
      I also found spec decoding has a circular reference issue, and I solved it using weakref.proxy.
      6a0f6172
  21. 09 May, 2024 1 commit
    • Philipp Moritz's avatar
      [Kernel] [FP8] Improve FP8 linear layer performance (#4691) · 379da6dc
      Philipp Moritz authored
      This PR improves the FP8 performance of linear layers, which had been lacking before (#4118 (comment) and #4118 (comment)).
      
      We noticed that CUBLASLt can find a better algorithm if the first dimension of the matrix is greater than 16. So this PR enlarges matrices appropriately during quantization. This improves FP8 performance and removes the performance regression vs. FP16, in many cases exceeding FP16 performance.
      
      Here are benchmarks on llama3 70b (ITL numbers for 1000 input and 50 output tokens at fixed qps and at TP 4), all FP8 measurements are for dynamic quantization:
      
      qps = 1: 24 ms (FP8, this PR), 32 ms (FP8, previous main), 26 ms (FP16)
      qps = 2: 26 ms (FP8, this PR), 34ms (FP8, previous main), 28 ms (FP16) 
      qps = 4: 33 ms (FP8, this PR), 44 ms (FP8, previous main), 36 ms (FP16)
      qps = 6: 46 ms (FP8, this PR), 56 ms (FP8, previous main), 54 ms (FP16)
      qps = 8: 85 ms (FP8, this PR), 85 ms (FP8, previous main), 138 ms (FP16)
      379da6dc