From 78c94abe9c2c85644eeb27a1ab4fa9e501126c9b Mon Sep 17 00:00:00 2001 From: nimlgen <138685161+nimlgen@users.noreply.github.com> Date: Wed, 21 Aug 2024 22:42:03 +0300 Subject: [PATCH] raise time limit for ci in test_profile_multidev_transfer (#6227) --- test/test_profiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_profiler.py b/test/test_profiler.py index 2d0fc5d5..53297d89 100644 --- a/test/test_profiler.py +++ b/test/test_profiler.py @@ -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'] < (5000 if CI else 1400), f"Duration is not in the range: {transfer_node_1['dur']}" + assert 80 < transfer_node_1['dur'] < (10000 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):