Skip to content

Instantly share code, notes, and snippets.

@sovapatr
sovapatr / comfyuirun.bat
Last active February 8, 2026 20:38
ComfyUI Run with AMD settings
setlocal enabledelayedexpansion
:: add or remove commandline parameters into this line, these are recommended for 6000 series amd gpu's.
set PARAMS=--use-quad-cross-attention --disable-smart-memory --disable-pinned-memory --disable-api-nodes --cache-none
:: change the path below *only below* to wherever you have installed comfyui to. (in this example it is : "D:\ComfyUI") , it will change everything else automatically.
set COMFYUI_PATH=C:\Users\user\Documents\ComfyUI
set COMFYUI_MODEL_PATH=%COMFYUI_PATH%\models
@sovapatr
sovapatr / comfyuiinstall.bat
Created February 8, 2026 20:24
Install ComfyUI with rocm 7.12
@echo off
echo :: Cloning comfyui ...
git clone https://github.com/comfyanonymous/ComfyUI
echo.
cd ComfyUI
md .triton
echo :: Creating virtual environment ...
py -3.12 -m venv venv
echo.
echo :: Activating virtual environment ...