You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
背景1 新旧兼容的断裂
PyTorch 2.7 支持了 CUDA 12.8,之后 pt2.7.1 + cu128 放弃了对 Maxwell (GTX 900)、 Pascal (GTX 10)、 Volta (TITAN V) 三个老架构的支持,表现为这些老 GPU 无法运行 pt2.7.1 + cu128 的镜像。
当然 Torch 也做了兼容版本,pt2.7.1 + cu126 依然兼容老架构,并且尚在测试阶段的 pt2.8 + cu126 也支持老架构。
但与此同时, Blackwell GPU 要求 cu128 以上才能运行。这意味着新老版本兼容性的撕裂,需要两份镜像(cu126、cu128/129)以覆盖更多 GPU。
Ref:
pytorch/pytorch#147607
https://github.com/pytorch/pytorch/blob/main/.ci/manywheel/build_cuda.sh
https://github.com/facebookresearch/xformers/blob/main/CHANGELOG.md
背景2 PyTorch 2.8 延期
pt2.8 增加了对 CUDA 最新版本 12.9 的支持,意味着 cu128 将会是“短命”镜像,其位置会很快被 cu129 取代。
但 pt2.8 从原本预计的七月发布延期到了八月,因此有必要先提供一份
cu128-slim
镜像。Ref:
https://dev-discuss.pytorch.org/t/2-8-final-rc-release-postponed-by-a-week/3101
https://download.pytorch.org/whl/test/cu129
计划:对当前镜像的更新
cu126-slim 镜像增加对 Nunchaku、 SageAttention、 TeaCache 的支持
主要镜像中预加载一份 ComfyUI(及 Manager 等),加快启动速度。也避免依赖性版本问题(Comfy 多个组件已变成 pip 包)
主要镜像调整模型目录挂载,便于用户单独挂载模型
cpu 镜像升级 Python、GCC 版本
更新 ComfyUI 启动参数列表
计划:新增镜像
基于更新后的 cu126-slim,新增:
cu126-cn
cu126-wsl(次要优先级)
base-cu126-pt27(次要,过渡)
base-cu126-pt28(次要)
cu126-megapak(次要)
cu128-slim(过渡)
cu129-slim
cu129-cn
cu129-wsl(次要)
base-cu129-pt28(次要)
cu129-megapak(次要)
注意,所有 WSL 镜像基于 Podman Desktop 开发测试,对 Docker Desktop 仅随缘支持。
此外,新增:
rocm-cn
xpu-cn
计划:停止更新,但暂不存档的镜像
comfy3d-pt25
cu118-slim
计划:退役(存档)镜像
cu121
cu121-megapak
cu124-cn
cu124-megapak
cu124-slim
cu128-test
cu129-test
direct3ds2
其他计划
全线放弃对 mediapipe 的支持
Ref: google-ai-edge/mediapipe#5810
全线放弃对 matrix-client 的支持
Ref: Comfy-Org/ComfyUI-Manager#1185
不再设计“新手友好”镜像,当前 ComfyUI 使用已大为普及,且内置模板与下载功能也颇为方便,提供 slim 最简镜像即可。
暂无更新 3D-Pack 镜像的计划。当前 AI3D 领域已步入商业化阶段,优秀的新模型往往闭源。但如有令人眼前一亮的新开源模型,会行动。
此外,之前有计划整合 SPAR3D 与 MIDI-3D,可在新镜像中一并实现。
如果 3D-Pack 遇到兼容性问题,考虑去除 egl,参考: #73
考虑编写测试流程。目前免费个人用户无法用 GitHub Actions 跑 GPU 测试,只能用 ComfyUI 自带的 CI 测试功能跑 CPU 测试,测试所有组件能否正常加载至 Python 环境。
Beta Was this translation helpful? Give feedback.
All reactions