ishaan-jaff / llmperf

LLMPerf is a library for validating and benchmarking LLMs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

llmperf

LLMPerf is a tool for benchmarking and validating the performance of LLMs.

Benchmarking: LLMPerf measures time to first token (TTFT), inter-token latency (ITL) and requests that take longer than 3 seconds to start returning data.

Validation: we send a simple query to the LLM and ensure the returned data is valid. In particular it checks for inter-request cross-over (request A gets the responses for request B).

Variation in input and output token lengths is a design parameter since this is intended to be representative. This is because there are some optimizations (e.g. continuous batching) that we know work better with varying input and output length.

Supported endpoints

Currently supported endpoints include:

  • Any OpenAI compatible endpoints, including Anyscale Endpoints, Anyscale Private Endpoints, OpenAI, Fireworks, Perplexity etc
  • Together
  • Vertex AI
  • SageMaker

Please see requirements.txt for more details on dependency requirements.

Upcoming refactor

This is prototype code. We are currently refactoring the code to be more extensible (including a pluggable endpoints, varying traffic load etc).

In addition we plan to:

  • Make running the benchmark not only possible from command line, but also possible to integrate easily into CI/CD or job scheduling systems.
  • Control where the generated files and information go.
  • Automate report generation.

We expect this refactor to be complete some time in November 2023.

A note on rate limits

Many LLM providers have extremely low rate limits by default (e.g. Perplexity 3 requests per 90 seconds).

You can use the sleep parameter to overcome these difficulties, but it does affect the representativeness of the results.

Other systems do not have rate limits, but we consider that if the TTFT exceeds 3 second for more than 5% of queries that the system is overloaded.

Default values

Default values are the ones that we use for testing Anyscale Endpoints. The distribution of inputs and outputs roughly mirrors the input and output patterns we see there.

We recommend setting the seed (or using the provided seed) to reduce variance but still have randomization.

Do a python llmperf.py --help to see all options.

Usage

  1. Provide API base and key in .env file. Check out env_sample.txt
  2. Test out Anyscale Endpoint with following command by sending 20 requests
    python llmperf.py -r 20 -m "meta-llama/Llama-2-70b-chat-hf"
  3. Control input token numbers by setting min/max lines, and control output token number by setting req-lines and max_tokens
    python llmperf.py -r 20 -f openai -m "gpt-3.5-turbo" --min-lines 8 --max-lines 10
    python llmperf.py -r 20 -f openai -m "gpt-3.5-turbo" --req-lines 3 --max-tokens 128
  4. Control sleep between rounds to avoid hitting rate limit
    python llmperf.py -r 20 -f fireworks -m "accounts/fireworks/models/llama-v2-70b-chat" --sleep 10
  5. Output will be saved at framework-timestamp.json and framework-timestamp_raw.json
  6. Use Jupyter with analyze-raw.ipynb to visualize and/or interact with the raw data.

About

LLMPerf is a library for validating and benchmarking LLMs

License:Apache License 2.0


Languages

Language:Jupyter Notebook 78.7%Language:Python 21.3%