metal - Run microbenchmarks #1031
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: ["E150", "pipeline-perf", "bare-metal", "in-service"]}, | |
# Do not run N150 on microbenchmarks for now as we do not have the machines for it | |
# {arch: wormhole_b0, runs-on: ["pipeline-perf", "N150", "bare-metal", "in-service"]}, | |
# N300 | |
{arch: wormhole_b0, runs-on: ["N300", "pipeline-perf", "bare-metal", "in-service"]}, | |
] | |
env: | |
TT_METAL_ENV: ${{ vars.TT_METAL_ENV }} | |
# Use BM for microbenchmarks | |
ARCH_NAME: ${{ matrix.runner-info.arch }} | |
LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib | |
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: | | |
./build_metal.sh --enable-profiler --build-programming-examples --build-tests | |
./create_venv.sh | |
- 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 |