From 4512b9f490357b8b5647ae98ba89474ec6a6a0a9 Mon Sep 17 00:00:00 2001 From: umadevimcw Date: Fri, 20 Dec 2024 05:14:31 +0000 Subject: [PATCH] #15857: Skip abs forge for GS --- .../sweep_framework/sweeps/eltwise/unary/abs/abs_forge.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/sweep_framework/sweeps/eltwise/unary/abs/abs_forge.py b/tests/sweep_framework/sweeps/eltwise/unary/abs/abs_forge.py index 993a2b29782..14b14191ca3 100644 --- a/tests/sweep_framework/sweeps/eltwise/unary/abs/abs_forge.py +++ b/tests/sweep_framework/sweeps/eltwise/unary/abs/abs_forge.py @@ -37,6 +37,14 @@ } +def mesh_device_fixture(): + device = ttnn.open_device(device_id=0) + assert ttnn.device.is_wormhole_b0(device), "This op is available for Wormhole_B0 only" + yield (device, "Wormhole_B0") + ttnn.close_device(device) + del device + + # Invalidate vector is called during the generation phase where each vector will be passed in. # If invalidated, the vector will still be stored but will be skipped. # Returns False, None if the vector is valid, and True, str with a reason for invalidation if it is invalid.