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

expand benchmark to h100's #371

Merged
merged 2 commits into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/nm-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ on:
required: true

# benchmark related parameters
benchmark_label:
description: "requested benchmark label (specifies instance)"
benchmark_labels:
description: "stringified Json array of benchmark labels"
type: string
default: ""
required: true
benchmark_config_list_file:
description: "benchmark configs file, e.g. 'nm_benchmark_nightly_configs_list.txt'"
type: string
Expand Down Expand Up @@ -136,9 +136,12 @@ jobs:
BENCHMARK:
needs: [BUILD]
if: success()
strategy:
matrix:
benchmark_label: ${{ fromJson(inputs.benchmark_labels) }}
uses: ./.github/workflows/nm-benchmark.yml
with:
label: ${{ inputs.benchmark_label }}
label: ${{ matrix.benchmark_label }}
benchmark_config_list_file: ${{ inputs.benchmark_config_list_file }}
timeout: ${{ inputs.benchmark_timeout }}
gitref: ${{ github.ref }}
Expand Down Expand Up @@ -173,7 +176,7 @@ jobs:

# update docker
DOCKER:
needs: [BUILD, UPLOAD]
needs: [TEST, BENCHMARK, LM-EVAL]
andy-neuma marked this conversation as resolved.
Show resolved Hide resolved
if: ${{ inputs.wf_category != 'REMOTE' }}
uses: ./.github/workflows/publish-docker.yml
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nm-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
{"python":"3.11.4","label":"gcp-k8s-l4-solo","test":"neuralmagic/tests/test_skip_env_vars/full.txt"}]'
test_timeout: 480

benchmark_label: gcp-k8s-l4-solo
benchmark_labels: '["gcp-k8s-l4-solo", "k8s-h100-solo"]'
benchmark_config_list_file: ./.github/data/nm_benchmark_base_config_list.txt
benchmark_timeout: 480
push_benchmark_results_to_gh_pages: "${{ github.event_name == 'schedule' || inputs.push_benchmark_results_to_gh_pages }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nm-remote-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
{"python":"3.11.4","label":"gcp-k8s-l4-solo","test":"neuralmagic/tests/test_skip_env_vars/smoke.txt"}]'
test_timeout: 480

benchmark_label: gcp-k8s-l4-solo
benchmark_labels: '["gcp-k8s-l4-solo", "k8s-h100-solo"]'
benchmark_config_list_file: ./.github/data/nm_benchmark_base_config_list.txt
benchmark_timeout: 480

Expand Down
Loading