|
| 1 | +group: CPU |
| 2 | +depends_on: [] |
| 3 | +steps: |
| 4 | +- label: CPU-Kernel Tests |
| 5 | + depends_on: [] |
| 6 | + device: intel_cpu |
| 7 | + no_plugin: true |
| 8 | + source_file_dependencies: |
| 9 | + - csrc/cpu/ |
| 10 | + - cmake/cpu_extension.cmake |
| 11 | + - CMakeLists.txt |
| 12 | + - vllm/_custom_ops.py |
| 13 | + - tests/kernels/attention/test_cpu_attn.py |
| 14 | + - tests/kernels/moe/test_cpu_fused_moe.py |
| 15 | + - tests/kernels/moe/test_cpu_quant_fused_moe.py |
| 16 | + - tests/kernels/test_onednn.py |
| 17 | + - tests/kernels/test_awq_int4_to_int8.py |
| 18 | + - tests/kernels/quantization/test_cpu_fp8_scaled_mm.py |
| 19 | + commands: |
| 20 | + - | |
| 21 | + bash .buildkite/scripts/hardware_ci/run-cpu-test.sh 30m " |
| 22 | + pytest -x -v -s tests/kernels/attention/test_cpu_attn.py |
| 23 | + pytest -x -v -s tests/kernels/moe/test_cpu_fused_moe.py |
| 24 | + pytest -x -v -s tests/kernels/moe/test_cpu_quant_fused_moe.py |
| 25 | + pytest -x -v -s tests/kernels/test_onednn.py |
| 26 | + pytest -x -v -s tests/kernels/test_awq_int4_to_int8.py |
| 27 | + pytest -x -v -s tests/kernels/quantization/test_cpu_fp8_scaled_mm.py" |
| 28 | +
|
| 29 | +- label: CPU-Compatibility Tests |
| 30 | + depends_on: [] |
| 31 | + device: intel_cpu |
| 32 | + no_plugin: true |
| 33 | + source_file_dependencies: |
| 34 | + - cmake/cpu_extension.cmake |
| 35 | + - setup.py |
| 36 | + - vllm/platforms/cpu.py |
| 37 | + commands: |
| 38 | + - | |
| 39 | + bash .buildkite/scripts/hardware_ci/run-cpu-test.sh 20m " |
| 40 | + bash .buildkite/scripts/hardware_ci/run-cpu-compatibility-test.sh" |
| 41 | +
|
| 42 | +- label: CPU-Language Generation and Pooling Model Tests |
| 43 | + depends_on: [] |
| 44 | + device: intel_cpu |
| 45 | + no_plugin: true |
| 46 | + source_file_dependencies: |
| 47 | + - csrc/cpu/ |
| 48 | + - vllm/ |
| 49 | + - tests/models/language/generation/ |
| 50 | + - tests/models/language/pooling/ |
| 51 | + commands: |
| 52 | + - | |
| 53 | + bash .buildkite/scripts/hardware_ci/run-cpu-test.sh 40m " |
| 54 | + pytest -x -v -s tests/models/language/generation -m cpu_model |
| 55 | + pytest -x -v -s tests/models/language/pooling -m cpu_model" |
| 56 | +
|
| 57 | +- label: CPU-ModelRunnerV2 Tests |
| 58 | + depends_on: [] |
| 59 | + device: intel_cpu |
| 60 | + no_plugin: true |
| 61 | + soft_fail: true |
| 62 | + source_file_dependencies: |
| 63 | + - vllm/v1/worker/cpu/ |
| 64 | + - vllm/v1/worker/gpu/ |
| 65 | + - vllm/v1/sample/ops/topk_topp_triton.py |
| 66 | + - vllm/v1/sample/ops/topk_topp_sampler.py |
| 67 | + - tests/v1/sample/test_topk_topp_sampler.py |
| 68 | + commands: |
| 69 | + - | |
| 70 | + bash .buildkite/scripts/hardware_ci/run-cpu-test.sh 45m " |
| 71 | + uv pip install git+https://github.com/triton-lang/triton-cpu.git@270e696d |
| 72 | + VLLM_USE_V2_MODEL_RUNNER=1 pytest -x -v -s tests/models/language/generation/test_granite.py -m cpu_model |
| 73 | + # TODO: move to CPU-Kernel Tests once triton-cpu has a pre-built wheel |
| 74 | + pytest -x -v -s tests/v1/sample/test_topk_topp_sampler.py::TestTritonTopkTopp" |
| 75 | +
|
| 76 | +- label: CPU-Quantization Model Tests |
| 77 | + depends_on: [] |
| 78 | + device: intel_cpu |
| 79 | + no_plugin: true |
| 80 | + source_file_dependencies: |
| 81 | + - csrc/cpu/ |
| 82 | + - vllm/model_executor/layers/quantization/auto_gptq.py |
| 83 | + - vllm/model_executor/layers/quantization/compressed_tensors/schemes/compressed_tensors_w8a8_int8.py |
| 84 | + - vllm/model_executor/kernels/linear/mixed_precision/cpu.py |
| 85 | + - vllm/model_executor/kernels/linear/scaled_mm/cpu.py |
| 86 | + - vllm/model_executor/layers/fused_moe/experts/cpu_moe.py |
| 87 | + - tests/quantization/test_compressed_tensors.py |
| 88 | + - tests/quantization/test_cpu_wna16.py |
| 89 | + commands: |
| 90 | + - | |
| 91 | + bash .buildkite/scripts/hardware_ci/run-cpu-test.sh 30m " |
| 92 | + pytest -x -v -s tests/quantization/test_compressed_tensors.py::test_compressed_tensors_w8a8_logprobs |
| 93 | + pytest -x -v -s tests/quantization/test_cpu_wna16.py" |
| 94 | + |
| 95 | +- label: CPU-Distributed Tests (PP+TP) |
| 96 | + depends_on: [] |
| 97 | + device: intel_cpu |
| 98 | + no_plugin: true |
| 99 | + source_file_dependencies: &cpu_distributed_deps |
| 100 | + - csrc/cpu/shm.cpp |
| 101 | + - vllm/v1/worker/cpu_worker.py |
| 102 | + - vllm/v1/worker/gpu_worker.py |
| 103 | + - vllm/v1/worker/cpu_model_runner.py |
| 104 | + - vllm/v1/worker/gpu_model_runner.py |
| 105 | + - vllm/platforms/cpu.py |
| 106 | + - vllm/distributed/parallel_state.py |
| 107 | + - vllm/distributed/device_communicators/cpu_communicator.py |
| 108 | + - .buildkite/scripts/hardware_ci/run-cpu-distributed-smoke-test.sh |
| 109 | + commands: |
| 110 | + - | |
| 111 | + bash .buildkite/scripts/hardware_ci/run-cpu-test.sh 10m " |
| 112 | + bash .buildkite/scripts/hardware_ci/run-cpu-distributed-smoke-test.sh tp_pp" |
| 113 | +
|
| 114 | +- label: CPU-Distributed Tests (DP+TP) |
| 115 | + depends_on: [] |
| 116 | + device: intel_cpu |
| 117 | + no_plugin: true |
| 118 | + source_file_dependencies: *cpu_distributed_deps |
| 119 | + commands: |
| 120 | + - | |
| 121 | + bash .buildkite/scripts/hardware_ci/run-cpu-test.sh 10m " |
| 122 | + bash .buildkite/scripts/hardware_ci/run-cpu-distributed-smoke-test.sh dp_tp" |
| 123 | +
|
| 124 | +- label: CPU-Multi-Modal Model Tests %N |
| 125 | + depends_on: [] |
| 126 | + device: intel_cpu |
| 127 | + no_plugin: true |
| 128 | + source_file_dependencies: |
| 129 | + # - vllm/ |
| 130 | + - vllm/model_executor/layers/rotary_embedding |
| 131 | + - tests/models/multimodal/generation/ |
| 132 | + commands: |
| 133 | + - | |
| 134 | + bash .buildkite/scripts/hardware_ci/run-cpu-test.sh 45m " |
| 135 | + pytest -x -v -s tests/models/multimodal/generation --ignore=tests/models/multimodal/generation/test_pixtral.py -m cpu_model --num-shards=$$BUILDKITE_PARALLEL_JOB_COUNT --shard-id=$$BUILDKITE_PARALLEL_JOB" |
| 136 | + parallelism: 3 |
| 137 | + |
| 138 | +- label: "Arm CPU Test" |
| 139 | + depends_on: [] |
| 140 | + soft_fail: false |
| 141 | + device: arm_cpu |
| 142 | + no_plugin: true |
| 143 | + commands: |
| 144 | + - bash .buildkite/scripts/hardware_ci/run-cpu-test-arm.sh |
0 commit comments