[AMD][CI] Adjust MI300 score API performance thresholds (#36290)
This commit is contained in:
@@ -94,9 +94,15 @@ class TestBenchServing1GPUPart2(CustomTestCase):
|
|||||||
)
|
)
|
||||||
|
|
||||||
self.assertEqual(res["successful_requests"], res["total_requests"])
|
self.assertEqual(res["successful_requests"], res["total_requests"])
|
||||||
self.assertLess(res["avg_latency_ms"], 48)
|
# relax for mi300x
|
||||||
self.assertLess(res["p95_latency_ms"], 50)
|
if is_in_amd_ci():
|
||||||
self.assertGreater(res["throughput"], 20)
|
self.assertLess(res["avg_latency_ms"], 60)
|
||||||
|
self.assertLess(res["p95_latency_ms"], 65)
|
||||||
|
self.assertGreater(res["throughput"], 16)
|
||||||
|
else:
|
||||||
|
self.assertLess(res["avg_latency_ms"], 48)
|
||||||
|
self.assertLess(res["p95_latency_ms"], 50)
|
||||||
|
self.assertGreater(res["throughput"], 20)
|
||||||
|
|
||||||
def test_score_api_batch_scaling(self):
|
def test_score_api_batch_scaling(self):
|
||||||
"""Test score API performance with different batch sizes"""
|
"""Test score API performance with different batch sizes"""
|
||||||
|
|||||||
Reference in New Issue
Block a user