feat: optimize dynamic batch size calculation for MFR processing

This commit is contained in:
myhloli
2026-03-24 10:33:36 +08:00
parent 4aab895c8a
commit 9b68645352

View File

@@ -353,7 +353,7 @@ def get_mfr_effective_batch_size(num_items: int, requested_batch_size: int) -> i
def get_mfr_min_dynamic_batch_size(requested_batch_size: int) -> int:
return max(1, requested_batch_size // 8)
return max(1, requested_batch_size // 4)
def finalize_mfr_batch_groups(