Files
NexQuant/rdagent/scenarios/shared/get_runtime_info.py
T

30 lines
1.2 KiB
Python
Raw Normal View History

2026-03-02 19:04:10 +08:00
import json
import re
2025-07-28 14:19:41 +08:00
from pathlib import Path
from rdagent.core.experiment import FBWorkspace
from rdagent.utils.env import Env
def get_runtime_environment_by_env(env: Env) -> str:
implementation = FBWorkspace()
fname = "runtime_info.py"
implementation.inject_files(**{fname: (Path(__file__).absolute().resolve().parent / "runtime_info.py").read_text()})
stdout = implementation.execute(env=env, entry=f"python {fname}")
2026-03-02 19:04:10 +08:00
# Extract JSON from stdout (skip CUDA/container warnings)
json_match = re.search(r"\{.*\}", stdout, re.DOTALL)
return json.dumps(json.loads(json_match.group()), indent=2)
def check_runtime_environment(env: Env) -> str:
implementation = FBWorkspace()
# 1) Check if strace exists in env
strace_check = implementation.execute(env=env, entry="which strace || echo MISSING").strip()
if strace_check.endswith("MISSING"):
raise RuntimeError("`strace` not found in the target environment.")
# 2) Check if coverage module works in env
coverage_check = implementation.execute(env=env, entry="python -m coverage --version || echo MISSING").strip()
if coverage_check.endswith("MISSING"):
raise RuntimeError("`coverage` module not found or not runnable in the target environment.")