Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
tapspatel committed Aug 27, 2024
1 parent 543386c commit c3ec676
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,27 +214,22 @@ jobs:
-DTT_RUNTIME_ENABLE_PERF_TRACE=${{ matrix.build.enable_perf }} \
-DTTMLIR_ENABLE_STABLEHLO=ON \
- name: Download n150 system descriptor
uses: actions/download-artifact@v4
with:
name: system-desc-n150

- name: Download n300 system descriptor
uses: actions/download-artifact@v4
with:
name: system-desc-n300

- name: (Host) Run tests
shell: bash
run: |
source env/activate
cmake --build build -- check-ttmlir
- name: Download n150 system descriptor
uses: actions/download-artifact@v4
with:
name: system-desc-n150

- name: (n150) Run tests
shell: bash
run: |
source env/activate
export SYSTEM_DESC_PATH="${GITHUB_WORKSPACE}/system-desc-n150.ttsys"
export SYSTEM_DESC_PATH="${GITHUB_WORKSPACE}/system_desc.ttsys"
cmake --build build -- check-ttmlir
- name: (n150) Upload test artifacts
Expand All @@ -243,11 +238,16 @@ jobs:
name: n150/Silicon
path: build/test/ttmlir/Silicon

- name: Download n300 system descriptor
uses: actions/download-artifact@v4
with:
name: system-desc-n300

- name: (n300) Run tests
shell: bash
run: |
source env/activate
export SYSTEM_DESC_PATH="${GITHUB_WORKSPACE}/system-desc-n300.ttsys"
export SYSTEM_DESC_PATH="${GITHUB_WORKSPACE}/system_desc.ttsys"
cmake --build build -- check-ttmlir
- name: (n300) Upload test artifacts
Expand Down

0 comments on commit c3ec676

Please sign in to comment.