Skip to content

Commit

Permalink
#0: Update GS Resnet perf thresholds. Seeing large variation in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tt-aho committed Sep 17, 2024
1 parent e270b4e commit 12fdb68
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions models/demos/grayskull/resnet50/tests/test_perf_e2e_resnet50.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
@pytest.mark.parametrize("device_params", [{"l1_small_size": 32768}], indirect=True)
@pytest.mark.parametrize(
"batch_size, expected_inference_time, expected_compile_time",
((20, 0.0080, 20),),
((20, 0.0087, 20),),
)
def test_perf(
device,
Expand Down Expand Up @@ -42,8 +42,8 @@ def test_perf(
@pytest.mark.parametrize(
"batch_size, enable_async_mode, expected_inference_time, expected_compile_time",
(
(20, True, 0.0064, 10),
(20, False, 0.0064, 5),
(20, True, 0.0068, 20),
(20, False, 0.0068, 20),
),
indirect=["enable_async_mode"],
)
Expand Down Expand Up @@ -74,7 +74,7 @@ def test_perf_trace(
@pytest.mark.parametrize("device_params", [{"l1_small_size": 32768, "num_command_queues": 2}], indirect=True)
@pytest.mark.parametrize(
"batch_size, expected_inference_time, expected_compile_time",
((20, 0.0100, 19),),
((20, 0.0085, 20),),
)
def test_perf_2cqs(
device,
Expand Down Expand Up @@ -103,7 +103,7 @@ def test_perf_2cqs(
)
@pytest.mark.parametrize(
"batch_size, expected_inference_time, expected_compile_time",
((20, 0.004, 5),),
((20, 0.0042, 20),),
)
def test_perf_trace_2cqs(
device,
Expand Down

0 comments on commit 12fdb68

Please sign in to comment.