-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into jvega/tiny_tiles_all_gather
- Loading branch information
Showing
106 changed files
with
2,999 additions
and
1,296 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,11 @@ name: "[internal] T3000 demo tests impl" | |
|
||
on: | ||
workflow_call: | ||
inputs: | ||
extra-tag: | ||
required: false | ||
type: string | ||
default: "in-service" | ||
|
||
jobs: | ||
t3000-demo-tests: | ||
|
@@ -23,7 +28,11 @@ jobs: | |
ARCH_NAME: ${{ matrix.test-group.arch }} | ||
LOGURU_LEVEL: INFO | ||
LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib | ||
runs-on: ["arch-wormhole_b0", "config-t3000", "in-service", "pipeline-perf"] | ||
runs-on: | ||
- arch-wormhole_b0 | ||
- config-t3000 | ||
- pipeline-perf | ||
- ${{ inputs.extra-tag }} | ||
steps: | ||
- uses: tenstorrent-metal/metal-workflows/.github/actions/[email protected] | ||
- name: Enable performance mode | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,11 @@ name: "[internal] T3000 frequent tests impl" | |
|
||
on: | ||
workflow_call: | ||
inputs: | ||
extra-tag: | ||
required: false | ||
type: string | ||
default: "in-service" | ||
|
||
jobs: | ||
t3000-frequent-tests: | ||
|
@@ -27,7 +32,11 @@ jobs: | |
ARCH_NAME: ${{ matrix.test-group.arch }} | ||
LOGURU_LEVEL: INFO | ||
LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib | ||
runs-on: ["arch-wormhole_b0", "config-t3000", "in-service", "pipeline-functional"] | ||
runs-on: | ||
- arch-wormhole_b0 | ||
- config-t3000 | ||
- pipeline-functional | ||
- ${{ inputs.extra-tag }} | ||
steps: | ||
- uses: tenstorrent-metal/metal-workflows/.github/actions/[email protected] | ||
- uses: ./.github/actions/ensure-active-weka-mount | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,11 @@ name: "[internal] T3000 model perf tests impl" | |
|
||
on: | ||
workflow_call: | ||
inputs: | ||
extra-tag: | ||
required: false | ||
type: string | ||
default: "in-service" | ||
|
||
jobs: | ||
|
||
|
@@ -25,7 +30,11 @@ jobs: | |
ARCH_NAME: ${{ matrix.test-group.arch }} | ||
LOGURU_LEVEL: INFO | ||
LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib | ||
runs-on: ["arch-wormhole_b0", "config-t3000", "in-service", "pipeline-perf"] | ||
runs-on: | ||
- arch-wormhole_b0 | ||
- config-t3000 | ||
- pipeline-perf | ||
- ${{ inputs.extra-tag }} | ||
steps: | ||
- uses: tenstorrent-metal/metal-workflows/.github/actions/[email protected] | ||
- name: Enable performance mode | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,11 @@ name: "[internal] T3000 nightly tests impl" | |
|
||
on: | ||
workflow_call: | ||
inputs: | ||
extra-tag: | ||
required: false | ||
type: string | ||
default: "in-service" | ||
|
||
jobs: | ||
t3000-nightly-tests: | ||
|
@@ -18,7 +23,11 @@ jobs: | |
ARCH_NAME: ${{ matrix.test-group.arch }} | ||
LOGURU_LEVEL: INFO | ||
LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib | ||
runs-on: ["arch-wormhole_b0", "config-t3000", "in-service", "pipeline-functional"] | ||
runs-on: | ||
- arch-wormhole_b0 | ||
- config-t3000 | ||
- pipeline-functional | ||
- ${{ inputs.extra-tag }} | ||
steps: | ||
- uses: tenstorrent-metal/metal-workflows/.github/actions/[email protected] | ||
- name: Set up dynamic env vars for build | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,11 @@ name: "[internal] T3000 unit tests impl" | |
|
||
on: | ||
workflow_call: | ||
inputs: | ||
extra-tag: | ||
required: false | ||
type: string | ||
default: "in-service" | ||
|
||
jobs: | ||
t3000-unit-tests: | ||
|
@@ -28,7 +33,11 @@ jobs: | |
ARCH_NAME: ${{ matrix.test-group.arch }} | ||
LOGURU_LEVEL: INFO | ||
LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib | ||
runs-on: ["arch-wormhole_b0", "config-t3000", "in-service", "pipeline-functional"] | ||
runs-on: | ||
- arch-wormhole_b0 | ||
- config-t3000 | ||
- pipeline-functional | ||
- ${{ inputs.extra-tag }} | ||
steps: | ||
- uses: tenstorrent-metal/metal-workflows/.github/actions/[email protected] | ||
- name: Set up dynamic env vars for build | ||
|
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
Oops, something went wrong.