Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Modern UI

Image Added

Classic UI
Image Added


IPEX (Intel PyTorch EXtension) version of SD.Next

Some prebuild docker images https://hub.docker.com/r/liutyi/sdnext-ipex/tags

See generation examples for all models https://vladmandic.github.io/sd-samples/compare.html

...

Code Block
services:
  sdnext-ipex:
    build:
      dockerfile: Dockerfile
    image: liutyi/sdnext-ipex:latest25.9.1-igpu
    container_name: sdnext-ipex
    restart: unless-stopped
    devices:
      - /dev/dri:/dev/dri
#      - /dev/accel:/dev/accel
    environment:
      - HF_DEBUG=True

    ports:
      - 7860:7860
    volumes:
      - /docker/sdnext/app-volume:/app
      - /docker/sdnext/mnt-volume:/mnt
      - /docker/sdnext/huggingfacehf-volume:/root/.cache/huggingface
      - /docker/sdnext/python-volumedev/shm:/usr/local/lib/python3.10
#     - /dev/shm:/dev/shmdev/shm


Dockerfile

proxy is sometimes needed to access Intel video drivers repository. so 'https_proxy=http://proxy.example.com:18080/' to be replaced with working one or removed

Code Block
# SD.Next IPEX Dockerfile
# docs: <https://github.com/vladmandic/sdnext/wiki/Docker>

# base image
FROM ubuntu:noble

# metadata
LABEL org.opencontainers.image.vendor="SD.Next"
LABEL org.opencontainers.image.authors="disty0liutyi"
LABEL org.opencontainers.image.url="https://github.com/vladmandicliutyi/sdnext/"
LABEL org.opencontainers.image.documentation="https://github.com/vladmandic/sdnext/wiki/Docker"
LABEL org.opencontainers.image.source="https://github.com/vladmandic/sdnext/"
LABEL org.opencontainers.image.licenses="AGPL-3.0"
LABEL org.opencontainers.image.title="SD.Next IPEX"
LABEL org.opencontainers.image.description="SD.Next: Advanced Implementation of Stable Diffusion and other Diffusion-based generative image models"
LABEL org.opencontainers.image.base.name="https://hub.docker.com/_/ubuntu:noble"
LABEL org.opencontainers.image.version="latest25.9.0"

# essentials
RUN apt-get update && \
    apt-get install -y --no-install-recommends --fix-missing \
    software-properties-common \
    build-essential \
    ca-certificates \
    wget \
    gpg \
    git \
    libgomp1 \
    libtbb12

# python3.12NPU
RUN apt-get install -y --no-install-recommends --fix-missing wget https://github.com/intel/linux-npu-driver/releases/download/v1.23.0/linux-npu-driver-v1.23.0.20250827-17270089246-ubuntu2404.tar.gz &&\
    python3 \
tar -xf linux-npu-driver-v1.23.0.20250827-17270089246-ubuntu2404.tar.gz &&\
    dpkg python3-dev i *.deb &&\
    python3rm -venv \
    python3-pipf linux-npu-driver-v1.23.0.20250827-17270089246-ubuntu2404.tar.gz intel-*

# Installrequired Pythonby 3.13pytorch from the deadsnakes PPA
#RUN add-apt-repository ppa:deadsnakes/ppa && \
#    apt-get update && \
#   / ipex
RUN apt-get install -y --no-install-recommends --fix-missing \
    libgl1 \
    libglib2.0-0

# python3.12
RUN apt-get install -y python3.13 python3.13-dev python3-pip python3-venv --no-install-recommends --fix-missing \
    python3 \
    python3-dev \
    python3-venv \
    python3-pip

# intel compute runtime
RUN https_proxy=http://proxy.example.com:18080/ wget -qO - https://repositories.intel.com/gpuadd-apt-repository ppa:kobuk-team/intel-graphics.key | gpg --yes --dearmor --output /usr/share/keyrings/intel-graphics.gpg
RUN echo "deb [arch=amd64,i386 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/gpu/ubuntu noble client" | tee /etc/apt/sources.list.d/intel-gpu-noble.list
RUN https_proxy=http://proxy.example.com:18080/ apt-get update

RUN https_proxy=http://proxy.example.com:18080/ apt-get install -y --no-install-recommends --fix-missing \
    intel-opencl-icd \
    libze-intel-gpu1 \
    libze1

# required by pytorch / ipex
RUN https_proxy=http://proxy.example.com:18080/ apt-get install -y --no-install-recommends --fix-missing \
    libgl1 \
    libglib2.0-0 \
    libgomp1

# jemalloc is not required but it is highly recommended (also used with optional ipexrun)
RUN https_proxy=http://proxy.example.com:18080/ apt-get install -y --no-install-recommends --fix-missing libjemalloc-dev
ENV LD_PRELOAD=libjemalloc.so.2

# cleanup
RUN /usr/sbin/ldconfig
RUN https_proxy=http://proxy.example.com:18080/ apt-get clean && rm -rf /var/lib/apt/lists/*
# stop pip and uv from caching
ENV PIP_NO_CACHE_DIR=true
ENV UV_NO_CACHE=true

# set paths to use with sdnext
ENV SD_DOCKER=true
ENV SD_DATADIR="/mnt/data"
ENV SD_MODELSDIR="/mnt/models"
ENV venv_dir="/mnt/python/venv"

# paths used by sdnext can be a volume if necessary
#VOLUME [ "/app" ]
#VOLUME [ "/mnt/data" ]
#VOLUME [ "/mnt/models" ]
#VOLUME [ "/mnt/python" ]
#VOLUME [ "/root/.cache/huggingface" ]

# intel specific environment variables
ENV IPEX_SDPA_SLICE_TRIGGER_RATE=1
ENV IPEX_ATTENTION_SLICE_RATE=0.5
ENV IPEX_FORCE_ATTENTION_SLICE=-1
ENV IPEXRUN=True

# git clone and run sdnext
RUN echo '#!/bin/bash\ngit status || git clone https://github.com/vladmandic/sdnext.git -b dev .\n/app/webui.sh "$@"' | tee /bin/startup.sh
RUN chmod 755 /bin/startup.sh

# actually run sdnext
WORKDIR /app
ENTRYPOINT [ "startup.sh", "-f", "--use-ipex", "--uv", "--listen", "--insecure", "--share", "--server-name sdnext.example.com", "--update", "--debug", "--api-log", "--log", "sdnext.log" ]
#ENTRYPOINT [ "startup.sh", "-f", "--use-ipex", "--uv", "--listen", "--debug", "--api-log", "--log", "sdnext.log" ]

# expose port
EXPOSE 7860

# healthcheck function
#HEALTHCHECK --interval=60s --timeout=10s --start-period=60s --retries=3 CMD curl --fail http://localhost:7860/sdapi/v1/status || exit 1

