Skip to content

Commit

Permalink
#0: Losen models perf tolerance for GS
Browse files Browse the repository at this point in the history
  • Loading branch information
farbabi committed Jan 23, 2024
1 parent 9202d17 commit cb88dc9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def test_perf_bare_metal(use_program_cache, expected_inference_time, expected_co
"expected_inference_time, expected_compile_time",
(
(
46,
48,
110,
),
),
Expand Down
2 changes: 1 addition & 1 deletion tests/ttnn/integration_tests/bloom/test_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

def get_expected_times(functional_bloom):
return {
ttnn_functional_bloom: (12, 5),
ttnn_functional_bloom: (15.0, 5),
ttnn_optimized_functional_bloom: (12, 0.85),
}[functional_bloom]

Expand Down
2 changes: 1 addition & 1 deletion tests/ttnn/integration_tests/roberta/test_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
def get_expected_times(functional_bert):
return {
ttnn_functional_bert: (11, 17),
ttnn_optimized_functional_bert: (12, 0.08),
ttnn_optimized_functional_bert: (12, 0.09),
}[functional_bert]


Expand Down
2 changes: 1 addition & 1 deletion tests/ttnn/integration_tests/t5/test_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
def get_expected_times(model_name, functional_t5):
return {
"t5-small": {
ttnn_functional_t5: (12, 3),
ttnn_functional_t5: (13, 3),
ttnn_optimized_functional_t5: (10, 1),
},
"google/flan-t5-small": {
Expand Down

0 comments on commit cb88dc9

Please sign in to comment.