Increase max total number of dynamo partitions to 15 (#134153)

Needed to be able to split some of the aarch64 workflows to 15 shards

Pull Request resolved: https://github.com/pytorch/pytorch/pull/134153
Approved by: https://github.com/seemethere, https://github.com/kit1980, https://github.com/ZainRizvi
This commit is contained in:
Nikita Shulga
2024-08-21 23:10:12 +00:00
committed by PyTorch MergeBot
parent a5ef04a3b8
commit 5f0bd98767

View File

@ -3455,7 +3455,7 @@ def parse_args(args=None):
"--total-partitions",
type=int,
default=1,
choices=range(1, 10),
choices=range(1, 16),
help="Total number of partitions we want to divide the benchmark suite into",
)
parser.add_argument(