├── .github └── workflows │ ├── benchmark.yml │ └── lint.yml ├── .gitignore ├── .pre-commit-config.yaml ├── README.md ├── artifacts └── latest.json ├── benchmarks ├── __init__.py ├── __main__.py ├── benchmark_comfy.py ├── benchmark_diffusers.py ├── benchmark_experimental.py ├── benchmark_minsdxl.py ├── benchmark_oneflow.py ├── benchmark_stablefast.py ├── benchmark_tensorrt.py ├── compare_table.py ├── settings.py └── update_table.py ├── pyproject.toml └── requirements-dev.txt /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/README.md -------------------------------------------------------------------------------- /artifacts/latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/artifacts/latest.json -------------------------------------------------------------------------------- /benchmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/benchmarks/__main__.py -------------------------------------------------------------------------------- /benchmarks/benchmark_comfy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/benchmarks/benchmark_comfy.py -------------------------------------------------------------------------------- /benchmarks/benchmark_diffusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/benchmarks/benchmark_diffusers.py -------------------------------------------------------------------------------- /benchmarks/benchmark_experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/benchmarks/benchmark_experimental.py -------------------------------------------------------------------------------- /benchmarks/benchmark_minsdxl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/benchmarks/benchmark_minsdxl.py -------------------------------------------------------------------------------- /benchmarks/benchmark_oneflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/benchmarks/benchmark_oneflow.py -------------------------------------------------------------------------------- /benchmarks/benchmark_stablefast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/benchmarks/benchmark_stablefast.py -------------------------------------------------------------------------------- /benchmarks/benchmark_tensorrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/benchmarks/benchmark_tensorrt.py -------------------------------------------------------------------------------- /benchmarks/compare_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/benchmarks/compare_table.py -------------------------------------------------------------------------------- /benchmarks/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/benchmarks/settings.py -------------------------------------------------------------------------------- /benchmarks/update_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/benchmarks/update_table.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fal-ai/stable-diffusion-benchmarks/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------