Also seen as: "WanVideoModelLoader crash", "fp16_fast torch 2.7", "sageattention not installed", "allow_fp16_accumulation"
Direct answer
A Kijai WanVideoWrapper "advanced" graph that is supposed to be tested crashes at model load. The cause is usually a backend the graph assumes but your install does not have: base_precision=fp16_fast needs torch 2.7+, and attention_mode=sageattn needs the sageattention package. They are gated separately, so a graph moved between machines breaks when the backend is absent.
Not sure this workflow will run before you rent a GPU?
Paste your ComfyUI workflow JSON into the free checker — it flags missing nodes, model requirements, and the VRAM/GPU you actually need. No signup.
fp16_fast sets torch.backends.cuda.matmul.allow_fp16_accumulation, which does not exist before torch 2.7 — on older torch it errors at load.
Fastest path: set base_precision to fp16 and attention_mode to sdpa, and run eager (drop torch.compile) — this works on stock torch with no extra packages. If you specifically want fp16_fast, upgrade to torch 2.7+ and match your other CUDA wheels.