# stop signal
STOPSIGNAL SIGINT

start/stop commands

Code Block
docker compose up -d
docker compose down --rmi local

nginx config

/etc/nginx/sites-enabled/sdnext.conf


RUN apt-get update

RUN apt-get install -y --no-install-recommends --fix-missing \
    intel-opencl-icd \
    libze-intel-gpu1 \
    libze1

# cleanup
RUN /usr/sbin/ldconfig
RUN apt-get clean && rm -rf /var/lib/apt/lists/*

# set paths to use with sdnext
ENV SD_DOCKER=true
ENV SD_VAE_DEBUG=true
ENV SD_DATADIR="/mnt/data"
ENV SD_MODELSDIR="/mnt/models"
ENV venv_dir="/mnt/python/venv"
ENV IPEX_SDPA_SLICE_TRIGGER_RATE=1
ENV IPEX_ATTENTION_SLICE_RATE=0.5
ENV IPEX_FORCE_ATTENTION_SLICE=1
ENV IPEXRUN=True

# git clone and run sdnext
# RUN echo '#!/bin/bash\ngit status || git clone https://github.com/vladmandic/sdnext.git -b dev .\n/app/webui.sh "$@"' | tee /bin/startup.sh
RUN echo '#!/bin/bash\ngit status || git clone https://github.com/liutyi/sdnext.git -b ipex .\n/app/webui.sh "$@"' | tee /bin/startup.sh
RUN chmod 755 /bin/startup.sh

# actually run sdnext
WORKDIR /app
ENTRYPOINT [ "startup.sh", "-f", "--use-ipex", "--uv", "--listen", "--insecure", "--api-log", "--log", "sdnext.log" ]

# expose port
EXPOSE 7860

# healthcheck function
#HEALTHCHECK --interval=60s --timeout=10s --start-period=60s --retries=3 CMD curl --fail http://localhost:7860/sdapi/v1/status || exit 1

# stop signal
STOPSIGNAL SIGINT


start/stop commands

Code Block
docker compose up -d
docker compose down --rmi local


nginx config

/etc/nginx/sites-enabled/sdnext.conf

Code Block
server {
        listen       80;
        server_name sdnext.example.com;
        return 301 https://$server_name$request_uri;
    }
server {
        listen 443 ssl;
        server_name sdnext.example.com;
        # SSL Settings
        ssl_certificate /etc/ssl/private/wildcard.pem;
        ssl_certificate_key /etc/ssl/private/wildcard.pem;
        ssl_trusted_certificate "/etc/ssl/certs/wildcard.ca";
        add_header Strict-Transport-Security 'max-age=15552000; includeSubDomains';
        ssl_protocols TLSv1.3 TLSv1.2;
        ssl_ciphers "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 EECDH EDH+aRSA HIGH !RC4 !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS";
        ssl_session_cache shared:SSL:20m;
        ssl_session_timeout 1h;
        ssl_prefer_server_ciphers on
Code Block
server {
        listen       80;
        serverssl_name sdnext.example.comstapling on;
        return 301 https://$server_name$request_uri;
ssl_stapling_verify on;
        }
server# {Timeouts
        listen 443 sslclient_max_body_size 50G;
        serverclient_body_name sdnext.example.comtimeout 600s;
        #proxy_read_timeout SSL Settings600s;
        ssl_certificate /etc/ssl/private/wildcard.pemproxy_send_timeout  600s;
        ssl_certificate_key /etc/ssl/private/wildcard.pem;
send_timeout        600s;
        # ssl_trusted_certificate "/etc/ssl/certs/wildcard.ca";Set headers
        addproxy_set_header Strict-Transport-Security 'max-age=15552000; includeSubDomains';
 Host            ssl_protocols TLSv1.3 TLSv1.2 $http_host;
        sslproxy_set_ciphers "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 EECDH EDH+aRSA HIGH !RC4 !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS";
        ssl_session_cache shared:SSL:20mheader X-Real-IP         $remote_addr;
        proxy_set_header X-Forwarded-For   $proxy_add_x_forwarded_for;
        sslproxy_session_timeout 1hset_header X-Forwarded-Proto $scheme;
        ssl_prefer_server_ciphers on;# enable websockets
        sslproxy_http_staplingversion on1.1;
        sslproxy_staplingset_verifyheader on;
  Upgrade    $http_upgrade;
  # Timeouts
     proxy_set_header   client_max_body_size 50GConnection "upgrade";
        client_body_timeout 600sproxy_redirect     off;
        proxy_read_timeout  600s;# DNS
        proxy_send_timeout  600sresolver 1.1.1.1 8.8.4.4 valid=300s;
        sendresolver_timeout 5s;

       600s;
        # Set headers
        proxy_set_header Host location /file=/mnt/data {
                  $http_hostalias /docker/sdnext/mnt-volume/data;
        proxy_set_header X-Real-IP}

        location / $remote_addr;{
         proxy_set_header X-Forwarded-For   $proxy_add_x_forwarded_forpass http://127.0.0.1:7860;
        proxy_set_header X-Forwarded-Proto $scheme;
        # enable websockets
        proxy_http_version 1.1;
        proxy_set_header   Upgrade    $http_upgrade;
        proxy_set_header   Connection "upgrade";
        proxy_redirect     off;
        # DNS
        resolver 1.1.1.1 8.8.4.4 valid=300s;
        resolver_timeout 5s;

        location /file=/mnt/data {
         alias /docker/sdnext/mnt-volume/data;
        }

        location / {
         proxy_pass http://127.0.0.1:7860;
        }
}

config.json

/docker/sdnext/mnt-volume/data/config.json
Code Block
{
  "sd_model_checkpoint": "Diffusers/imnotednamode/Chroma-v36-dc-diffusers [38ce7ce7f3]",
  "outdir_txt2img_samples": "/mnt/data/outputs/text",
  "outdir_img2img_samples": "/mnt/data/outputs/image",
  "outdir_control_samples": "/mnt/data/outputs/control",
  "outdir_extras_samples": "/mnt/data/outputs/extras",
  "outdir_save": "/mnt/data/outputs/save",
  "outdir_video": "/mnt/data/outputs/video",
  "outdir_init_images": "/mnt/data/outputs/init-images",
  "outdir_txt2img_grids": "/mnt/data/outputs/grids",
  "outdir_img2img_grids": "/mnt/data/outputs/grids",
  "outdir_control_grids": "/mnt/data/outputs/grids",
  "diffusers_version": "8adc6003ba4dbf5b61bb4f1ce571e9e55e145a99",
  "sd_checkpoint_hash": null,
  "huggingface_token": "hf_PUT-HERE-YOUR-HuggingFace-Token",
  "samples_filename_pattern": "[seq]-[date]-[model_name]-[height]x[width]-STEP[steps]-CFG[cfg]-Seed[seed]"
}

ui config

/docker/sdnext/mnt-volume/data/ui-config.json
Code Block
{}

Fix haggingface repo access

Generate token

https://huggingface.co/settings/tokens

Repo with acess request needed

https://huggingface.co/meta-llama/Llama-3.1-8B-Instruct

https://huggingface.co/meta-llama/Llama-3.3-70B-Instruct

https://huggingface.co/stabilityai/stable-diffusion-3.5-large

https://huggingface.co/black-forest-labs/FLUX.1-dev

Image Removed

Error example

In case you got repo access, enter tokens to WebUI and still got error like

Code Block
2025-06-20 13:25:36,995 | 97698f11112d | sd | ERROR | sd_models | Load model: path="/mnt/models/Diffusers/models--HiDream-ai--HiDream-I1-Dev/snapshots/5b3f48f0d64d039cd5e4b6bd47b4f4e0cbebae
62" 401 Client Error. (Request ID: Root=1-68556150-3f4018045ca5c71e00c09f88;3ae0ae6d-465e-46ed-9934-c5ea6af2097d)

Cannot access gated repo for url https://huggingface.co/api/models/meta-llama/Meta-Llama-3.1-8B-Instruct/auth-check.
Access to model meta-llama/Llama-3.1-8B-Instruct is restricted. You must have access to it and be authenticated to access it. Please log in.

2025-06-20 13:25:37,786 | 97698f11112d | sd | ERROR | sd_models | StableDiffusionPipeline: Pipeline <class 'diffusers.pipelines.stable_diffusion.pipeline_stable_diffusion.StableDiffusionPipeline'> expected ['feature_extractor', 'image_encoder', 

Manual login

workaround is to login manually

Code Block
docker exec -it sdnext-ipex bash

inside the container

Code Block
export venv_dir=/mnt/python/venv/
source "${venv_dir}"/bin/activate
/mnt/python/venv/bin/huggingface-cli login
Code Block
(venv) root@97698f11112d:/app# /mnt/python/venv/bin/huggingface-cli login

    _|    _|  _|    _|    _|_|_|    _|_|_|  _|_|_|  _|      _|    _|_|_|      _|_|_|_|    _|_|      _|_|_|  _|_|_|_|
    _|    _|  _|    _|  _|        _|          _|    _|_|    _|  _|            _|        _|    _|  _|        _|
    _|_|_|_|  _|    _|  _|  _|_|  _|  _|_|    _|    _|  _|  _|  _|  _|_|      _|_|_|    _|_|_|_|  _|        _|_|_|
    _|    _|  _|    _|  _|    _|  _|    _|    _|    _|    _|_|  _|    _|      _|        _|    _|  _|        _|
    _|    _|    _|_|      _|_|_|    _|_|_|  _|_|_|  _|      _|    _|_|_|      _|        _|    _|    _|_|_|  _|_|_|_|

    A token is already saved on your machine. Run `huggingface-cli whoami` to get more information or `huggingface-cli logout` if you want to log out.
    Setting a new token will erase the existing one.
    To log in, `huggingface_hub` requires a token generated from https://huggingface.co/settings/tokens .
Enter your token (input will not be visible): PUT HERE YOUR hf_.............
Add token as git credential? (Y/n) y
Token is valid (permission: write).
The token `SDNext` has been saved to /root/.cache/huggingface/stored_tokens
Cannot authenticate through git-credential as no helper is defined on your machine.
You might have to re-authenticate when pushing to the Hugging Face Hub.
Run the following command in your terminal in case you want to set the 'store' credential helper as default.

git config --global credential.helper store

Read https://git-scm.com/book/en/v2/Git-Tools-Credential-Storage for more details.
Token has not been saved to git credential helper.
Your token has been saved to /root/.cache/huggingface/token
Login successful.
The current active token is: `SDNext`

First start console output example

}
}

config.json

/docker/sdnext/mnt-volume/data/config.json
Code Block
{
  "sd_model_checkpoint": "Diffusers/imnotednamode/Chroma-v36-dc-diffusers [38ce7ce7f3]",
  "outdir_txt2img_samples": "/mnt/data/outputs/text",
  "outdir_img2img_samples": "/mnt/data/outputs/image",
  "outdir_control_samples": "/mnt/data/outputs/control",
  "outdir_extras_samples": "/mnt/data/outputs/extras",
  "outdir_save": "/mnt/data/outputs/save",
  "outdir_video": "/mnt/data/outputs/video",
  "outdir_init_images": "/mnt/data/outputs/init-images",
  "outdir_txt2img_grids": "/mnt/data/outputs/grids",
  "outdir_img2img_grids": "/mnt/data/outputs/grids",
  "outdir_control_grids": "/mnt/data/outputs/grids",
  "diffusers_version": "8adc6003ba4dbf5b61bb4f1ce571e9e55e145a99",
  "sd_checkpoint_hash": null,
  "huggingface_token": "hf_PUT-HERE-YOUR-HuggingFace-Token",
  "samples_filename_pattern": "[seq]-[date]-[model_name]-[width]x[height]-STEP[steps]-CFG[cfg]-Seed[seed]"
}

UI config

/docker/sdnext/mnt-volume/data/ui-config.json
Code Block
{}


Fix haggingface repo access

Generate token

https://huggingface.co/settings/tokens

Repo with access request needed

https://huggingface.co/meta-llama/Llama-3.1-8B-Instruct

https://huggingface.co/meta-llama/Llama-3.2-3B

https://huggingface.co/meta-llama/Llama-3.3-70B-Instruct

https://huggingface.co/meta-llama/Llama-Guard-4-12B

https://huggingface.co/google/gemma-7b-it

https://huggingface.co/DeepFloyd/IF-I-XL-v1.0

https://huggingface.co/briaai/BRIA-3.2

https://huggingface.co/stabilityai/stable-diffusion-3-medium

https://huggingface.co/stabilityai/stable-diffusion-3.5-large

https://huggingface.co/black-forest-labs/FLUX.1-dev

https://huggingface.co/nvidia/Cosmos-Predict2-14B-Text2Image



Image Added

Error example

In case you got repo access, enter tokens to WebUI and still got error like

Code Block
2025-06-20 13:25:36,995 | 97698f11112d | sd | ERROR | sd_models | Load model: path="/mnt/models/Diffusers/models--HiDream-ai--HiDream-I1-Dev/snapshots/5b3f48f0d64d039cd5e4b6bd47b4f4e0cbebae
62" 401 Client Error. (Request ID: Root=1-68556150-3f4018045ca5c71e00c09f88;3ae0ae6d-465e-46ed-9934-c5ea6af2097d)

Cannot access gated repo for url https://huggingface.co/api/models/meta-llama/Meta-Llama-3.1-8B-Instruct/auth-check.
Access to model meta-llama/Llama-3.1-8B-Instruct is restricted. You must have access to it and be authenticated to access it. Please log in.

2025-06-20 13:25:37,786 | 97698f11112d | sd | ERROR | sd_models | StableDiffusionPipeline: Pipeline <class 'diffusers.pipelines.stable_diffusion.pipeline_stable_diffusion.StableDiffusionPipeline'> expected ['feature_extractor', 'image_encoder', 

Manual login

workaround is to login manually

Code Block
docker exec -it sdnext-ipex bash

inside the container

Code Block
export venv_dir=/mnt/python/venv/
source "${venv_dir}"/bin/activate
git config --global credential.helper store
/mnt/python/venv/bin/huggingface-cli login


Code Block
(venv) root@97698f11112d:/app# /mnt/python/venv/bin/huggingface-cli login

    _|    _|  _|    _|    _|_|_|    _|_|_|  _|_|_|  _|      _|    _|_|_|      _|_|_|_|    _|_|      _|_|_|  _|_|_|_|
    _|    _|  _|    _|  _|        _|          _|    _|_|    _|  _|            _|        _|    _|  _|        _|
    _|_|_|_|  _|    _|  _|  _|_|  _|  _|_|    _|    _|  _|  _|  _|  _|_|      _|_|_|    _|_|_|_|  _|        _|_|_|
    _|    _|  _|    _|  _|    _|  _|    _|    _|    _|    _|_|  _|    _|      _|        _|    _|  _|        _|
    _|    _|    _|_|      _|_|_|    _|_|_|  _|_|_|  _|      _|    _|_|_|      _|        _|    _|    _|_|_|  _|_|_|_|

    A token is already saved on your machine. Run `huggingface-cli whoami` to get more information or `huggingface-cli logout` if you want to log out.
    Setting a new token will erase the existing one.
    To log in, `huggingface_hub` requires a token generated from https://huggingface.co/settings/tokens .
Enter your token (input will not be visible): PUT HERE YOUR hf_.............
Add token as git credential? (Y/n) y
Token is valid (permission: write).
The token `SDNext` has been saved to /root/.cache/huggingface/stored_tokens
Cannot authenticate through git-credential as no helper is defined on your machine.
You might have to re-authenticate when pushing to the Hugging Face Hub.
Run the following command in your terminal in case you want to set the 'store' credential helper as default.

git config --global credential.helper store

Read https://git-scm.com/book/en/v2/Git-Tools-Credential-Storage for more details.
Token has not been saved to git credential helper.
Your token has been saved to /root/.cache/huggingface/token
Login successful.
The current active token is: `SDNext`


First start console output example without ipex

Code Block
root@server6:~/ollama-cpu-docker# docker compose up -d; docker logs --since 1h --follow sdnext-ipex;
[+] Running 2/2
 âś” Network ollama-cpu-docker_default  Created                                                                                                                                                                                           0.0s
 âś” Container sdnext-ipex              Started                                                                                                                                                                                           2.0s
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
Cloning into '.'...
Create python venv
Activate python venv: /mnt/python/venv
Launch: /mnt/python/venv/bin/python3
14:19:52-182833 INFO     Starting SD.Next
14:19:52-184379 INFO     Logger: file="/app/sdnext.log" level=DEBUG
                         host="64f02122b05d" size=79 mode=append
14:19:52-184959 INFO     Python: version=3.12.3 platform=Linux
                         bin="/mnt/python/venv/bin/python3"
                         venv="/mnt/python/venv"
14:19:52-192953 INFO     Version: app=sd.next updated=2025-10-02 hash=ef6563376
                         branch=ipex
                         url=https://github.com/liutyi/sdnext.git/tree/ipex
                         ui=main
14:19:52-193606 DEBUG    Branch mismatch: sdnext=ipex ui=main
14:19:52-203815 DEBUG    Branch synchronized: ipex
14:19:52-346183 ERROR    Repository failed to check version: 'commit'
                         {'message': "API rate limit exceeded for xx.xx.xx.xx.
                         (But here's the good news: Authenticated requests get a
                         higher rate limit. Check out the documentation for more
                         details.)", 'documentation_url':
                         'https://docs.github.com/rest/overview/resources-in-the
                         -rest-api#rate-limiting'}
14:19:52-347865 INFO     Platform: arch=x86_64 cpu=x86_64 system=Linux
                         release=6.14.0-32-generic python=3.12.3 locale=('C',
                         'UTF-8') docker=True
14:19:52-348559 DEBUG    Packages: prefix=../mnt/python/venv
                         site=['../mnt/python/venv/lib/python3.12/site-packages'
                         ]
14:19:52-349049 INFO     Args: ['-f', '--use-ipex', '--uv', '--listen',
                         '--insecure', '--api-log', '--log', 'sdnext.log']
14:19:52-349520 DEBUG    Setting environment tuning
14:19:52-349915 DEBUG    Torch allocator:
                         "garbage_collection_threshold:0.80,max_split_size_mb:51
                         2"
14:19:52-350367 DEBUG    Install: package="uv" install required
14:19:53-743978 DEBUG    Install: package="gradio" install required
14:20:00-808790 INFO     Verifying torch installation
14:20:00-813464 DEBUG    Torch overrides: cuda=False rocm=False ipex=True
                         directml=False openvino=False zluda=False
14:20:00-814098 INFO     IPEX: Intel OneAPI toolkit detected
14:20:00-814494 DEBUG    Install: package="torch" install required
14:20:00-814888 DEBUG    Install: package="torchvision" install required
14:20:00-815284 DEBUG    Install: package="torchaudio" install required
14:20:00-815677 DEBUG    Install: package="xpu" install required
14:20:15-778575 INFO     Torch detected: gpu="Intel(R) Arc(TM) Graphics"
                         vram=128339 units=128
14:20:15-779442 DEBUG    Install: package="onnx" install required
14:20:17-278421 DEBUG    Install: package="onnxruntime" install required
14:20:18-355326 INFO     Transformers install: version=4.56.2
14:20:27-151710 INFO     Diffusers install:
                         commit=64a5187d96f9376c7cf5123db810f2d2da79d7d0
14:20:38-296481 INFO     Install requirements: this may take a while...
14:20:38-808596 WARNING  Install: cmd="uv pip" args="install -r
                         requirements.txt" cannot use uv, fallback to pip
14:21:25-608112 INFO     Install: verifying requirements
14:21:30-096095 INFO     Startup: standard
14:21:30-096669 INFO     Verifying submodules
14:21:43-290978 DEBUG    Git detached head detected:
                         folder="extensions-builtin/sd-extension-chainner"
                         reattach=main
14:21:43-291873 DEBUG    Git submodule: extensions-builtin/sd-extension-chainner
                         / main
14:21:43-300854 DEBUG    Git detached head detected:
                         folder="extensions-builtin/sd-extension-system-info"
                         reattach=main
14:21:43-301522 DEBUG    Git submodule:
                         extensions-builtin/sd-extension-system-info / main
14:21:43-308227 DEBUG    Git detached head detected:
                         folder="extensions-builtin/sdnext-modernui"
                         reattach=main
14:21:43-308820 DEBUG    Git submodule: extensions-builtin/sdnext-modernui /
                         main
14:21:43-325661 DEBUG    Git detached head detected:
                         folder="extensions-builtin/stable-diffusion-webui-rembg
                         " reattach=master
14:21:43-326569 DEBUG    Git submodule:
                         extensions-builtin/stable-diffusion-webui-rembg /
                         master
14:21:43-336593 DEBUG    Git detached head detected: folder="wiki"
                         reattach=master
14:21:43-337511 DEBUG    Git submodule: wiki / master
14:21:43-364999 DEBUG    Installed packages: 174
14:21:43-365576 DEBUG    Extensions all: ['sd-extension-chainner',
                         'sd-extension-system-info', 'sdnext-modernui',
                         'stable-diffusion-webui-rembg']
14:21:43-394140 DEBUG    Extension installer: builtin=True
                         file="/app/extensions-builtin/stable-diffusion-webui-re
                         mbg/install.py"
14:21:46-940113 INFO     Extension installed packages:
                         stable-diffusion-webui-rembg
                         ['opencv-python-headless==4.12.0.88', 'pooch==1.8.2',
                         'pymatting==1.1.14', 'rembg==2.0.67']
14:21:46-941087 INFO     Extensions enabled: ['sd-extension-chainner',
                         'sd-extension-system-info', 'sdnext-modernui',
                         'stable-diffusion-webui-rembg']
14:21:46-952833 INFO     Install: verifying requirements
14:21:46-955116 DEBUG    Setup complete without errors: 1759414907
14:21:46-957523 DEBUG    Extension preload: {'extensions-builtin': 0.0,
                         '/mnt/data/extensions': 0.0}
14:21:46-958387 INFO     Installer time: total=277.19 pip=102.69
                         requirements=47.81 install=36.22 torch=14.97 ipex=13.36
                         git=13.34 submodules=13.25 diffusers=11.05
                         transformers=8.80 base=5.17 packages=4.00
                         stable-diffusion-webui-rembg=3.55 onnx=2.58 latest=0.16
                         files=0.10 branch=0.06
14:21:46-959364 INFO     Command line args: ['-f', '--use-ipex', '--uv',
                         '--listen', '--insecure', '--api-log', '--log',
                         'sdnext.log'] f=True uv=True use_ipex=True
                         insecure=True listen=True log=sdnext.log args=[]
14:21:46-960057 DEBUG    Env flags: ['SD_VAE_DEBUG=true', 'SD_DOCKER=true',
                         'SD_DATADIR=/mnt/data', 'SD_MODELSDIR=/mnt/models']
14:21:46-960546 DEBUG    Linker flags: preload="None"
                         path=":/mnt/python/venv/lib/"
14:21:46-961027 DEBUG    Starting module: <module 'webui' from '/app/webui.py'>
14:21:52-472525 DEBUG    System: cores=22 affinity=22 threads=16
14:21:52-474247 INFO     Torch: torch==2.7.1+xpu torchvision==0.22.1+xpu
14:21:52-474728 INFO     Packages: diffusers==0.36.0.dev0 transformers==4.56.2
                         accelerate==1.10.1 gradio==3.43.2 pydantic==1.10.21
                         numpy==2.3.3
14:21:52-850006 DEBUG    ONNX: version=1.23.0,
                         available=['AzureExecutionProvider',
                         'CPUExecutionProvider']
14:21:52-920163 DEBUG    State initialized: id=136709158132896
14:21:53-831664 INFO     Device detect: memory=125.0 default=balanced
                         optimization=highvram
14:21:53-838787 DEBUG    Settings: fn="/mnt/data/config.json" created
14:21:53-840641 INFO     Engine: backend=Backend.DIFFUSERS compute=ipex
                         device=xpu attention="Scaled-Dot-Product" mode=no_grad
14:21:53-841458 DEBUG    Save: file="/mnt/data/config.json" json=0 bytes=2
                         time=0.002
14:21:53-842603 DEBUG    Read: file="html/reference.json" json=106 bytes=53223
 
Code Block
sdnext-ipex  | fatal: not a git repository (or any parent up to mount point /)
sdnext-ipex  | Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
sdnext-ipex  | Cloning into '.'...

sdnext-ipex  | 09:39:20-590857 INFO     Starting SD.Next
sdnext-ipex  | 09:39:20-592353 INFO     Logger: file="/app/sdnext.log" level=INFO
sdnext-ipex  |                          host="a7e3c88ab9d3" size=79 mode=append
sdnext-ipex  | 09:39:20-592961 INFOtime=0.000 fn=_call_with_frames_removed:<module>
14:21:53-843385 DEBUG    Torch Python: version=3.12.3 platform=Linux
sdnext-ipex  |attention: type="sdpa" flash=True memory=True
                           bin="/mnt/python/venv/bin/python3"
sdnext-ipex  |math=True
14:21:54-347712 INFO     Torch parameters: backend=ipex    device=xpu config=Auto
               venv="/mnt/python/venv"
sdnext-ipex  | 09:39:20-608102 INFO     Version: appdtype=sdtorch.nextbfloat16 updated=2025-07-22 hash=bf6ba074
sdnext-ipex  |context=no_grad nohalf=False
                         nohalfvae=False upcast=False  branchdeterministic=devFalse
sdnext-ipex  |                       tunable=[False, False] fp16=pass url=https://github.com/vladmandic/sdnext.git/tree/dev
sdnext-ipex  |bf16=pass
                           ui=dev

sdnext-ipex  | 09:39:20-983435 INFO     Version: app=sd.next latest=2025-07-22T17:45:09Z
sdnext-ipex  |optimization="Scaled-Dot-Product"
14:21:54-348863 INFO     Device: device=Intel(R) Arc(TM) Graphics n=1 ipex=
                         driver=1.6.35096+9
14:21:54-394243 TRACE    hash=bf6ba074 branch=dev
sdnext-ipex  | 09:39:20-986261 INFOTrace: VAE
14:21:54-473654 DEBUG    Entering start sequence
14:21:54-474208 INFO     Base Platformpath: arch=x86_64 cpu=x86_64 system=Linux
sdnext-ipex  |data="/mnt/data"
14:21:54-474595 INFO     Base path: models="/mnt/models"
14:21:54-474996 INFO     Create: folder="/mnt/models/Stable-diffusion"
14:21:54-475399 INFO     Create: folder="/mnt/models/Diffusers"
14:21:54-475773 INFO     release=6.14.0-24-generic python=3.12.3 locale=('C',
sdnext-ipex  |Create: folder="/mnt/models/huggingface"
14:21:54-476141 INFO     Create: folder="/mnt/models/VAE"
14:21:54-476530 INFO                    'UTF-8') docker=True

sdnext-ipex  | 09:39:20-987344Create: folder="/mnt/models/UNET"
14:21:54-476903 INFO     Args: ['-f', '--use-ipex', '--uv', '--listen',
sdnext-ipex  |Create: folder="/mnt/models/Text-encoder"
14:21:54-477500 INFO     Create: folder="/mnt/models/Lora"
14:21:54-477885 INFO     Create: folder="/mnt/models/tunable"
14:21:54-478251 INFO     Create: folder="/mnt/models/embeddings"
14:21:54-478631 INFO      '--insecure', '--server-name sdnext.liutyi.info',
sdnext-ipex  |Create: folder="/mnt/models/ONNX/temp"
14:21:54-479037 INFO     Create: folder="/mnt/data/outputs/text"
14:21:54-479422 INFO     Create: folder="/mnt/data/outputs/image"
14:21:54-479796 INFO             '--update', '--api-log', '--log', 'sdnext.log']

sdnext-ipex  | 09:39:28-794452Create: folder="/mnt/data/outputs/control"
14:21:54-480201 INFO     Verifying torch installation
sdnext-ipex  | 09:39:28-800305Create: folder="/mnt/data/outputs/extras"
14:21:54-480585 INFO     IPEX: Intel OneAPI toolkit detected
sdnext-ipex  | 09:39:28-800813Create: folder="/mnt/data/outputs/inputs"
14:21:54-480949 INFO     Torch: download and install in progress...
sdnext-ipex  |Create: folder="/mnt/data/outputs/grids"
14:21:54-481343 INFO     Create: folder="/mnt/data/outputs/save"
14:21:54-481711 INFO     Create: folder="/mnt/data/outputs/video"
14:21:54-482341 INFO     Create: folder="/mnt/models/yolo"
14:21:54-482714 INFO     Create: cmd="torch==2.7.1+xpu torchvision==0.22.1+xpu
sdnext-ipex  |    folder="/mnt/models/wildcards"
14:21:54-483195 DEBUG    Initializing
14:21:54-520191 INFO     Available VAEs: path="/mnt/models/VAE" items=0
14:21:54-520799 INFO     Available        --index-url https://download.pytorch.org/whl/xpu"

sdnext-ipex  | 09:39:47-250742UNets: path="/mnt/models/UNET" items=0
14:21:54-521258 INFO     TransformersAvailable installTEs: version=4.53.2
sdnext-ipex  | 09:39:54-002845path="/mnt/models/Text-encoder" items=0
14:21:54-521818 INFO     DiffusersAvailable installModels:
sdnext-ipex      |                   safetensors="/mnt/models/Stable-diffusion":0
       commit=9c13f8657986e68f5f05987912c54432fd28d86f
sdnext-ipex  | 09:40:03-379010 INFO     Install: verifying requirements
sdnext-ipex  | 09:40:20-543998 WARNING  Install: packagediffusers="requests" installed=2.32.3
sdnext-ipex  |/mnt/models/Diffusers":0 reference=106
                            required=2.32.4 version mismatch
sdnext-ipex  | 09:40:24-323953 WARNING  Install: package="numpy" installed=2.3.1 required=2.1.2
sdnext-ipex  |items=0 time=0.00
14:21:54-534411 INFO     Available LoRAs: path="/mnt/models/Lora" items=0
                            version mismatch
sdnext-ipex  | 09:40:27-824620 WARNING  Install: package="protobuf" installed=6.31.1
sdnext-ipex  |folders=2 time=0.00
14:21:54-539670 INFO     Available Styles: path="/mnt/models/styles" items=288
                           requiredtime=4.25.3 version mismatch
sdnext-ipex  | 09:40:29-215550 WARNING0.00
14:21:54-541826 DEBUG    Install: package="urllib3basicsr" installed=2.5.0
sdnext-ipex  | install required
14:21:57-859249 DEBUG    Install:                       required=1.26.19 version mismatch
sdnext-ipex  | 09:40:29-578491 WARNING  Install: package="Pillow" installed=11.3.0
sdnext-ipex  |package="gfpgan" install required
14:22:00-303207 INFO     Available Detailer: path="/mnt/models/yolo" items=11
                           required=10.4.0 version mismatch
sdnext-ipex  | 09:40:31-005080 WARNING  Install: package="pydantic" installed=2.11.7
sdnext-ipex  |                          required=1.10.21 version mismatch
sdnext-ipex  | 09:40:32-101413 WARNING  Install: package="scipy" installed=1.16.0
sdnext-ipex  |downloaded=0
14:22:00-304138 DEBUG    Extensions: disabled=[]
14:22:00-304610 INFO     Load extensions
14:22:00-795505 DEBUG    Extensions init time: total=0.49 xyz_grid.py=0.18
                         stable-diffusion-webui-rembg=0.09
             required=1.14.1 version mismatch

sdnext-ipex  | 09:40:40-957425 INFO     Startup: standard
sdnext-ipex  | 09:40:40-957983 INFO     Verifying submodules

sdnext-ipex  | 09:41:02-944419 INFO sd-extension-chainner=0.07
14:22:00-813362 DEBUG    Read: file="html/upscalers.json" json=4 bytes=2640
         Extension installed packages:
sdnext-ipex  |            time=0.000 fn=__init__:__init__
14:22:00-814058 INFO     Upscaler create:      stable-diffusion-webui-rembg
sdnext-ipex  | folder="/mnt/models/chaiNNer"
14:22:00-814554 DEBUG    Read:
                         ['opencv-python-headless==4.12.0.88', 'pooch==1.8.2',
sdnext-ipex  |file="extensions-builtin/sd-extension-chainner/models.j
                         son" json=25 'pymatting==1.1.14', 'rembg==2.0.67']
sdnext-ipex  | 09:41:02-945357 INFO     Extensions enabled: ['sd-extension-chainner',
sdnext-ipex  |bytes=2803 time=0.000
                         fn=__init__:find_scalers
14:22:00-815407 DEBUG     'sd-extension-system-info', 'sd-webui-agent-scheduler',
sdnext-ipex  |Available chaiNNer: path="/mnt/models/chaiNNer"
                         defined=25 discovered=0 downloaded=0
14:22:00-816067 INFO      'sdnext-modernui', 'stable-diffusion-webui-rembg']
sdnext-ipex  | 09:41:02-956589 INFOUpscaler create: folder="/mnt/models/RealESRGAN"
14:22:00-816717 INFO     Available InstallUpscalers: verifying requirements
sdnext-ipex  | 09:41:02-958641 INFO items=72 downloaded=0 user=0
            Updating Wiki

sdnext-ipex  | 09:41:03-382695 INFO     Installer time: total=280.95 piptime=850.9502 install=71.04
sdnext-ipex  |      types=['None', 'Resize', 'Latent',
                    requirements=34.48 git=19.32 submodules=16.73
sdnext-ipex  | 'AsymmetricVAE', 'DCC', 'VIPS', 'ChaiNNer', 'AuraSR',
                     torch=16.03 diffusers=8.80 transformers=6.75
sdnext-ipex  |   'ESRGAN', 'RealESRGAN', 'SCUNet', 'Diffusion',
                       update=5.05 base=4.91 stable-diffusion-webui-rembg=3.50
sdnext-ipex  |       'SwinIR']
14:22:00-826361 DEBUG    Install: package="hf_transfer" install required
14:22:01-364069 INFO     Huggingface init: transfer=rust parallel=True
            packages=3.12 onnx=2.42 sd-extension-chainner=0.46
sdnext-ipex  |         direct=False token="None"
                sd-extension-system-info=0.44
sdnext-ipex  |       cache="/mnt/models/huggingface"
14:22:01-364862 DEBUG    Huggingface cache: path="/mnt/models/huggingface"
            sd-webui-agent-scheduler=0.43 wiki=0.42
sdnext-ipex  |          size=0 MB
14:22:01-365439 DEBUG    UI start sequence
14:22:01-366741 INFO     UI locale: sdnext-modernui=0.42 latest=0.39 branch=0.15 files=0.09

sdnext-ipex  | 09:41:03-384464name="Auto"
14:22:01-367226 INFO     CommandUI line argstheme: ['-f', '--use-ipex', '--uv',
sdnext-ipex  |   type=Modern name="Default" available=35
14:22:01-367773 DEBUG    UI theme:
                       '--listen', '--insecure', '--server-name
sdnext-ipex  | css="extensions-builtin/sdnext-modernui/themes/Default.
                            sdnext.liutyi.infocss" base="['base.css', '--update', '--api-log', '--log',
sdnext-ipex  | timesheet.css']" user="None"
14:22:01-439430 DEBUG    UI initialize: tab=txt2img
14:22:01-460909 DEBUG    Networks: type="model" items=104 subfolders=4
                  'sdnext.log'] insecure=True listen=True f=True
sdnext-ipex  |  tab=txt2img folders=['/mnt/models/Stable-diffusion',
                       upgrade=True uv=True use_ipex=True log=sdnext.log
sdnext-ipex  | 'models/Reference', '/mnt/models/Stable-diffusion']
                           api_log=True args=['--server-name sdnext.liutyi.info']

sdnext-ipex  | 09:41:11-889139 INFO     Torch: torch==2.7.1+xpu torchvision==0.22.1+xpu
sdnext-ipex  | 09:41:11-891191 INFO     Packages: diffusers==0.35.0.dev0 transformers==4.53.2
sdnext-ipex  |list=0.01 thumb=0.00 desc=0.00 info=0.00 workers=12
14:22:01-462379 DEBUG    Networks: type="lora" items=0 subfolders=1 tab=txt2img
                            accelerate==1.9.0 gradio==3.43.2 pydantic==1.10.21
sdnext-ipex  |folders=['/mnt/models/Lora'] list=0.01 thumb=0.01
                         desc=0.00 info=0.00 workers=12
14:22:01-467581 DEBUG    Networks: type="style" numpyitems==2.1.2

sdnext-ipex  | 09:41:12-407124 INFO288 subfolders=3
            Device detect: memory=125.3 default=balanced

sdnext-ipex  | 09:41:12-412036 INFO     Engine: backendtab=Backend.DIFFUSERStxt2img compute=ipex
sdnext-ipex  |folders=['/mnt/models/styles', 'html']
                            device=xpu attention="Scaled-Dot-Product" mode=no_grad

sdnext-ipex  | 09:41:12-916299 INFO     Torch parameters: backend=ipex device=xpu config=Auto
sdnext-ipex  |list=0.01 thumb=0.00 desc=0.00 info=0.00 workers=12
14:22:01-470088 DEBUG    Networks: type="wildcards" items=0 subfolders=1
                         tab=txt2img   dtype=torch.bfloat16 context=no_grad nohalf=False
sdnext-ipex  |folders=['/mnt/models/wildcards'] list=0.00
                         thumb=0.00 desc=0.00 info=0.00 workers=12
14:22:01-471061 DEBUG    Networks: nohalfvaetype=False"embedding" upcastitems=False0 deterministicsubfolders=False1
sdnext-ipex  |                          tunable=[False, False] fp16=pass bf16=pass
sdnext-ipex  |tab=txt2img folders=['/mnt/models/embeddings']
                         list=0.00 thumb=0.00 desc=0.00   optimization="Scaled-Dot-Product"

sdnext-ipex  | 09:41:12-917422 INFOinfo=0.00 workers=12
14:22:01-472019 DEBUG     DeviceNetworks: device=Intel(R) Arc(TM) Graphics ntype="vae" items=0 subfolders=1 ipextab=txt2img
sdnext-ipex  |                       folders=['/mnt/models/VAE']   driver=1.6.31294+20

sdnext-ipex  | 09:41:13-000978 TRACE    Trace: VAE
sdnext-ipex  | 09:41:13-079977 INFOlist=0.00 thumb=0.00
           Base path: data="/mnt/data"
sdnext-ipex  | 09:41:13-080481 INFO     Base path: models="/mnt/models"
sdnext-ipex  | 09:41:13-128374 INFO desc=0.00 info=0.00 workers=12
14:22:01-472930 DEBUG     Available VAEsNetworks: pathtype="/mnt/models/VAEhistory" items=0
sdnext-ipex subfolders=1
      | 09:41:13-129122 INFO     Available UNets: path="/mnt/models/UNET" items=0
sdnext-ipex  | 09:41:13-129636 INFO     Available TEs: path="/mnt/models/Text-encoder" items=0
sdnext-ipex  | 09:41:13-131256 INFOtab=txt2img folders=[] list=0.00 thumb=0.00 desc=0.00
            Available Models:
sdnext-ipex  |          info=0.00 workers=12
14:22:01-833528 DEBUG    UI initialize: tab=img2img
14:22:01-977612 DEBUG    UI initialize: tab=control safetensorsmodels="/mnt/models/Stable-diffusion":5
sdnext-ipex  |control"
14:22:02-241457 DEBUG    UI initialize: tab=video
14:22:02-342434 DEBUG    UI initialize: tab=process
14:22:02-370804 DEBUG    UI initialize: tab=caption
14:22:02-442271 DEBUG    UI initialize: tab=models
14:22:02-488111 DEBUG     diffusers="/mnt/models/Diffusers":33 items=38 time=0.00
sdnext-ipex  | 09:41:13-142003 INFOUI initialize: tab=gallery
14:22:02-512108 DEBUG    Reading Available LoRAsfailed: path="/mnt/models/Lora" items=0
sdnext-ipex  |data/ui-config.json [Errno 2] No
                         such file or folders=2 time=0.00
sdnext-ipex  | 09:41:13-146684 INFOdirectory: '/mnt/data/ui-config.json'
14:22:02-512713 DEBUG    UI initialize: tab=settings
14:22:02-515335 DEBUG    Settings: Available Styles: path="/mnt/models/styles" items=288
sdnext-ipex  |      sections=23 settings=371/587 quicksettings=0
14:22:02-820299 DEBUG    UI initialize: tab=info
14:22:02-834256 DEBUG    UI      initialize: tab=extensions
14:22:02-836909 INFO     Extension list is empty: refresh time=0.00
sdnext-ipex  | 09:41:23-911055 INFOrequired
14:22:02-859799 DEBUG    Extension Available Detailer: path="/mnt/models/yolo" items=11
sdnext-ipex  |list: processed=3 installed=3 enabled=3
                         disabled=0 visible=3 downloadedhidden=0
sdnext-ipex  | 09:41:23-912038 INFO     Load extensions
sdnext-ipex  | 09:41:25-419079 INFO14:22:03-227231 DEBUG    Save: file="/mnt/data/ui-config.json" json=0 bytes=2
         Extension:
sdnext-ipex  |              time=0.000
14:22:03-269461 DEBUG    Root paths:      script='extensions-builtin/sd-webui-agent-scheduler/scr
sdnext-ipex  |                   ['/app', '/mnt/data', '/mnt/models']
14:22:03-349864 INFO     Local URL: http://localhost:7860/
14:22:03-350439 WARNING  Public URL: enabled without authentication
14:22:03-350844 WARNING  Public URL: enabled with insecure flag
14:22:03-351235 INFO     External URL: ipts/task_scheduler.py' Using sqlite file:
sdnext-ipex  |http://172.19.0.2:7860
14:22:03-507766 INFO     Public URL: http://xx.xx.xx.xx:7860
14:22:03-508286 INFO     API    docs: http://localhost:7860/docs
14:22:03-508658 INFO     API     extensions-builtin/sd-webui-agent-scheduler/task_schedu
sdnext-ipex  | redocs: http://localhost:7860/redocs
14:22:03-510130 DEBUG    API middleware: [<class
                         ler.sqlite3
sdnext-ipex  | 09:41:25-441239 INFO'starlette.middleware.base.BaseHTTPMiddleware'>, <class
       Available Upscalers: items=72 downloaded=0 user=0
sdnext-ipex  |            'starlette.middleware.gzip.GZipMiddleware'>]
14:22:03-510720 DEBUG    API initialize
14:22:03-637255 DEBUG    Scripts  setup: time=0.02271 types=['None', 'Resize', 'Latent',
sdnext-ipex  |     XYZ Grid:0.031']
14:22:03-638136 DEBUG    Model metadata: file="/mnt/data/metadata.json" no
                     'AsymmetricVAE', 'DCC', 'VIPS', 'ChaiNNer', 'AuraSR',
sdnext-ipex  | changes
14:22:03-638651 INFO     Model:     autoload=True selected="model.safetensors"
14:22:03-639815 DEBUG    Model requested: fn=threading.py:run:<lambda>
14:22:03-640847 ERROR    No      'ESRGAN', 'RealESRGAN', 'SCUNet', 'Diffusion',
sdnext-ipex  |models found
14:22:03-641442 INFO     Set system paths to use existing folders
14:22:03-642024 INFO       or use --models-dir <path-to-folder> to    'SwinIR']
sdnext-ipexspecify base
  | 09:41:25-450058 INFO        UI locale: name="Auto"
sdnext-ipex  | 09:41:25-450541 INFO     UI theme: type=Standard name="black-teal" available=13
sdnext-ipex  | 09:41:26-915157 INFO folder with all models
14:22:03-642721 INFO      Extension list is empty: refresh required

sdnext-ipex  | 09:41:27-137364 INFO or use --ckpt <path-to-checkpoint> to force using
           Local URL: http://localhost:7860/
sdnext-ipex  | 09:41:27-137947 WARNING  Public URL: enabled without authentication
sdnext-ipex  |specific 09model
14:4122:27-138350 WARNING03-643462 DEBUG    Public URL: enabled with insecure flag

sdnext-ipex  | 09:41:27-138779Cache clear
14:22:03-644778 DEBUG    Script init: ['system-info.py:app_started=0.05']
14:22:03-645267 INFO     ExternalStartup URLtime: http://172.21.0.3:7860
sdnext-ipex  | 09:41:27-318564 INFOtotal=376.61 launch=120.26 loader=119.98
            Public URL: http://xx.xx.xx.xx:7860

sdnext-ipex  | 09:41:27-743268 INFO     [AgentScheduler] Task queue is empty
sdnext-ipex  | 09:41:27-743982 INFOinstaller=119.97 detailer=5.76 torch=4.11
             [AgentScheduler] Registering APIs

sdnext-ipex  | 09:41:30-738759 INFO     Startup time: total=350.54 launch=108.02 numpy=107.87
sdnext-ipex  | libraries=2.23 gradio=0.87 cleanup=0.54 extensions=0.49
                           installer=107.73 detailer=10.76 torch=6.36
sdnext-ipex  |ui-defaults=0.36 ui-txt2img=0.34 ui-extensions=0.34
                            checkpoint=2.91 extensions=1.51 libraries=1.50
sdnext-ipex  |ui-networks=0.24 bnb=0.20 ui-control=0.19
                            gradio=1.44 app-startedui-img2img=0.11 ui-models=0.4410 ui-extensionsvideo=0.34
sdnext-ipex  |08 api=0.07
                          ui-gallerydiffusers=0.2307 uiapp-modelsstarted=0.05
14:22 ui-control=0.19
sdnext-ipex  |:03-648495 DEBUG    Save: file="/mnt/data/config.json" json=12 bytes=618
                          ui-networkstime=0.17 bnb=0.16 ui-txt2img=0.12
sdnext-ipex  |004
14:22:09-443940 INFO     API user=None code=200 http/1.1 GET /sdapi/v1/version
                         172.19.0.1 0.0004
14:22:09-446849 DEBUG     ui-img2img=0.11 ui-video=0.07 diffusers=0.07 api=0.07
sdnext-ipex  |UI: connected
14:22:11-818033 INFO     API user=None code=200 http/1.1 GET /sdapi/v1/version
                          ui-defaults=0.07172.19.0.1 0.0017
14:22:11-819108 DEBUG    UI: connected