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

andy-neuma triggered nightly on refs/heads/main #54

andy-neuma triggered nightly on refs/heads/main

andy-neuma triggered nightly on refs/heads/main #54

Workflow file for this run

name: Nightly
run-name: ${{ github.actor }} triggered nightly on ${{ github.ref }}
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 1 * * *'
workflow_dispatch:
inputs:
push_benchmark_results_to_gh_pages:
description: "When set to true, the workflow pushes all benchmarking results to gh-pages UI "
type: choice
options:
- 'true'
- 'false'
default: 'false'
jobs:
NIGHTLY-MULTI:
uses: ./.github/workflows/build-test.yml
with:
build_label: aws-avx2-192G-4-a10g-96G
timeout: 240
gitref: ${{ github.ref }}
Gi_per_thread: 4
nvcc_threads: 8
python: 3.10.12
test_skip_list:
secrets: inherit
NIGHTLY-SOLO:
uses: ./.github/workflows/build-test.yml
with:
build_label: aws-avx2-32G-a10g-24G
timeout: 300
gitref: ${{ github.ref }}
Gi_per_thread: 12
nvcc_threads: 1
python: 3.11.4
test_skip_list:
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
# single gpu
AWS-AVX2-32G-A10G-24G-Accuracy:
uses: ./.github/workflows/nm-lm-eval-accuracy.yml
with:
label: aws-avx2-32G-a10g-24G
timeout: 60
gitref: '${{ github.ref }}'
Gi_per_thread: 12
nvcc_threads: 1
python: "3.10.12"
secrets: inherit