We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a710892 commit 8d7de0fCopy full SHA for 8d7de0f
export/orbax/export/obm_configs.py
@@ -61,11 +61,12 @@ class MixedPriorityBatchingPolicy(enum.Enum):
61
LOW_PRIORITY_PADDING_WITH_NEXT_ALLOWED_BATCH_SIZE: Pad low priority inputs
62
up to the next allowed batch size.
63
PRIORITY_ISOLATION: Keep low and high priority inputs in separate batches.
64
+ PRIORITY_MERGE: Merge low priority inputs into the high priority batch.
65
"""
- # TODO: b/417977029 - Add PRIORITY_MERGE.
66
LOW_PRIORITY_PADDING_WITH_MAX_BATCH_SIZE = "low_priority_padding_with_max_batch_size"
67
LOW_PRIORITY_PADDING_WITH_NEXT_ALLOWED_BATCH_SIZE = "low_priority_padding_with_next_allowed_batch_size"
68
PRIORITY_ISOLATION = "priority_isolation"
69
+ PRIORITY_MERGE = "priority_merge"
70
71
72
0 commit comments