Yeah probab shudnt adress this problem to AI but. This is what gemini says -
Bitsandbytes Error (Main Problem)
This error is critical and likely prevents the system from running optimally, which may be the reason for slow VAE finalization and "freezing/hangs."
Error Log:
RuntimeError: Configured ROCm binary not found at G:\SD\SD-FORG-NEO\sd-webui-forge-neo\venv\Lib\site-packages\bitsandbytes\libbitsandbytes_rocm71.dll
Cause:
The bitsandbytes library (used for memory and speed optimization, especially with quantization) is attempting to use its version compiled for ROCm 7.1 (or a similar version) but cannot find the corresponding DLL file. On Windows, bitsandbytes support with ROCm/PyTorch is very unstable and frequently causes issues.
Solution:
Disable bitsandbytes: In your startup file (webui-user.bat or another), find and remove any flags that might activate bitsandbytes (e.g., --bf16 or specific quantization flags).
Uninstall the library: Temporarily remove bitsandbytes from your virtual environment to prevent it from attempting to load:
Bash
cd G:\SD\SD-FORG-NEO\sd-webui-forge-neo
.\venv\Scripts\activate
pip uninstall bitsandbytes