Skip to content

#5044: Adding support for optional output tensors #261

#5044: Adding support for optional output tensors

#5044: Adding support for optional output tensors #261

name: "[post-commit] all - Fast dispatch multi queue single device post-commit main build and unit tests"
on:
workflow_dispatch:
push:
branches: ["main"]
workflow_call:
jobs:
build-and-unit-tests-fast-dispatch:
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: ["grayskull"]},
]
env:
TT_METAL_ENV: ${{ vars.TT_METAL_ENV }}
ARCH_NAME: ${{ matrix.runner-info.arch }}
environment: dev
runs-on: ${{ matrix.runner-info.runs-on }}
steps:
- uses: tenstorrent-metal/metal-workflows/.github/actions/checkout-with-submodule-lfs@main
- name: Set up dyanmic env vars for build
run: |
echo "TT_METAL_HOME=$(pwd)" >> $GITHUB_ENV
- name: Build tt-metal and libs
run: make build
- name: Build tt-metal CPP tests
run: make tests
- name: Run pre/post regression tests
timeout-minutes: 5
run: |
source build/python_env/bin/activate
./tests/scripts/run_tests.sh --tt-arch $ARCH_NAME --pipeline-type post_commit --dispatch-mode fast-multi-queue-single-device