Merge branch 'ml-explore:main' into adding-Muon-optimizer

This commit is contained in:
Gökdeniz Gülmez
2025-03-05 23:09:44 +01:00
committed by GitHub
4 changed files with 18 additions and 6 deletions

View File

@@ -112,7 +112,12 @@ def extract_rings(hosts, index):
break
if not ring:
break
rings.append(normalize(concretize(ring, used_ports)))
try:
rings.append(normalize(concretize(ring, used_ports)))
except RuntimeError:
if len(rings) > 0:
return rings
raise
return rings