Skip to content

Commit

Permalink
#0: make invalid test condition (OoM) less conservative based on sweeps
Browse files Browse the repository at this point in the history
  • Loading branch information
tt-snijjar committed Oct 3, 2024
1 parent 2717601 commit 77c1a07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ttnn/unit_tests/operations/test_all_gather.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def is_unsupported_case(input_shape, dim, mem_config, num_devices, num_links, in
for i in input_shape:
tensor_size_bytes *= i
num_l1_banks = 64
if mem_config.buffer_type == ttnn.BufferType.L1 and tensor_size_bytes > num_l1_banks * 50 * 1024:
if mem_config.buffer_type == ttnn.BufferType.L1 and tensor_size_bytes > (num_l1_banks * 256 * 1024):
return True, "L1 buffer can't support large tensor sizes"

# Check that each chip has a non-zero amount of data available
Expand Down

0 comments on commit 77c1a07

Please sign in to comment.