Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 31 additions & 1 deletion tests/full_tests/ci_gsm8k_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -325,12 +325,42 @@ run_pd_disaggregate_nixl_libfabric_test() {
}

run_pd_disaggregate_nixl_ucx_test() {
echo "➡ Testing PD disaggregate through NIXL UCX."
echo "➡ Testing PD disaggregate through NIXL UCX."
WHEELS_CACHE_HOME=/workspace/hf_cache/wheels_cache_ucx python "${VLLM_GAUDI_PREFIX}/install_nixl.py"
cd ${VLLM_GAUDI_PREFIX}/tests/unit_tests; DECODER_TP_SIZE=1 NIXL_BUFFER_DEVICE=hpu VLLM_NIXL_BACKEND=UCX bash run_accuracy_test.sh
echo "✅ PD disaggregate through NIXL UCX."
}

# run pd lmcache store and retrieve test
run_pd_lmcache_store_retrieve_test() {
echo "➡ Testing LMCache PD test for store and retrieve"
git clone https://github.com/LMCache/LMCache.git /tmp/LMCache
cd /tmp/LMCache
git fetch origin pull/1066/head
git checkout FETCH_HEAD
NO_CUDA_EXT=1 BUILD_WITH_HPU=1 pip install -e .
cd /workspace/vllm-gaudi/examples/lmcache
python kv_cache_sharing_lmcache_v1.py
echo "✅ LMCache PD 1x test for store and retrieve"
python kv_cache_sharing_lmcache_v1_tp2.py
echo "✅ LMCache PD 2x test for store and retrieve"
}

# run pd lmcache disaggregated test
run_pd_lmcache_disaggregated_test() {
echo "➡ Testing LMCache disaggregated test"
git clone https://github.com/LMCache/LMCache.git /tmp/LMCache
cd /tmp/LMCache
git fetch origin pull/1066/head
git checkout FETCH_HEAD
NO_CUDA_EXT=1 BUILD_WITH_HPU=1 pip install -e .
cd /workspace/vllm-gaudi/examples/lmcache/disagg_prefill_lmcache_v1
bash disagg_example_gaudi_lm.sh
echo "✅ LMCache disaggregated test"
bash disagg_example_gaudi_lm_tp2.sh
echo "✅ LMCache disaggregated test 2x"
}

# sleep mode
run_sleep_mode_test() {
echo "Testing basic model with sleep mode / wake up functionality"
Expand Down
Loading