GithubHelp home page GithubHelp logo

Comments (2)

robertgshaw2-neuralmagic avatar robertgshaw2-neuralmagic commented on June 4, 2024 2

APC improves TPOT because there is less overhead on the system from processing prefills.

vllm has a central LLMEngine, which runs a step each timestep. A step can be either a prefill or a decode. So a good mental model for vllm is that it is running decodes for all active requests constantly with "pauses" to process prefills from new requests to add them to the batch.

As a result, TPOT = n_tokens_generated * time_per_decode_step + n_prefills_processed * time_per_prefill_step

Since APC reduces time_per_prefill_step TPOT is reduced. Additionally, APC indirectly reduces (a) n_prefills_processed and time_per_decode_step because it reduces E2E latency and therefore (a) there are on average less prefills to process while a specific request is running and (b) the average batch size is lower.

from vllm.

wjj19950828 avatar wjj19950828 commented on June 4, 2024

APC improves TPOT because there is less overhead on the system from processing prefills.

vllm has a central LLMEngine, which runs a step each timestep. A step can be either a prefill or a decode. So a good mental model for vllm is that it is running decodes for all active requests constantly with "pauses" to process prefills from new requests to add them to the batch.

As a result, TPOT = n_tokens_generated * time_per_decode_step + n_prefills_processed * time_per_prefill_step

Since APC reduces time_per_prefill_step TPOT is reduced. Additionally, APC indirectly reduces (a) n_prefills_processed and tie_per_decode_step because it reduces E2E latency and therefore (a) there are on average less prefills to process while a specific request is running and (b) the average batch size is lower.

@robertgshaw2-neuralmagic Thank you for your reply~

But through nsys analysis, I saw that in the decoding stage, only the page attention kernel has reduced time consumption, and other kernels are close. Is this reasonable? Why?

kernel name:
void vllm::paged_attention_v1_kernel<unsigned short, unsigned short, (int)128, (int)16, (int)128, (bool)0>(T1 *, const T1 *, const T2 *, const T2 *, int, float, const int *, const int *, int, const float *, int, int, int, float)

with APC vs without APC time cost:
252.511 us vs 382.047 us
13b model , 300 input_len / 20 output_len, bs 100 in A100 TP1

from vllm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.