Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#0: Disable and file issues for flaky nightly fast dispatch tests and rename pipeline #15947

Merged
merged 2 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/_produce-data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ on:
- "(Single-card) Demo tests"
- "(Single-card) Tests for new models"
- "Nightly fast dispatch tests"
- "(Single-card) Nightly model and ttnn tests"
- "(Single-card) Tests for new models"
- "(T3K) T3000 demo tests"
- "(T3K) T3000 model perf tests"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,6 @@ jobs:
cmd: tests/scripts/single_card/nightly/run_ttnn.sh,
timeout: 70
},
{
name: "WH N300 pgm dispatch nightly",
arch: wormhole_b0,
runs-on: ["cloud-virtual-machine", "N300", "in-service"],
cmd: ./tests/tt_metal/tt_metal/perf_microbenchmark/dispatch/compare_pgm_dispatch_perf_ci.sh,
timeout: 10
},
{
name: "GS-only models",
arch: grayskull,
Expand Down Expand Up @@ -151,18 +144,19 @@ jobs:
test-config:
- model: "stable_diffusion"
cmd: pytest --timeout 900 -n auto tests/nightly/single_card/stable_diffusion
- model: "mamba 1"
cmd: pytest --timeout 900 -n auto tests/nightly/single_card/mamba --splits 6 --group 1
- model: "mamba 2"
cmd: pytest --timeout 900 -n auto tests/nightly/single_card/mamba --splits 6 --group 2
- model: "mamba 3"
cmd: pytest --timeout 900 -n auto tests/nightly/single_card/mamba --splits 6 --group 3
- model: "mamba 4"
cmd: pytest --timeout 900 -n auto tests/nightly/single_card/mamba --splits 6 --group 4
# Skipping due to issue #15932
# - model: "mamba 1"
# cmd: pytest --timeout 900 -n auto tests/nightly/single_card/mamba --splits 6 --group 1
# - model: "mamba 2"
# cmd: pytest --timeout 900 -n auto tests/nightly/single_card/mamba --splits 6 --group 2
# - model: "mamba 3"
# cmd: pytest --timeout 900 -n auto tests/nightly/single_card/mamba --splits 6 --group 3
# - model: "mamba 4"
# cmd: pytest --timeout 900 -n auto tests/nightly/single_card/mamba --splits 6 --group 4
- model: "mamba 5"
cmd: pytest --timeout 900 -n auto tests/nightly/single_card/mamba --splits 6 --group 5
- model: "mamba 6"
cmd: pytest --timeout 900 -n auto tests/nightly/single_card/mamba --splits 6 --group 6
# - model: "mamba 6"
# cmd: pytest --timeout 900 -n auto tests/nightly/single_card/mamba --splits 6 --group 6
card: [N150, N300]
name: "[Unstable] Nightly ${{ matrix.card }} ${{ matrix.test-config.model }}"
env:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Nightly fast dispatch tests
name: "(Single-card) Nightly model and ttnn tests"

on:
workflow_dispatch:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ def unsqueeze_all_params_to_4d(params):
(2, 4, 64, 64),
],
)
@pytest.mark.skip(reason="#15931: Failing, skip for now")
def test_unet_2d_condition_model_512x512(device, batch_size, in_channels, input_height, input_width):
device.enable_program_cache()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
@pytest.mark.parametrize("res_hidden_states_tuple", [([2, 1280, 8, 8], [2, 1280, 8, 8], [2, 1280, 8, 8])])
@pytest.mark.parametrize("hidden_states", [[2, 1280, 8, 8]])
@pytest.mark.parametrize("temb", [[1, 1, 2, 1280]])
@pytest.mark.skip(reason="#15931: Fails, need to investigate")
def test_upblock_512x512(reset_seeds, device, res_hidden_states_tuple, hidden_states, temb):
# TODO
# setup pytorch model
Expand Down