Fix hypertile.

This commit is contained in:
comfyanonymous 2023-12-07 15:22:35 -05:00
parent efb704c758
commit cdff081023
1 changed files with 4 additions and 1 deletions

View File

@ -13,7 +13,10 @@ def random_divisor(value: int, min_value: int, /, max_options: int = 1) -> int:
ns = [value // i for i in divisors[:max_options]] # has at least 1 element
idx = randint(low=0, high=len(ns) - 1, size=(1,)).item()
if len(ns) - 1 > 0:
idx = randint(low=0, high=len(ns) - 1, size=(1,)).item()
else:
idx = 0
return ns[idx]