Add RANK_WAIT_TIME into DeepSpeed-AutoTP to avoid CPU memory OOM (#11704)

* DeepSpeed-AutoTP will start multiple processors to load models and convert them in CPU memory. If model/rank_num is large, this will lead to OOM. Add RANK_WAIT_TIME to reduce memory usage by controlling model reading parallelism.
This commit is contained in:
Qiyuan Gong 2024-08-01 18:16:21 +08:00 committed by GitHub
parent 8ef4caaf5d
commit 762ad49362
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View file

@ -87,3 +87,4 @@ bash run_mistral_7b_instruct_flex_2_card.sh
### Known Issue
- In our example scripts, tcmalloc is enabled through `export LD_PRELOAD=${LD_PRELOAD}:${CONDA_PREFIX}/lib/libtcmalloc.so:${LD_PRELOAD}` which speed up inference, but this may raise `munmap_chunk(): invalid pointer` error after finishing inference.
- CPU memory OOM during model covert. In this example, multiple processors will loading models into memory at the same time. If model size/rank_num is very large, it will lead to OOM. Please `export RANK_WAIT_TIME=xxx`. `xxx` is sleep time in seconds. You can increase `RANK_WAIT_TIME` to avoid using too much memory.

View file

@ -66,6 +66,11 @@ if __name__ == '__main__':
# Convert to deepspeed model and apply IPEX-LLM optimization on CPU to decrease GPU memory usage
current_accel = CPU_Accelerator()
set_accelerator(current_accel)
# Avoid OOM caused by parallel loading models into CPU memory
# Please increase RANK_WAIT_TIME to avoid using too much memory.
rank_wait_time = os.environ.get("RANK_WAIT_TIME", 0)
if rank_wait_time != 0:
time.sleep(local_rank * rank_wait_time)
model = AutoModelForCausalLM.from_pretrained(args.repo_id_or_model_path,
device_map={"": "cpu"},
low_cpu_mem_usage=True,