Skip to content

Commit

Permalink
#0: Bump grayskull device performance for vgg and distilbert because …
Browse files Browse the repository at this point in the history
…someone updated WH but not GS
  • Loading branch information
tt-rkim committed Nov 23, 2024
1 parent 9d5fc52 commit ca368f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion models/demos/distilbert/tests/test_perf_distilbert.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def test_distilbert_perf_device(batch_size, test, reset_seeds):
margin = 0.03
num_iterations = 1
if is_grayskull():
expected_perf = 40.8772
expected_perf = 57.3
elif is_wormhole_b0():
expected_perf = 103.884

Expand Down
4 changes: 2 additions & 2 deletions models/demos/vgg/tests/test_perf_vgg.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,10 @@ def test_perf_device_bare_metal_vgg(batch_size, model_name):
margin = 0.03

if model_name == "ttnn_vgg11":
expected_perf = 132.2436 if is_grayskull() else 283.289
expected_perf = 168 if is_grayskull() else 283.289
command = f"pytest tests/ttnn/integration_tests/vgg/test_ttnn_vgg11.py"
else:
expected_perf = 116.1459 if is_grayskull() else 201.3867
expected_perf = 144 if is_grayskull() else 201.3867
command = f"pytest tests/ttnn/integration_tests/vgg/test_ttnn_vgg16.py"

cols = ["DEVICE FW", "DEVICE KERNEL", "DEVICE BRISC KERNEL"]
Expand Down

0 comments on commit ca368f9

Please sign in to comment.