Load workspace/orchestration_state.json if it exists.
()
| 312 | # --------------------------------------------------------------------------- |
| 313 | |
| 314 | def load_orchestration_state() -> Optional[Dict]: |
| 315 | """Load workspace/orchestration_state.json if it exists.""" |
| 316 | if not os.path.exists(ORCHESTRATION_STATE): |
| 317 | return None |
| 318 | with open(ORCHESTRATION_STATE, "r") as f: |
| 319 | return json.load(f) |
| 320 | |
| 321 | |
| 322 | def discover_optimized_kernels() -> List[KernelReplacement]: |
no outgoing calls
no test coverage detected