@@ -151,7 +151,7 @@ steps:
151151 exit 0
152152 fi
153153
154- - label : " lora tests for JAX + vLLM models single chip"
154+ - label : " lora e2e tests for JAX + vLLM models single chip"
155155 key : test_10
156156 soft_fail : true
157157 agents :
@@ -160,8 +160,7 @@ steps:
160160 - |
161161 if [[ "$$NIGHTLY" == "1" ]]; then
162162 .buildkite/scripts/run_in_docker.sh \
163- bash -c 'MODEL_IMPL_TYPE=vllm TPU_BACKEND_TYPE=jax python3 -m pytest -s -v -x /workspace/tpu_inference/tests/lora/test_lora.py && \
164- python3 -m pytest -s -v -x /workspace/tpu_inference/tests/lora/test_bgmv.py'
163+ bash -c 'MODEL_IMPL_TYPE=vllm TPU_BACKEND_TYPE=jax python3 -m pytest -s -v -x /workspace/tpu_inference/tests/lora/test_lora.py'
165164 else
166165 echo "Skipping: NIGHTLY environment variable not set"
167166 exit 0
@@ -203,7 +202,7 @@ steps:
203202 exit 0
204203 fi
205204
206- - label : " lora tests for JAX + vLLM models multi chips"
205+ - label : " lora e2e tests for JAX + vLLM models multi chips"
207206 key : test_13
208207 soft_fail : true
209208 env :
@@ -233,6 +232,29 @@ steps:
233232 .buildkite/scripts/run_in_docker.sh \
234233 bash -c 'python3 -m pytest -s -v -x /workspace/tpu_inference/tests/e2e/test_data_parallel.py'
235234
235+ - label : " lora unit tests on single chip"
236+ key : test_15
237+ soft_fail : true
238+ agents :
239+ queue : tpu_v6e_queue
240+ commands :
241+ - |
242+ .buildkite/scripts/run_in_docker.sh \
243+ bash -c ' python3 -m pytest -s -v -x /workspace/tpu_inference/tests/lora/test_bgmv.py && \
244+ python3 -m pytest -s -v -x /workspace/tpu_inference/tests/lora/test_layers.py'
245+
246+ - label : " lora unit tests on multi chips"
247+ key : test_16
248+ soft_fail : true
249+ env :
250+ USE_V6E8_QUEUE : " True"
251+ VLLM_LOG_LEVEL : " INFO"
252+ agents :
253+ queue : tpu_v6e_8_queue
254+ commands :
255+ - |
256+ .buildkite/scripts/run_in_docker.sh \
257+ bash -c 'python3 -m pytest -s -v -x /workspace/tpu_inference/tests/lora/test_layers.py'
236258 # -----------------------------------------------------------------
237259 # NOTIFICATION STEP
238260 # -----------------------------------------------------------------
@@ -253,9 +275,11 @@ steps:
253275 - test_12
254276 - test_13
255277 - test_14
278+ - test_15
279+ - test_16
256280 agents :
257281 queue : cpu
258282 commands :
259283 - |
260284 .buildkite/scripts/check_results.sh \
261- "TPU JAX Tests Failed" test_0 test_1 test_2 test_3 test_4 test_5 test_6 test_7 test_8 test_9 test_10 test_11 test_12 test_13
285+ "TPU JAX Tests Failed" test_0 test_1 test_2 test_3 test_4 test_5 test_6 test_7 test_8 test_9 test_10 test_11 test_12 test_13 test_14 test_15 test_16
0 commit comments