Mac 本地部署Stable Difussion开源AI绘画工具的故障问题总结

407 阅读1分钟

RuntimeError: "LayerNormKernelImpl" not implemented for 'Half'

image.png

1.Modified webui-user.sh,add those flags to the file

export COMMANDLINE_ARGS="--skip-torch-cuda-test --precision full --no-half"

VS 2.Changing webui-user.sh didn't do anything, but adding those flags to the startup command fixed it:

./webui.sh --skip-torch-cuda-test --precision full --no-half

Proccess 3.Success

Smile