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

Add xfail to resnet and llama mlp #709

Merged
merged 1 commit into from
Nov 14, 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 forge/test/mlir/llama/tests/test_llama_mlp.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@


@pytest.mark.parametrize("model_path", ["openlm-research/open_llama_3b", "meta-llama/Llama-3.2-1B"])
@pytest.mark.xfail()
@pytest.mark.push
def test_llama_mlp(model_path):
if model_path == "meta-llama/Llama-3.2-1B":
Expand Down
3 changes: 3 additions & 0 deletions forge/test/mlir/resnet/test_resnet_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@


@pytest.mark.push
@pytest.mark.xfail(
reason=" Metal issue: Can only tilize bfloat16 tensors. tracked on: https://github.com/tenstorrent/tt-metal/issues/14570"
)
def test_resnet_inference():
# Compiler configurations
compiler_cfg = forge.config._get_global_compiler_config()
Expand Down
Loading