metal - Run microbenchmarks #598
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "metal - Run microbenchmarks" | |
on: | |
schedule: | |
- cron: "0 1,15 * * *" | |
workflow_dispatch: | |
workflow_call: | |
jobs: | |
run-microbenchmarks: | |
strategy: | |
# Do not fail-fast because we need to ensure all tests go to completion | |
# so we try not to get hanging machines | |
fail-fast: false | |
matrix: | |
runner-info: [ | |
{arch: grayskull, runs-on: ["perf-grayskull", "self-reset"]}, | |
# Do not run N150 on microbenchmarks for now as we do not have the machines for it | |
# {arch: wormhole_b0, runs-on: ["perf-wormhole_b0", "multi-chip-num-pcie-1", "multi-chip-num-chips-1", "self-reset"]}, | |
# N300 | |
{arch: wormhole_b0, runs-on: ["perf-wormhole_b0", "multi-chip-num-pcie-1", "multi-chip-num-chips-2", "self-reset"]}, | |
] | |
env: | |
TT_METAL_ENV: ${{ vars.TT_METAL_ENV }} | |
# Use BM for microbenchmarks | |
ARCH_NAME: ${{ matrix.runner-info.arch }} | |
environment: dev | |
runs-on: ${{ matrix.runner-info.runs-on }} | |
steps: | |
- uses: tenstorrent-metal/metal-workflows/.github/actions/[email protected] | |
- name: Set up dynamic env vars for build | |
run: | | |
echo "TT_METAL_HOME=$(pwd)" >> $GITHUB_ENV | |
- name: Build tt-metal and libs | |
run: ./scripts/build_scripts/build_with_profiler_opt.sh | |
- name: Build tests | |
run: cmake --build build --target tests -- -j`nproc` | |
- name: Run microbenchmark tests | |
timeout-minutes: 90 | |
run: ./tests/scripts/run_tests.sh --tt-arch $ARCH_NAME --pipeline-type microbenchmarks | |
- name: Upload microbenchmark report csvs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: microbenchmark-report-csv-${{ matrix.runner-info.arch }} | |
path: generated/profiler/.logs |