diff --git a/tests/scripts/run_python_model_tests.sh b/tests/scripts/run_python_model_tests.sh index e3e6674a633..09aca8be769 100755 --- a/tests/scripts/run_python_model_tests.sh +++ b/tests/scripts/run_python_model_tests.sh @@ -52,9 +52,10 @@ run_python_model_tests_wormhole_b0() { # Llama3.2-11B (#Skip: Weights too big for single-chip ci VM) llama11b=/mnt/MLPerf/tt_dnn-models/llama/Llama3.2-11B-Vision-Instruct/ + # FIXME Issue #14474 # Run all Llama3 tests for 8B, 1B, and 3B weights - dummy weights with tight PCC check - for llama_dir in "$llama8b" "$llama1b" "$llama3b"; do - LLAMA_DIR=$llama_dir WH_ARCH_YAML=wormhole_b0_80_arch_eth_dispatch.yaml pytest -n auto models/demos/llama3/tests/test_llama_model.py -k "quick" ; fail+=$? - echo "LOG_METAL: Llama3 tests for $llama_dir completed" - done + # for llama_dir in "$llama8b" "$llama1b" "$llama3b"; do + # LLAMA_DIR=$llama_dir WH_ARCH_YAML=wormhole_b0_80_arch_eth_dispatch.yaml pytest -n auto models/demos/llama3/tests/test_llama_model.py -k "quick" ; fail+=$? + # echo "LOG_METAL: Llama3 tests for $llama_dir completed" + # done }