increase test_profile_multidev_transfer threshold (#6370)

flaky, bumpped to 16000 for CI
This commit is contained in:
chenyu 2024-09-05 05:49:32 -04:00 committed by GitHub
parent e882294c02
commit 62f9f273f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ class TestProfiler(unittest.TestCase):
transfer_node_1 = helper_profile_filter_node(profile, name=f"{Device.DEFAULT} -> {Device.DEFAULT}:1")[0]
helper_validate_node(transfer_node_1, profile=profile, pid_name=Device.DEFAULT, tid_name="DMA")
assert 80 < transfer_node_1['dur'] < (10000 if CI else 1400), f"Duration is not in the range: {transfer_node_1['dur']}"
assert 80 < transfer_node_1['dur'] < (16000 if CI else 1400), f"Duration is not in the range: {transfer_node_1['dur']}"
@unittest.skipIf(MOCKGPU and Device.DEFAULT == "AMD", "AMD mockgpu with indirect buffers does not support queue wait interrupts")
def test_profile_deps(self):