├── FastBlend ├── api.py ├── cupy_kernels.py ├── data.py ├── patch_match.py └── runners │ ├── __init__.py │ ├── accurate.py │ ├── balanced.py │ ├── fast.py │ └── interpolation.py ├── LICENSE ├── README.md ├── independent_webui.py ├── install.py └── scripts └── ui.py /FastBlend/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artiprocher/sd-webui-fastblend/HEAD/FastBlend/api.py -------------------------------------------------------------------------------- /FastBlend/cupy_kernels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artiprocher/sd-webui-fastblend/HEAD/FastBlend/cupy_kernels.py -------------------------------------------------------------------------------- /FastBlend/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artiprocher/sd-webui-fastblend/HEAD/FastBlend/data.py -------------------------------------------------------------------------------- /FastBlend/patch_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artiprocher/sd-webui-fastblend/HEAD/FastBlend/patch_match.py -------------------------------------------------------------------------------- /FastBlend/runners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artiprocher/sd-webui-fastblend/HEAD/FastBlend/runners/__init__.py -------------------------------------------------------------------------------- /FastBlend/runners/accurate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artiprocher/sd-webui-fastblend/HEAD/FastBlend/runners/accurate.py -------------------------------------------------------------------------------- /FastBlend/runners/balanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artiprocher/sd-webui-fastblend/HEAD/FastBlend/runners/balanced.py -------------------------------------------------------------------------------- /FastBlend/runners/fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artiprocher/sd-webui-fastblend/HEAD/FastBlend/runners/fast.py -------------------------------------------------------------------------------- /FastBlend/runners/interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artiprocher/sd-webui-fastblend/HEAD/FastBlend/runners/interpolation.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artiprocher/sd-webui-fastblend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artiprocher/sd-webui-fastblend/HEAD/README.md -------------------------------------------------------------------------------- /independent_webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artiprocher/sd-webui-fastblend/HEAD/independent_webui.py -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artiprocher/sd-webui-fastblend/HEAD/install.py -------------------------------------------------------------------------------- /scripts/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artiprocher/sd-webui-fastblend/HEAD/scripts/ui.py --------------------------------------------------------------------------------