diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..95be9ff --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "ComfyUI/custom_nodes/efficiency-nodes-comfyui"] + path = ComfyUI/custom_nodes/efficiency-nodes-comfyui + url = https://github.com/jags111/efficiency-nodes-comfyui +[submodule "ComfyUI/custom_nodes/ComfyUI-Manager"] + path = ComfyUI/custom_nodes/ComfyUI-Manager + url = https://github.com/ltdrdata/ComfyUI-Manager.git diff --git a/ComfyUI/Dockerfile b/ComfyUI/Dockerfile index 7762d76..e2fc1c3 100644 --- a/ComfyUI/Dockerfile +++ b/ComfyUI/Dockerfile @@ -25,6 +25,7 @@ RUN apt update \ USER 1000 RUN python${PYTHON_VERSION} -m venv /app/env \ && /app/env/bin/pip install --no-cache-dir torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm${ROCM_VERSION} \ + && /app/env/bin/pip install --no-cache-dir simpleeval \ && /app/env/bin/pip install --no-cache-dir -r requirements.txt VOLUME ["/app/models/loras", "/app/models/checkpoints", "/app/models/vae", "/app/models/embeddings"] @@ -32,5 +33,5 @@ VOLUME ["/app/outputs"] EXPOSE 8188 ENV PYTORCH_CUDA_ALLOC_CONF="garbage_collection_threshold:0.9,max_split_size_mb:512" -ENTRYPOINT ["/app/env/bin/python", "main.py", "--listen"] +ENTRYPOINT ["/app/env/bin/python", "main.py", "--listen", "--use-split-cross-attention"] CMD [] \ No newline at end of file diff --git a/ComfyUI/custom_nodes/.gitignore b/ComfyUI/custom_nodes/.gitignore deleted file mode 100644 index c96a04f..0000000 --- a/ComfyUI/custom_nodes/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore \ No newline at end of file diff --git a/ComfyUI/custom_nodes/ComfyUI-Manager b/ComfyUI/custom_nodes/ComfyUI-Manager new file mode 160000 index 0000000..7d8a279 --- /dev/null +++ b/ComfyUI/custom_nodes/ComfyUI-Manager @@ -0,0 +1 @@ +Subproject commit 7d8a279a12efae1daac797934cf6fbf03c15f1f2 diff --git a/ComfyUI/custom_nodes/efficiency-nodes-comfyui b/ComfyUI/custom_nodes/efficiency-nodes-comfyui new file mode 160000 index 0000000..3ead4af --- /dev/null +++ b/ComfyUI/custom_nodes/efficiency-nodes-comfyui @@ -0,0 +1 @@ +Subproject commit 3ead4afd120833f3bffdefeca0d6545df8051798 diff --git a/docker-compose.yaml b/docker-compose.yaml index 7e4c916..924fbf4 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -34,6 +34,7 @@ services: context: ./ComfyUI args: <<: *buid_args + command: ["--fp16-vae"] restart: unless-stopped environment: - HSA_OVERRIDE_GFX_VERSION=11.0.0