Skip to content

abhibambhaniya/GenZ-LLM-Analyzer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GenZ

Generative LLM Analyzer

Overview

GenZ to designed to simply the relationship between the hardware platform used for serving Large Language Models(LLMs) and inference serving metrics like latency and memory.

Running an LLM on hardware has three key component.

  • Model : The LLM model architecture and corresponding parameters like number of layers, layer dimension etc.
  • Usecase : Size of the Input queries, expected size of output query, and number of parallel beams generated.
  • Optimization : There are various different optimizations that can be used to improve the LLM performance on a given hardware platform.
    • Quantization (Reducing the data precision)
    • Batching (Batching multiple similar sized queries to improve the throughput)
    • Parallelization ( Choosing specific parallelization strategies can help improve the performance of the LLM).
    • Operator Fusion ( FlashAttention/FLAT are techniques used to fuse multiple kernels together to speedup certain kernels.)

Given the specified LLM, Hardware Platform(GPU/CPU/Accelerator), data type, and parallelism configurations, genz can generate the latency and memory usage estimations.

GenZ can help answer various system-level choice-making questions, including,

  • how should the deployment platform change for LLM use cases for Q/A chatbots for customer services agents versus legal document summarization in attorney's offices?
  • how can the platform configurations be tweaked to maintain the same level of performance when deploying LLaMA2-70B instead of LLaMA2-7B?
  • What will be the performance compromise if we do not change the serving platform?

GenZ can help computer architects understand trends which can help in designing the next generation of AI platforms by navigating the interplay between various HW characteristics and LLM inference performance based on models and compute demand.

  • if each node's total HBM bandwidth increases/decreases by 10%, what would the impact on inference latency be?
  • By how much should the chip-to-chip communication network be improved?

Installation

git clone abhibambhaniya/genz.git
cd genz
pip install -r requirements.txt

Examples

Refere to notebook/LLM_inference_perf.ipynb and notebook/LLM_memory_analysis.ipynb to get familiar with the setup.

Parallelism Scheme

GenZ supports Tensor Parallelism (TP), Pipeline Parallelism (PP) accross large platforms with multiple NPUs.

Communication

Tensor Parallelism requires ring allreduce. Pipeline Parallelism requires a single hop node-to-node message passing.

Data Types

Data types are expressed with the number of bits, We have the following data types are modeled for now.

Data Type Bits
FP32 32
BF16 16
INT8/FP8 8
INT4/FP4 4
INT2 2

TODOs

Check the TODOs below for what's next and stay tuned! Any contributions or feedback are highly welcome!

  • Add Expert parallelism and Sequence parallelism
  • Support LoRA
  • Add different kind of quantization for weights/KV/activations.

Citation

If you use GenZ in your work, please cite:

@misc{bambhaniya2024demystifying,
      title={Demystifying Platform Requirements for Diverse LLM Inference Use Cases}, 
      author={Abhimanyu Bambhaniya and Ritik Raj and Geonhwa Jeong and Souvik Kundu and Sudarshan Srinivasan and Midhilesh Elavazhagan and Madhu Kumar and Tushar Krishna},
      year={2024},
      eprint={2406.01698},
      archivePrefix={arXiv},
      primaryClass={cs.AR}
}

About

LLM Inference analyzer for different hardware platforms

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published