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
I need to impement several "set" values (not switches like --use-pytorch-cross-attention) in the backend / start up script for dlbackend\comfy\ComfyUI\main.py. I wasn't able to use them in the "ExtraArgs" field without syntax errors, I tried (short example):
set MIOPEN_FIND_MODE=1 --use-pytorch-cross-attention or
--set MIOPEN_FIND_MODE=1 --use-pytorch-cross-attention
both are not working, caused by the "set" word/value
So how we use them?
For example I would need:
set MIOPEN_FIND_MODE=1
set MIOPEN_FIND_ENFORCE=3
set PYTORCH_TUNABLEOP_ENABLED=1
set TORCH_BLAS_PREFER_HIPBLASLT=1
set HIPBLASLT_ENABLE_EXPERT_SCHEDULING=1
set MIOPEN_DEBUG_DISABLE_CONV_WI_BLOCK=1
set PYTORCH_MIOPEN_SUGGEST_NHWC=1
set COMFYUI_GPU_ONLY=1
and later: python main.py --use-pytorch-cross-attention --disable-pinned-memory --highvram --fp32-vae --preview-method auto
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.
-
I need to impement several "set" values (not switches like --use-pytorch-cross-attention) in the backend / start up script for dlbackend\comfy\ComfyUI\main.py. I wasn't able to use them in the "ExtraArgs" field without syntax errors, I tried (short example):
set MIOPEN_FIND_MODE=1 --use-pytorch-cross-attention or
--set MIOPEN_FIND_MODE=1 --use-pytorch-cross-attention
both are not working, caused by the "set" word/value
So how we use them?
For example I would need:
and later:
python main.py --use-pytorch-cross-attention --disable-pinned-memory --highvram --fp32-vae --preview-method autoThank you! regards Matthias
Beta Was this translation helpful? Give feedback.
All reactions