GenZ is designed to simplify the relationship between the hardware platform used for serving Large Language Models(LLMs) and inference serving metrics like latency and memory.
Project description
GenZ
Generative LLM Analyzer
Try GenZ without any setup: GenZ-LLM-Analyzer
- Overview
- Installation
- Example
- Parallelism Scheme
- Communication
- Data Types
- TODOs
- Citation
- Useful Links
Overview
GenZ to designed to simplify 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
pip install genz-llm
or
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 paper, 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}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file genz_llm-0.0.14.1.tar.gz
.
File metadata
- Download URL: genz_llm-0.0.14.1.tar.gz
- Upload date:
- Size: 39.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07ba5f10a7b5049f8b6a407ac4a438ac26986e09020aff7b416bacd5b2110a8b |
|
MD5 | 923251879ddbc983d5a3016ce80f52e3 |
|
BLAKE2b-256 | 4ea72989485b52fdedd400f85489c11e968b7328dd90b8376c9446edbd1ae7e3 |
File details
Details for the file genz_llm-0.0.14.1-py3-none-any.whl
.
File metadata
- Download URL: genz_llm-0.0.14.1-py3-none-any.whl
- Upload date:
- Size: 47.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16501f6325614d9d02d705ff9b56908f75c04686519d594d18ff67b7ed9529b9 |
|
MD5 | 616ce6f28700efc5e9d5277941fe1cae |
|
BLAKE2b-256 | 340d3833093da6d4b4493af0149459d6c7b40bd71238353a5a6071a77225b40b |