├── .gitignore ├── MochiCacheAnalysis.patch ├── OpenSoraCacheAnalysis.patch ├── README.md ├── attn_processor.py ├── caption1000.txt ├── cogvideo_example.py ├── exp_1_varying_prompt.py ├── exp_2_varying_model.py ├── flux_example.py ├── latte_example.py ├── pixartalpha_example.py ├── requirements.txt ├── run_experiments.sh └── sd3_example.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | /figs/ 3 | /results/ 4 | -------------------------------------------------------------------------------- /MochiCacheAnalysis.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdit-project/DiTCacheAnalysis/HEAD/MochiCacheAnalysis.patch -------------------------------------------------------------------------------- /OpenSoraCacheAnalysis.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdit-project/DiTCacheAnalysis/HEAD/OpenSoraCacheAnalysis.patch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdit-project/DiTCacheAnalysis/HEAD/README.md -------------------------------------------------------------------------------- /attn_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdit-project/DiTCacheAnalysis/HEAD/attn_processor.py -------------------------------------------------------------------------------- /caption1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdit-project/DiTCacheAnalysis/HEAD/caption1000.txt -------------------------------------------------------------------------------- /cogvideo_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdit-project/DiTCacheAnalysis/HEAD/cogvideo_example.py -------------------------------------------------------------------------------- /exp_1_varying_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdit-project/DiTCacheAnalysis/HEAD/exp_1_varying_prompt.py -------------------------------------------------------------------------------- /exp_2_varying_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdit-project/DiTCacheAnalysis/HEAD/exp_2_varying_model.py -------------------------------------------------------------------------------- /flux_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdit-project/DiTCacheAnalysis/HEAD/flux_example.py -------------------------------------------------------------------------------- /latte_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdit-project/DiTCacheAnalysis/HEAD/latte_example.py -------------------------------------------------------------------------------- /pixartalpha_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdit-project/DiTCacheAnalysis/HEAD/pixartalpha_example.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdit-project/DiTCacheAnalysis/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_experiments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdit-project/DiTCacheAnalysis/HEAD/run_experiments.sh -------------------------------------------------------------------------------- /sd3_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdit-project/DiTCacheAnalysis/HEAD/sd3_example.py --------------------------------------------------------------------------------