Skip to content

仓库结构

推荐仓库结构(与实现代码保持一致):

unet-dt-scheduler/
  docs/                      # VitePress 文档站
  scenarios/                 # 场景 YAML
  runs/                      # 运行自动生成(不入库)
  scripts/                   # UNET 网关连通性测试脚本
  src/unet_dt/               # Python 源码
    unet_adapter/            # UNET 适配层(arlpy/fjagepy/logonly)
    orchestrator/            # run/step/barrier/clock
    scheduler/               # 策略接口与实现
    metrics/                 # trace/compute/export
    api/                     # FastAPI 服务
    ui/                      # Streamlit Dashboard
  tests/

说明:

  • docs/ 用于持续维护版本;提交版 report.md 可视为阶段性快照。
  • runs/ 目录为运行产物,应在 .gitignore 中忽略。