Skip to content

Commit

Permalink
#16720: adjust pcc for max test on GS
Browse files Browse the repository at this point in the history
  • Loading branch information
bbradelTT committed Jan 23, 2025
1 parent 39995c9 commit 0360a5e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/ttnn/unit_tests/operations/test_max.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import ttnn
from tests.ttnn.utils_for_testing import assert_with_pcc
from models.utility_functions import torch_random
from models.utility_functions import torch_random, is_grayskull


@pytest.mark.parametrize("batch_size", [1, 16, 1, 16])
Expand Down Expand Up @@ -129,4 +129,5 @@ def test_max_dim(device, input_shape_and_dim, keepdim):

output_tensor = ttnn.to_torch(output_tensor)

assert_with_pcc(torch_output_tensor, output_tensor)
pcc = 0.999 if is_grayskull() else 0.9999
assert_with_pcc(torch_output_tensor, output_tensor, pcc=pcc)

0 comments on commit 0360a5e

Please sign in to comment.