From 6bb524b9087bda050bf9ab5db90e81a837bb2f76 Mon Sep 17 00:00:00 2001 From: Stefan Gligorijevic <189116645+sgligorijevicTT@users.noreply.github.com> Date: Thu, 23 Jan 2025 13:36:00 +0100 Subject: [PATCH] Skip llama test to fix CI OOM (#185) Fixes #186 --- .../jax/models/llama/openllama_3b_v2/test_openllama_3b_v2.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/jax/models/llama/openllama_3b_v2/test_openllama_3b_v2.py b/tests/jax/models/llama/openllama_3b_v2/test_openllama_3b_v2.py index 30d01081..877ecff2 100644 --- a/tests/jax/models/llama/openllama_3b_v2/test_openllama_3b_v2.py +++ b/tests/jax/models/llama/openllama_3b_v2/test_openllama_3b_v2.py @@ -26,7 +26,10 @@ def training_tester() -> LLamaTester: # ----- Tests ----- -@pytest.mark.xfail(reason="failed to legalize operation 'stablehlo.reduce'") +# @pytest.mark.xfail(reason="failed to legalize operation 'stablehlo.reduce'") +@pytest.mark.skip( + reason="OOMs in CI (https://github.com/tenstorrent/tt-xla/issues/186)" +) def test_openllama3b_inference( inference_tester: LLamaTester, ):