Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
updated skip lists to skip spec decode
Browse files Browse the repository at this point in the history
  • Loading branch information
robertgshaw2-neuralmagic committed May 13, 2024
1 parent 9a9c899 commit 1c359ae
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/run-tests
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ fi
echo "..."
for EXCLUDE in "${TESTS_TO_EXCLUDE[@]}"; do
for JJ in "${!TESTS_FOUND[@]}"; do
if [[ ${TESTS_FOUND[$JJ]} = {EXCLUDE} ]]; then
if [[ ${TESTS_FOUND[$JJ]} = ${EXCLUDE} ]]; then
echo "excluding: ${EXCLUDE}"
unset 'TESTS_FOUND[$JJ]'
fi
Expand Down
1 change: 1 addition & 0 deletions neuralmagic/tests/skip-for-nightly.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ tests/spec_decode/test_utils.py
tests/spec_decode/test_multi_step_worker.py
tests/spec_decode/test_spec_decode_worker.py
tests/spec_decode/test_batch_expansion.py
tests/spec_decode/test_metrics.py
tests/spec_decode/test_ngram_worker.py
tests/spec_decode/e2e/test_logprobs.py
tests/spec_decode/e2e/test_ngram_correctness.py
Expand Down
1 change: 1 addition & 0 deletions neuralmagic/tests/skip-for-release.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ tests/spec_decode/test_utils.py
tests/spec_decode/test_multi_step_worker.py
tests/spec_decode/test_spec_decode_worker.py
tests/spec_decode/test_batch_expansion.py
tests/spec_decode/test_metrics.py
tests/spec_decode/test_ngram_worker.py
tests/spec_decode/e2e/test_logprobs.py
tests/spec_decode/e2e/test_ngram_correctness.py
Expand Down
1 change: 1 addition & 0 deletions neuralmagic/tests/skip-for-remote-push.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ tests/spec_decode/test_utils.py
tests/spec_decode/test_multi_step_worker.py
tests/spec_decode/test_spec_decode_worker.py
tests/spec_decode/test_batch_expansion.py
tests/spec_decode/test_metrics.py
tests/spec_decode/test_ngram_worker.py
tests/spec_decode/e2e/test_logprobs.py
tests/spec_decode/e2e/test_ngram_correctness.py
Expand Down
1 change: 1 addition & 0 deletions neuralmagic/tests/skip-for-weekly.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ tests/spec_decode/test_utils.py
tests/spec_decode/test_multi_step_worker.py
tests/spec_decode/test_spec_decode_worker.py
tests/spec_decode/test_batch_expansion.py
tests/spec_decode/test_metrics.py
tests/spec_decode/test_ngram_worker.py
tests/spec_decode/e2e/test_logprobs.py
tests/spec_decode/e2e/test_ngram_correctness.py
Expand Down

1 comment on commit 1c359ae

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bigger_is_better

Benchmark suite Current: 1c359ae Previous: df1f1a0 Ratio
{"name": "request_throughput", "description": "VLLM Engine throughput - synthetic\nmodel - NousResearch/Llama-2-7b-chat-hf\nmax_model_len - 4096\nbenchmark_throughput {\n \"use-all-available-gpus_\": \"\",\n \"input-len\": 256,\n \"output-len\": 128,\n \"num-prompts\": 1000\n}", "gpu_description": "NVIDIA A10G x 1", "vllm_version": "0.2.0", "python_version": "3.10.12 (main, May 10 2024, 13:42:25) [GCC 9.4.0]", "torch_version": "2.3.0+cu121"} 3.834722011280784 prompts/s
{"name": "token_throughput", "description": "VLLM Engine throughput - synthetic\nmodel - NousResearch/Llama-2-7b-chat-hf\nmax_model_len - 4096\nbenchmark_throughput {\n \"use-all-available-gpus_\": \"\",\n \"input-len\": 256,\n \"output-len\": 128,\n \"num-prompts\": 1000\n}", "gpu_description": "NVIDIA A10G x 1", "vllm_version": "0.2.0", "python_version": "3.10.12 (main, May 10 2024, 13:42:25) [GCC 9.4.0]", "torch_version": "2.3.0+cu121"} 1472.5332523318211 tokens/s

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.