From 765f56d46717cbf9c9ef961605114899d58c8ef8 Mon Sep 17 00:00:00 2001 From: andy-neuma Date: Tue, 23 Apr 2024 17:35:17 -0400 Subject: [PATCH] clean up some cruft --- .github/workflows/nightly.yml | 50 +++++++++++++++---------------- .github/workflows/remote-push.yml | 30 ------------------- 2 files changed, 25 insertions(+), 55 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index ce65e0cb75762..11a058c733536 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -54,29 +54,29 @@ jobs: test_skip_list: neuralmagic/tests/skip-almost-all.txt secrets: inherit - # # single gpu - # AWS-AVX2-32G-A10G-24G-Benchmark: - # uses: ./.github/workflows/nm-benchmark.yml - # with: - # label: aws-avx2-32G-a10g-24G - # benchmark_config_list_file: ./.github/data/nm_benchmark_nightly_configs_list.txt - # timeout: 720 - # gitref: '${{ github.ref }}' - # Gi_per_thread: 12 - # nvcc_threads: 1 - # python: "3.10.12" - # # Always push if it is a scheduled job - # push_benchmark_results_to_gh_pages: "${{ github.event_name == 'schedule' || inputs.push_benchmark_results_to_gh_pages }}" - # secrets: inherit + BENCHMARK: + needs: [BUILD] + if: success() + uses: ./.github/workflows/nm-benchmark.yml + with: + label: aws-avx2-32G-a10g-24G + benchmark_config_list_file: ./.github/data/nm_benchmark_nightly_configs_list.txt + timeout: 720 + gitref: '${{ github.ref }}' + python: 3.10.12 + # Always push if it is a scheduled job + push_benchmark_results_to_gh_pages: "${{ github.event_name == 'schedule' || inputs.push_benchmark_results_to_gh_pages }}" + secrets: inherit - # # single gpu - # Accuracy-Smoke-AWS-AVX2-32G-A10G-24G: - # uses: ./.github/workflows/nm-lm-eval-smoke.yml - # with: - # label: aws-avx2-32G-a10g-24G - # timeout: 240 - # gitref: '${{ github.ref }}' - # Gi_per_thread: 12 - # nvcc_threads: 1 - # python: "3.10.12" - # secrets: inherit + # TODO: decide if this should build or use the whl + # single gpu + Accuracy-Smoke-AWS-AVX2-32G-A10G-24G: + uses: ./.github/workflows/nm-lm-eval-smoke.yml + with: + label: aws-avx2-32G-a10g-24G + timeout: 240 + gitref: '${{ github.ref }}' + Gi_per_thread: 12 + nvcc_threads: 1 + python: "3.10.12" + secrets: inherit diff --git a/.github/workflows/remote-push.yml b/.github/workflows/remote-push.yml index 6cce1e23ae9f8..0bbcd8fd106f7 100644 --- a/.github/workflows/remote-push.yml +++ b/.github/workflows/remote-push.yml @@ -47,33 +47,3 @@ jobs: python: 3.10.12 push_benchmark_results_to_gh_pages: "false" secrets: inherit - - # # multi-gpu - # BUILD-TEST: - # strategy: - # matrix: - # python: [3.10.12] - # uses: ./.github/workflows/build-test.yml - # with: - # build_label: gcp-build-static - # timeout: 240 - # gitref: '${{ github.ref }}' - # Gi_per_thread: 1 - # nvcc_threads: 4 - # python: ${{ matrix.python }} - # test_skip_list: neuralmagic/tests/skip-for-remote-push.txt - # secrets: inherit - - # # Benchmarks - # AWS-AVX2-32G-A10G-24G-Benchmark: - # uses: ./.github/workflows/nm-benchmark.yml - # with: - # label: aws-avx2-32G-a10g-24G - # benchmark_config_list_file: ./.github/data/nm_benchmark_remote_push_configs_list.txt - # timeout: 180 - # gitref: '${{ github.ref }}' - # Gi_per_thread: 1 - # nvcc_threads: 4 - # python: 3.10.12 - # push_benchmark_results_to_gh_pages: "false" - # secrets: inherit