├── .github └── workflows │ └── publish.yml ├── LICENSE ├── README.md ├── __init__.py ├── pyproject.toml ├── readme_images ├── image1.png ├── image10.png ├── image11.png ├── image2.png ├── image3.png ├── image4.png ├── image5.png ├── image6.png ├── image7.png ├── image8.png └── image9.png ├── requirements.txt ├── tensorrt_convert.py ├── tensorrt_loader.py └── workflows ├── Build.TRT.Engine_SD1.5_Dynamic.json ├── Build.TRT.Engine_SD1.5_Static.json ├── Build.TRT.Engine_SDXL_Base_Static.json ├── Build.TRT.Engine_SDXL_Turbo_Static.json ├── Build.TRT.Engine_SVD_Static.json ├── Build.TRT.Engine_SVD_XT_Static.json ├── Create_SD1.5_PyTorch.json ├── Create_SD1.5_TRT_Dynamic.json ├── Create_SD1.5_TRT_Static.json ├── Create_SDXL_Base_PyTorch.json ├── Create_SDXL_Base_TT_Static.json ├── Create_SDXL_Turbo_PyTorch.json ├── Create_SDXL_Turbo_TRT_Static.json ├── Create_SVD_Pytorch.json ├── Create_SVD_TRT_Static.json ├── Create_SVD_XT_PyTorch.json └── Create_SVD_XT_TRT_Static.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/__init__.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme_images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/readme_images/image1.png -------------------------------------------------------------------------------- /readme_images/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/readme_images/image10.png -------------------------------------------------------------------------------- /readme_images/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/readme_images/image11.png -------------------------------------------------------------------------------- /readme_images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/readme_images/image2.png -------------------------------------------------------------------------------- /readme_images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/readme_images/image3.png -------------------------------------------------------------------------------- /readme_images/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/readme_images/image4.png -------------------------------------------------------------------------------- /readme_images/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/readme_images/image5.png -------------------------------------------------------------------------------- /readme_images/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/readme_images/image6.png -------------------------------------------------------------------------------- /readme_images/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/readme_images/image7.png -------------------------------------------------------------------------------- /readme_images/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/readme_images/image8.png -------------------------------------------------------------------------------- /readme_images/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/readme_images/image9.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tensorrt>=10.0.1 2 | onnx!=1.16.2 3 | -------------------------------------------------------------------------------- /tensorrt_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/tensorrt_convert.py -------------------------------------------------------------------------------- /tensorrt_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/tensorrt_loader.py -------------------------------------------------------------------------------- /workflows/Build.TRT.Engine_SD1.5_Dynamic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/workflows/Build.TRT.Engine_SD1.5_Dynamic.json -------------------------------------------------------------------------------- /workflows/Build.TRT.Engine_SD1.5_Static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/workflows/Build.TRT.Engine_SD1.5_Static.json -------------------------------------------------------------------------------- /workflows/Build.TRT.Engine_SDXL_Base_Static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/workflows/Build.TRT.Engine_SDXL_Base_Static.json -------------------------------------------------------------------------------- /workflows/Build.TRT.Engine_SDXL_Turbo_Static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/workflows/Build.TRT.Engine_SDXL_Turbo_Static.json -------------------------------------------------------------------------------- /workflows/Build.TRT.Engine_SVD_Static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/workflows/Build.TRT.Engine_SVD_Static.json -------------------------------------------------------------------------------- /workflows/Build.TRT.Engine_SVD_XT_Static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/workflows/Build.TRT.Engine_SVD_XT_Static.json -------------------------------------------------------------------------------- /workflows/Create_SD1.5_PyTorch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/workflows/Create_SD1.5_PyTorch.json -------------------------------------------------------------------------------- /workflows/Create_SD1.5_TRT_Dynamic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/workflows/Create_SD1.5_TRT_Dynamic.json -------------------------------------------------------------------------------- /workflows/Create_SD1.5_TRT_Static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/workflows/Create_SD1.5_TRT_Static.json -------------------------------------------------------------------------------- /workflows/Create_SDXL_Base_PyTorch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/workflows/Create_SDXL_Base_PyTorch.json -------------------------------------------------------------------------------- /workflows/Create_SDXL_Base_TT_Static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/workflows/Create_SDXL_Base_TT_Static.json -------------------------------------------------------------------------------- /workflows/Create_SDXL_Turbo_PyTorch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/workflows/Create_SDXL_Turbo_PyTorch.json -------------------------------------------------------------------------------- /workflows/Create_SDXL_Turbo_TRT_Static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/workflows/Create_SDXL_Turbo_TRT_Static.json -------------------------------------------------------------------------------- /workflows/Create_SVD_Pytorch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/workflows/Create_SVD_Pytorch.json -------------------------------------------------------------------------------- /workflows/Create_SVD_TRT_Static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/workflows/Create_SVD_TRT_Static.json -------------------------------------------------------------------------------- /workflows/Create_SVD_XT_PyTorch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/workflows/Create_SVD_XT_PyTorch.json -------------------------------------------------------------------------------- /workflows/Create_SVD_XT_TRT_Static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comfyanonymous/ComfyUI_TensorRT/HEAD/workflows/Create_SVD_XT_TRT_Static.json --------------------------------------------------------------------------------