From 72e354de912562ef5d66a11f350d049886881608 Mon Sep 17 00:00:00 2001 From: Joseph Chu Date: Tue, 1 Oct 2024 19:34:39 +0000 Subject: [PATCH] #0: fix CCL nightly and frequent test reqression suites --- conftest.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/conftest.py b/conftest.py index 968145d6f71..8ce28b82872 100644 --- a/conftest.py +++ b/conftest.py @@ -229,13 +229,13 @@ def pcie_mesh_device(request, silicon_arch_name, silicon_arch_wormhole_b0, devic except (ValueError, AttributeError): num_pcie_devices_requested = len(device_ids) + if num_pcie_devices_requested != 4: + pytest.skip("Only 4 PCIe devices are supported for testing") + request.node.pci_ids = device_ids[:num_pcie_devices_requested] mesh_device = ttnn.open_mesh_device( - ttnn.MeshShape(1, num_pcie_devices_requested), - dispatch_core_type=get_dispatch_core_type(), - **device_params, - physical_device_ids=device_ids[:num_pcie_devices_requested], + ttnn.MeshShape(2, 2), dispatch_core_type=get_dispatch_core_type(), **device_params, offset=(0, 1) ) logger.debug(f"multidevice with {mesh_device.get_num_devices()} devices is created") @@ -278,6 +278,7 @@ def t3k_mesh_device(request, silicon_arch_name, silicon_arch_wormhole_b0, device if ttnn.get_num_devices() < 8: pytest.skip() + request.node.pci_ids = ttnn.get_pcie_device_ids() mesh_device = ttnn.open_mesh_device( ttnn.MeshShape(2, 4), dispatch_core_type=get_dispatch_core_type(),