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

varun-sundar-rabindranath triggered nightly on refs/heads/varun/gh-pages-action-setup #11

varun-sundar-rabindranath triggered nightly on refs/heads/varun/gh-pages-action-setup

varun-sundar-rabindranath triggered nightly on refs/heads/varun/gh-pages-action-setup #11

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 0 * * *'
workflow_dispatch:
inputs:
push_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:
# multi-gpu
AWS-AVX2-192G-4-A10G-96G:
uses: ./.github/workflows/nm-benchmark.yml
with:
label: aws-avx2-192G-4-a10g-96G
benchmark_config_list_file: ./.github/data/nm_benchmark_configs_list.txt
timeout: 240
gitref: '${{ github.ref }}'
Gi_per_thread: 4
python: "3.10.12"
# Always push if it is a scheduled job
push_results_to_gh_pages: "${{ github.event_name == 'schedule' || inputs.push_results_to_gh_pages }}"
secrets: inherit
# single gpu
AWS-AVX2-32G-A10G-24G:
uses: ./.github/workflows/nm-benchmark.yml
with:
label: aws-avx2-32G-a10g-24G
benchmark_config_list_file: ./.github/data/nm_benchmark_configs_list.txt
timeout: 240
gitref: '${{ github.ref }}'
Gi_per_thread: 12
python: "3.10.12"
# Always push if it is a scheduled job
push_results_to_gh_pages: "${{ github.event_name == 'schedule' || inputs.push_results_to_gh_pages }}"
secrets: inherit