Skip to content

Commit

Permalink
#14519: Fix test script now that pytest params changed
Browse files Browse the repository at this point in the history
  • Loading branch information
cglagovichTT committed Nov 8, 2024
1 parent f3fd898 commit eeb98f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion models/demos/llama3/demo/simple_vision_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def create_multimodal_model(mesh_device, max_batch_size, max_seq_len, dtype=ttnn
@pytest.mark.parametrize(
"enable_trace",
(False, True),
ids=["no_trace", "trace"],
ids=["no_trace", "yes_trace"],
)
@pytest.mark.parametrize("device_params", [{"trace_region_size": 14951424, "num_command_queues": 2}], indirect=True)
def test_llama_multimodal_demo_text(
Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/t3000/run_t3000_demo_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ run_t3000_llama3_vision_tests() {
pip install -r models/demos/llama3/requirements.txt

for fake_device in "$n300" "$t3k"; do
FAKE_DEVICE=$fake_device LLAMA_DIR=$llama11b WH_ARCH_YAML=$wh_arch_yaml pytest -n auto models/demos/llama3/demo/multimodal_demo_chat.py -k "tt and 1" --timeout 600; fail+=$?
FAKE_DEVICE=$fake_device LLAMA_DIR=$llama11b WH_ARCH_YAML=$wh_arch_yaml pytest -n auto models/demos/llama3/demo/multimodal_demo_chat.py -k "tt" --timeout 600; fail+=$?
echo "LOG_METAL: Llama3 vision tests for $fake_device completed"
done

Expand Down

0 comments on commit eeb98f0

Please sign in to comment.