├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── benchmarks ├── benchmark.csv ├── benchmark_H100_MIG.csv └── benchmark_no_xformers.csv ├── docs ├── benchmark-update.md ├── benchmark.md └── pictures │ ├── FreeMono.ttf │ ├── benchmark_sd_precision_history.gif │ ├── benchmark_sd_precision_step_70.png │ ├── cost_analysis.png │ ├── pretty_benchmark_sd_txt2img_batchsize_vs_throughput.png │ ├── pretty_benchmark_sd_txt2img_gpu_vs_cpu.png │ ├── pretty_benchmark_sd_txt2img_latency.png │ ├── pretty_benchmark_sd_txt2img_mem.png │ ├── pretty_benchmark_sd_txt2img_throughput.png │ ├── sd_throughput.png │ ├── sd_throughput_mig.png │ └── sd_throughput_noxformer.png ├── lambda_diffusers ├── __init__.py └── pipelines │ ├── __init__.py │ └── pipeline_stable_diffusion_im_embed.py ├── notebooks └── pokemon_demo.ipynb ├── requirements.txt ├── scripts ├── Dockerfile ├── Makefile ├── benchmark.py ├── benchmark_quality.py └── convert_sd_image_to_diffusers.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/benchmark.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/benchmarks/benchmark.csv -------------------------------------------------------------------------------- /benchmarks/benchmark_H100_MIG.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/benchmarks/benchmark_H100_MIG.csv -------------------------------------------------------------------------------- /benchmarks/benchmark_no_xformers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/benchmarks/benchmark_no_xformers.csv -------------------------------------------------------------------------------- /docs/benchmark-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/docs/benchmark-update.md -------------------------------------------------------------------------------- /docs/benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/docs/benchmark.md -------------------------------------------------------------------------------- /docs/pictures/FreeMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/docs/pictures/FreeMono.ttf -------------------------------------------------------------------------------- /docs/pictures/benchmark_sd_precision_history.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/docs/pictures/benchmark_sd_precision_history.gif -------------------------------------------------------------------------------- /docs/pictures/benchmark_sd_precision_step_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/docs/pictures/benchmark_sd_precision_step_70.png -------------------------------------------------------------------------------- /docs/pictures/cost_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/docs/pictures/cost_analysis.png -------------------------------------------------------------------------------- /docs/pictures/pretty_benchmark_sd_txt2img_batchsize_vs_throughput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/docs/pictures/pretty_benchmark_sd_txt2img_batchsize_vs_throughput.png -------------------------------------------------------------------------------- /docs/pictures/pretty_benchmark_sd_txt2img_gpu_vs_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/docs/pictures/pretty_benchmark_sd_txt2img_gpu_vs_cpu.png -------------------------------------------------------------------------------- /docs/pictures/pretty_benchmark_sd_txt2img_latency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/docs/pictures/pretty_benchmark_sd_txt2img_latency.png -------------------------------------------------------------------------------- /docs/pictures/pretty_benchmark_sd_txt2img_mem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/docs/pictures/pretty_benchmark_sd_txt2img_mem.png -------------------------------------------------------------------------------- /docs/pictures/pretty_benchmark_sd_txt2img_throughput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/docs/pictures/pretty_benchmark_sd_txt2img_throughput.png -------------------------------------------------------------------------------- /docs/pictures/sd_throughput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/docs/pictures/sd_throughput.png -------------------------------------------------------------------------------- /docs/pictures/sd_throughput_mig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/docs/pictures/sd_throughput_mig.png -------------------------------------------------------------------------------- /docs/pictures/sd_throughput_noxformer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/docs/pictures/sd_throughput_noxformer.png -------------------------------------------------------------------------------- /lambda_diffusers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/lambda_diffusers/__init__.py -------------------------------------------------------------------------------- /lambda_diffusers/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/lambda_diffusers/pipelines/__init__.py -------------------------------------------------------------------------------- /lambda_diffusers/pipelines/pipeline_stable_diffusion_im_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/lambda_diffusers/pipelines/pipeline_stable_diffusion_im_embed.py -------------------------------------------------------------------------------- /notebooks/pokemon_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/notebooks/pokemon_demo.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/scripts/Dockerfile -------------------------------------------------------------------------------- /scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/scripts/Makefile -------------------------------------------------------------------------------- /scripts/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/scripts/benchmark.py -------------------------------------------------------------------------------- /scripts/benchmark_quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/scripts/benchmark_quality.py -------------------------------------------------------------------------------- /scripts/convert_sd_image_to_diffusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/scripts/convert_sd_image_to_diffusers.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaLabsML/lambda-diffusers/HEAD/setup.py --------------------------------------------------------------------------------