Skip to content

Commit

Permalink
#15857: Skip abs forge for GS
Browse files Browse the repository at this point in the history
  • Loading branch information
umadevimcw committed Dec 20, 2024
1 parent 2edaca7 commit 4512b9f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/sweep_framework/sweeps/eltwise/unary/abs/abs_forge.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 4512b9f

Please sign in to comment.