Skip to content

Commit

Permalink
download artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-neuma committed Apr 18, 2024
1 parent 2054c1a commit a5745bc
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/nm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,21 @@ jobs:
with:
python: ${{ inputs.python }}
venv: UPLOAD

- name: download whl
id: whl-download
uses: actions/download-artifact@v4
with:
name: ${{ inputs.whl }}
path: downloads/${{ inputs.whl }}

- name: download whl
id: tarfile-download
uses: actions/download-artifact@v4
with:
name: ${{ inputs.tarfile }}
path: downloads/${{ inputs.tarfile }}

- name: take a look
run: |
ls -alhr downloads

1 comment on commit a5745bc

@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: a5745bc Previous: e07da81 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, Mar 7 2024, 18:39:53) [GCC 9.4.0]", "torch_version": "2.2.1+cu121"} 3.8007681175052284 prompts/s 3.8035522685850456 prompts/s 1.00
{"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, Mar 7 2024, 18:39:53) [GCC 9.4.0]", "torch_version": "2.2.1+cu121"} 1459.4949571220077 tokens/s 1460.5640711366575 tokens/s 1.00

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

Please sign in to comment.