-
-
Notifications
You must be signed in to change notification settings - Fork 11.8k
[CI/Build][Intel] Enable performance benchmarks for Intel Gaudi 3 #26919
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
jikunshang
merged 11 commits into
vllm-project:main
from
jakub-sochacki:gaudi-benchmarks
Oct 30, 2025
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
0574518
Enable performance benchmarks for Intel Gaudi 3 - configs
jakub-sochacki 83ec344
Enable performance benchmarks for Intel Gaudi 3 - docker
jakub-sochacki c320833
fix dataset path patameter
jakub-sochacki d7b69de
Use VLLM_CONTIGUOUS_PA
jakub-sochacki 3765741
Use last stable vllm for vllm-gaudi main
jakub-sochacki 1fae646
change vllm path
jakub-sochacki 24cca5b
fix requirements installation in HPU dockerfile
jakub-sochacki a032581
refactor: clean up hl-smi command in kill_gpu_processes
jakub-sochacki 5ee4aae
remove hpu dockerfile
jakub-sochacki 135458f
Remove Dockerfile.hpu - using vllm-gaudi Dockerfile instead
jakub-sochacki 0501ebc
Merge branch 'main' into gaudi-benchmarks
jakub-sochacki File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
.buildkite/performance-benchmarks/tests/latency-tests-hpu.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| [ | ||
| { | ||
| "test_name": "latency_llama8B_tp1", | ||
| "environment_variables": { | ||
| "PT_HPU_LAZY_MODE": 1, | ||
| "VLLM_CONTIGUOUS_PA": 1, | ||
| "VLLM_DEFRAG": 1 | ||
| }, | ||
| "parameters": { | ||
| "model": "meta-llama/Meta-Llama-3.1-8B-Instruct", | ||
| "tensor_parallel_size": 1, | ||
| "load_format": "dummy", | ||
| "num-iters-warmup": 5, | ||
| "num-iters": 15, | ||
| "max-model-len": 256, | ||
| "async-scheduling": "" | ||
| } | ||
| }, | ||
| { | ||
| "test_name": "latency_llama70B_tp4", | ||
| "environment_variables": { | ||
| "PT_HPU_LAZY_MODE": 1, | ||
| "PT_HPU_ENABLE_LAZY_COLLECTIVES": 1, | ||
| "VLLM_CONTIGUOUS_PA": 1, | ||
| "VLLM_DEFRAG": 1 | ||
| }, | ||
| "parameters": { | ||
| "model": "meta-llama/Meta-Llama-3.1-70B-Instruct", | ||
| "tensor_parallel_size": 4, | ||
| "load_format": "dummy", | ||
| "num-iters-warmup": 5, | ||
| "num-iters": 15, | ||
| "max-model-len": 256, | ||
| "async-scheduling": "" | ||
| } | ||
| }, | ||
| { | ||
| "test_name": "latency_mixtral8x7B_tp2", | ||
| "environment_variables": { | ||
| "PT_HPU_LAZY_MODE": 1, | ||
| "PT_HPU_ENABLE_LAZY_COLLECTIVES": 1, | ||
| "VLLM_CONTIGUOUS_PA": 1, | ||
| "VLLM_DEFRAG": 1 | ||
| }, | ||
| "parameters": { | ||
| "model": "mistralai/Mixtral-8x7B-Instruct-v0.1", | ||
| "tensor_parallel_size": 2, | ||
| "load_format": "dummy", | ||
| "num-iters-warmup": 5, | ||
| "num-iters": 15, | ||
| "max-model-len": 256, | ||
| "async-scheduling": "" | ||
| } | ||
| } | ||
| ] |
82 changes: 82 additions & 0 deletions
82
.buildkite/performance-benchmarks/tests/serving-tests-hpu.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,82 @@ | ||
| [ | ||
| { | ||
| "test_name": "serving_llama8B_tp1_sharegpt", | ||
| "qps_list": [1, 4, 16, "inf"], | ||
| "server_environment_variables": { | ||
| "PT_HPU_LAZY_MODE": 1, | ||
| "VLLM_CONTIGUOUS_PA": 1, | ||
| "VLLM_DEFRAG": 1 | ||
| }, | ||
| "server_parameters": { | ||
| "model": "meta-llama/Meta-Llama-3.1-8B-Instruct", | ||
| "tensor_parallel_size": 1, | ||
| "swap_space": 16, | ||
| "disable_log_stats": "", | ||
| "load_format": "dummy", | ||
| "max-model-len": 2048, | ||
| "max-num-seqs": 256, | ||
| "async-scheduling": "" | ||
| }, | ||
| "client_parameters": { | ||
| "model": "meta-llama/Meta-Llama-3.1-8B-Instruct", | ||
| "backend": "vllm", | ||
| "dataset_name": "sharegpt", | ||
| "dataset_path": "./ShareGPT_V3_unfiltered_cleaned_split.json", | ||
| "num_prompts": 200 | ||
| } | ||
| }, | ||
| { | ||
| "test_name": "serving_llama70B_tp4_sharegpt", | ||
| "qps_list": [1, 4, 16, "inf"], | ||
| "server_environment_variables": { | ||
| "PT_HPU_LAZY_MODE": 1, | ||
| "PT_HPU_ENABLE_LAZY_COLLECTIVES": 1, | ||
| "VLLM_CONTIGUOUS_PA": 1, | ||
| "VLLM_DEFRAG": 1 | ||
| }, | ||
| "server_parameters": { | ||
| "model": "meta-llama/Meta-Llama-3.1-70B-Instruct", | ||
| "tensor_parallel_size": 4, | ||
| "swap_space": 16, | ||
| "disable_log_stats": "", | ||
| "load_format": "dummy", | ||
| "max-model-len": 2048, | ||
| "max-num-seqs": 256, | ||
| "async-scheduling": "" | ||
| }, | ||
| "client_parameters": { | ||
| "model": "meta-llama/Meta-Llama-3.1-70B-Instruct", | ||
| "backend": "vllm", | ||
| "dataset_name": "sharegpt", | ||
| "dataset_path": "./ShareGPT_V3_unfiltered_cleaned_split.json", | ||
| "num_prompts": 200 | ||
| } | ||
| }, | ||
| { | ||
| "test_name": "serving_mixtral8x7B_tp2_sharegpt", | ||
| "qps_list": [1, 4, 16, "inf"], | ||
| "server_environment_variables": { | ||
| "PT_HPU_LAZY_MODE": 1, | ||
| "PT_HPU_ENABLE_LAZY_COLLECTIVES": 1, | ||
| "VLLM_CONTIGUOUS_PA": 1, | ||
| "VLLM_DEFRAG": 1 | ||
| }, | ||
| "server_parameters": { | ||
| "model": "mistralai/Mixtral-8x7B-Instruct-v0.1", | ||
| "tensor_parallel_size": 2, | ||
| "swap_space": 16, | ||
| "disable_log_stats": "", | ||
| "load_format": "dummy", | ||
| "max-model-len": 2048, | ||
| "max-num-seqs": 256, | ||
| "async-scheduling": "" | ||
| }, | ||
| "client_parameters": { | ||
| "model": "mistralai/Mixtral-8x7B-Instruct-v0.1", | ||
| "backend": "vllm", | ||
| "dataset_name": "sharegpt", | ||
| "dataset_path": "./ShareGPT_V3_unfiltered_cleaned_split.json", | ||
| "num_prompts": 200 | ||
| } | ||
| } | ||
| ] |
61 changes: 61 additions & 0 deletions
61
.buildkite/performance-benchmarks/tests/throughput-tests-hpu.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| [ | ||
| { | ||
| "test_name": "throughput_llama8B_tp1", | ||
| "environment_variables": { | ||
| "PT_HPU_LAZY_MODE": 1, | ||
| "VLLM_CONTIGUOUS_PA": 1, | ||
| "VLLM_DEFRAG": 1 | ||
| }, | ||
| "parameters": { | ||
| "model": "meta-llama/Meta-Llama-3.1-8B-Instruct", | ||
| "tensor_parallel_size": 1, | ||
| "load_format": "dummy", | ||
| "dataset_path": "./ShareGPT_V3_unfiltered_cleaned_split.json", | ||
| "num_prompts": 1000, | ||
| "backend": "vllm", | ||
| "max-model-len": 2048, | ||
| "max-num-seqs": 512, | ||
| "async-scheduling": "" | ||
| } | ||
| }, | ||
| { | ||
| "test_name": "throughput_llama70B_tp4", | ||
| "environment_variables": { | ||
| "PT_HPU_LAZY_MODE": 1, | ||
| "PT_HPU_ENABLE_LAZY_COLLECTIVES": 1, | ||
| "VLLM_CONTIGUOUS_PA": 1, | ||
| "VLLM_DEFRAG": 1 | ||
| }, | ||
| "parameters": { | ||
| "model": "meta-llama/Meta-Llama-3.1-70B-Instruct", | ||
| "tensor_parallel_size": 4, | ||
| "load_format": "dummy", | ||
| "dataset_path": "./ShareGPT_V3_unfiltered_cleaned_split.json", | ||
| "num_prompts": 1000, | ||
| "backend": "vllm", | ||
| "max-model-len": 2048, | ||
| "max-num-seqs": 512, | ||
| "async-scheduling": "" | ||
| } | ||
| }, | ||
| { | ||
| "test_name": "throughput_mixtral8x7B_tp2", | ||
| "environment_variables": { | ||
| "PT_HPU_LAZY_MODE": 1, | ||
| "PT_HPU_ENABLE_LAZY_COLLECTIVES": 1, | ||
| "VLLM_CONTIGUOUS_PA": 1, | ||
| "VLLM_DEFRAG": 1 | ||
| }, | ||
| "parameters": { | ||
| "model": "mistralai/Mixtral-8x7B-Instruct-v0.1", | ||
| "tensor_parallel_size": 2, | ||
| "load_format": "dummy", | ||
| "dataset_path": "./ShareGPT_V3_unfiltered_cleaned_split.json", | ||
| "num_prompts": 1000, | ||
| "backend": "vllm", | ||
| "max-model-len": 2048, | ||
| "max-num-seqs": 512, | ||
| "async-scheduling": "" | ||
| } | ||
| } | ||
| ] |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.