diffusers 0.27.1__py3-none-any.whl → 0.32.2__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (445) hide show
  1. diffusers/__init__.py +233 -6
  2. diffusers/callbacks.py +209 -0
  3. diffusers/commands/env.py +102 -6
  4. diffusers/configuration_utils.py +45 -16
  5. diffusers/dependency_versions_table.py +4 -3
  6. diffusers/image_processor.py +434 -110
  7. diffusers/loaders/__init__.py +42 -9
  8. diffusers/loaders/ip_adapter.py +626 -36
  9. diffusers/loaders/lora_base.py +900 -0
  10. diffusers/loaders/lora_conversion_utils.py +991 -125
  11. diffusers/loaders/lora_pipeline.py +3812 -0
  12. diffusers/loaders/peft.py +571 -7
  13. diffusers/loaders/single_file.py +405 -173
  14. diffusers/loaders/single_file_model.py +385 -0
  15. diffusers/loaders/single_file_utils.py +1783 -713
  16. diffusers/loaders/textual_inversion.py +41 -23
  17. diffusers/loaders/transformer_flux.py +181 -0
  18. diffusers/loaders/transformer_sd3.py +89 -0
  19. diffusers/loaders/unet.py +464 -540
  20. diffusers/loaders/unet_loader_utils.py +163 -0
  21. diffusers/models/__init__.py +76 -7
  22. diffusers/models/activations.py +65 -10
  23. diffusers/models/adapter.py +53 -53
  24. diffusers/models/attention.py +605 -18
  25. diffusers/models/attention_flax.py +1 -1
  26. diffusers/models/attention_processor.py +4304 -687
  27. diffusers/models/autoencoders/__init__.py +8 -0
  28. diffusers/models/autoencoders/autoencoder_asym_kl.py +15 -17
  29. diffusers/models/autoencoders/autoencoder_dc.py +620 -0
  30. diffusers/models/autoencoders/autoencoder_kl.py +110 -28
  31. diffusers/models/autoencoders/autoencoder_kl_allegro.py +1149 -0
  32. diffusers/models/autoencoders/autoencoder_kl_cogvideox.py +1482 -0
  33. diffusers/models/autoencoders/autoencoder_kl_hunyuan_video.py +1176 -0
  34. diffusers/models/autoencoders/autoencoder_kl_ltx.py +1338 -0
  35. diffusers/models/autoencoders/autoencoder_kl_mochi.py +1166 -0
  36. diffusers/models/autoencoders/autoencoder_kl_temporal_decoder.py +19 -24
  37. diffusers/models/autoencoders/autoencoder_oobleck.py +464 -0
  38. diffusers/models/autoencoders/autoencoder_tiny.py +21 -18
  39. diffusers/models/autoencoders/consistency_decoder_vae.py +45 -20
  40. diffusers/models/autoencoders/vae.py +41 -29
  41. diffusers/models/autoencoders/vq_model.py +182 -0
  42. diffusers/models/controlnet.py +47 -800
  43. diffusers/models/controlnet_flux.py +70 -0
  44. diffusers/models/controlnet_sd3.py +68 -0
  45. diffusers/models/controlnet_sparsectrl.py +116 -0
  46. diffusers/models/controlnets/__init__.py +23 -0
  47. diffusers/models/controlnets/controlnet.py +872 -0
  48. diffusers/models/{controlnet_flax.py → controlnets/controlnet_flax.py} +9 -9
  49. diffusers/models/controlnets/controlnet_flux.py +536 -0
  50. diffusers/models/controlnets/controlnet_hunyuan.py +401 -0
  51. diffusers/models/controlnets/controlnet_sd3.py +489 -0
  52. diffusers/models/controlnets/controlnet_sparsectrl.py +788 -0
  53. diffusers/models/controlnets/controlnet_union.py +832 -0
  54. diffusers/models/controlnets/controlnet_xs.py +1946 -0
  55. diffusers/models/controlnets/multicontrolnet.py +183 -0
  56. diffusers/models/downsampling.py +85 -18
  57. diffusers/models/embeddings.py +1856 -158
  58. diffusers/models/embeddings_flax.py +23 -9
  59. diffusers/models/model_loading_utils.py +480 -0
  60. diffusers/models/modeling_flax_pytorch_utils.py +2 -1
  61. diffusers/models/modeling_flax_utils.py +2 -7
  62. diffusers/models/modeling_outputs.py +14 -0
  63. diffusers/models/modeling_pytorch_flax_utils.py +1 -1
  64. diffusers/models/modeling_utils.py +611 -146
  65. diffusers/models/normalization.py +361 -20
  66. diffusers/models/resnet.py +18 -23
  67. diffusers/models/transformers/__init__.py +16 -0
  68. diffusers/models/transformers/auraflow_transformer_2d.py +544 -0
  69. diffusers/models/transformers/cogvideox_transformer_3d.py +542 -0
  70. diffusers/models/transformers/dit_transformer_2d.py +240 -0
  71. diffusers/models/transformers/dual_transformer_2d.py +9 -8
  72. diffusers/models/transformers/hunyuan_transformer_2d.py +578 -0
  73. diffusers/models/transformers/latte_transformer_3d.py +327 -0
  74. diffusers/models/transformers/lumina_nextdit2d.py +340 -0
  75. diffusers/models/transformers/pixart_transformer_2d.py +445 -0
  76. diffusers/models/transformers/prior_transformer.py +13 -13
  77. diffusers/models/transformers/sana_transformer.py +488 -0
  78. diffusers/models/transformers/stable_audio_transformer.py +458 -0
  79. diffusers/models/transformers/t5_film_transformer.py +17 -19
  80. diffusers/models/transformers/transformer_2d.py +297 -187
  81. diffusers/models/transformers/transformer_allegro.py +422 -0
  82. diffusers/models/transformers/transformer_cogview3plus.py +386 -0
  83. diffusers/models/transformers/transformer_flux.py +593 -0
  84. diffusers/models/transformers/transformer_hunyuan_video.py +791 -0
  85. diffusers/models/transformers/transformer_ltx.py +469 -0
  86. diffusers/models/transformers/transformer_mochi.py +499 -0
  87. diffusers/models/transformers/transformer_sd3.py +461 -0
  88. diffusers/models/transformers/transformer_temporal.py +21 -19
  89. diffusers/models/unets/unet_1d.py +8 -8
  90. diffusers/models/unets/unet_1d_blocks.py +31 -31
  91. diffusers/models/unets/unet_2d.py +17 -10
  92. diffusers/models/unets/unet_2d_blocks.py +225 -149
  93. diffusers/models/unets/unet_2d_condition.py +41 -40
  94. diffusers/models/unets/unet_2d_condition_flax.py +6 -5
  95. diffusers/models/unets/unet_3d_blocks.py +192 -1057
  96. diffusers/models/unets/unet_3d_condition.py +22 -27
  97. diffusers/models/unets/unet_i2vgen_xl.py +22 -18
  98. diffusers/models/unets/unet_kandinsky3.py +2 -2
  99. diffusers/models/unets/unet_motion_model.py +1413 -89
  100. diffusers/models/unets/unet_spatio_temporal_condition.py +40 -16
  101. diffusers/models/unets/unet_stable_cascade.py +19 -18
  102. diffusers/models/unets/uvit_2d.py +2 -2
  103. diffusers/models/upsampling.py +95 -26
  104. diffusers/models/vq_model.py +12 -164
  105. diffusers/optimization.py +1 -1
  106. diffusers/pipelines/__init__.py +202 -3
  107. diffusers/pipelines/allegro/__init__.py +48 -0
  108. diffusers/pipelines/allegro/pipeline_allegro.py +938 -0
  109. diffusers/pipelines/allegro/pipeline_output.py +23 -0
  110. diffusers/pipelines/amused/pipeline_amused.py +12 -12
  111. diffusers/pipelines/amused/pipeline_amused_img2img.py +14 -12
  112. diffusers/pipelines/amused/pipeline_amused_inpaint.py +13 -11
  113. diffusers/pipelines/animatediff/__init__.py +8 -0
  114. diffusers/pipelines/animatediff/pipeline_animatediff.py +122 -109
  115. diffusers/pipelines/animatediff/pipeline_animatediff_controlnet.py +1106 -0
  116. diffusers/pipelines/animatediff/pipeline_animatediff_sdxl.py +1288 -0
  117. diffusers/pipelines/animatediff/pipeline_animatediff_sparsectrl.py +1010 -0
  118. diffusers/pipelines/animatediff/pipeline_animatediff_video2video.py +236 -180
  119. diffusers/pipelines/animatediff/pipeline_animatediff_video2video_controlnet.py +1341 -0
  120. diffusers/pipelines/animatediff/pipeline_output.py +3 -2
  121. diffusers/pipelines/audioldm/pipeline_audioldm.py +14 -14
  122. diffusers/pipelines/audioldm2/modeling_audioldm2.py +58 -39
  123. diffusers/pipelines/audioldm2/pipeline_audioldm2.py +121 -36
  124. diffusers/pipelines/aura_flow/__init__.py +48 -0
  125. diffusers/pipelines/aura_flow/pipeline_aura_flow.py +584 -0
  126. diffusers/pipelines/auto_pipeline.py +196 -28
  127. diffusers/pipelines/blip_diffusion/blip_image_processing.py +1 -1
  128. diffusers/pipelines/blip_diffusion/modeling_blip2.py +6 -6
  129. diffusers/pipelines/blip_diffusion/modeling_ctx_clip.py +1 -1
  130. diffusers/pipelines/blip_diffusion/pipeline_blip_diffusion.py +2 -2
  131. diffusers/pipelines/cogvideo/__init__.py +54 -0
  132. diffusers/pipelines/cogvideo/pipeline_cogvideox.py +772 -0
  133. diffusers/pipelines/cogvideo/pipeline_cogvideox_fun_control.py +825 -0
  134. diffusers/pipelines/cogvideo/pipeline_cogvideox_image2video.py +885 -0
  135. diffusers/pipelines/cogvideo/pipeline_cogvideox_video2video.py +851 -0
  136. diffusers/pipelines/cogvideo/pipeline_output.py +20 -0
  137. diffusers/pipelines/cogview3/__init__.py +47 -0
  138. diffusers/pipelines/cogview3/pipeline_cogview3plus.py +674 -0
  139. diffusers/pipelines/cogview3/pipeline_output.py +21 -0
  140. diffusers/pipelines/consistency_models/pipeline_consistency_models.py +6 -6
  141. diffusers/pipelines/controlnet/__init__.py +86 -80
  142. diffusers/pipelines/controlnet/multicontrolnet.py +7 -182
  143. diffusers/pipelines/controlnet/pipeline_controlnet.py +134 -87
  144. diffusers/pipelines/controlnet/pipeline_controlnet_blip_diffusion.py +2 -2
  145. diffusers/pipelines/controlnet/pipeline_controlnet_img2img.py +93 -77
  146. diffusers/pipelines/controlnet/pipeline_controlnet_inpaint.py +88 -197
  147. diffusers/pipelines/controlnet/pipeline_controlnet_inpaint_sd_xl.py +136 -90
  148. diffusers/pipelines/controlnet/pipeline_controlnet_sd_xl.py +176 -80
  149. diffusers/pipelines/controlnet/pipeline_controlnet_sd_xl_img2img.py +125 -89
  150. diffusers/pipelines/controlnet/pipeline_controlnet_union_inpaint_sd_xl.py +1790 -0
  151. diffusers/pipelines/controlnet/pipeline_controlnet_union_sd_xl.py +1501 -0
  152. diffusers/pipelines/controlnet/pipeline_controlnet_union_sd_xl_img2img.py +1627 -0
  153. diffusers/pipelines/controlnet/pipeline_flax_controlnet.py +2 -2
  154. diffusers/pipelines/controlnet_hunyuandit/__init__.py +48 -0
  155. diffusers/pipelines/controlnet_hunyuandit/pipeline_hunyuandit_controlnet.py +1060 -0
  156. diffusers/pipelines/controlnet_sd3/__init__.py +57 -0
  157. diffusers/pipelines/controlnet_sd3/pipeline_stable_diffusion_3_controlnet.py +1133 -0
  158. diffusers/pipelines/controlnet_sd3/pipeline_stable_diffusion_3_controlnet_inpainting.py +1153 -0
  159. diffusers/pipelines/controlnet_xs/__init__.py +68 -0
  160. diffusers/pipelines/controlnet_xs/pipeline_controlnet_xs.py +916 -0
  161. diffusers/pipelines/controlnet_xs/pipeline_controlnet_xs_sd_xl.py +1111 -0
  162. diffusers/pipelines/ddpm/pipeline_ddpm.py +2 -2
  163. diffusers/pipelines/deepfloyd_if/pipeline_if.py +16 -30
  164. diffusers/pipelines/deepfloyd_if/pipeline_if_img2img.py +20 -35
  165. diffusers/pipelines/deepfloyd_if/pipeline_if_img2img_superresolution.py +23 -41
  166. diffusers/pipelines/deepfloyd_if/pipeline_if_inpainting.py +22 -38
  167. diffusers/pipelines/deepfloyd_if/pipeline_if_inpainting_superresolution.py +25 -41
  168. diffusers/pipelines/deepfloyd_if/pipeline_if_superresolution.py +19 -34
  169. diffusers/pipelines/deepfloyd_if/pipeline_output.py +6 -5
  170. diffusers/pipelines/deepfloyd_if/watermark.py +1 -1
  171. diffusers/pipelines/deprecated/alt_diffusion/modeling_roberta_series.py +11 -11
  172. diffusers/pipelines/deprecated/alt_diffusion/pipeline_alt_diffusion.py +70 -30
  173. diffusers/pipelines/deprecated/alt_diffusion/pipeline_alt_diffusion_img2img.py +48 -25
  174. diffusers/pipelines/deprecated/repaint/pipeline_repaint.py +2 -2
  175. diffusers/pipelines/deprecated/spectrogram_diffusion/pipeline_spectrogram_diffusion.py +7 -7
  176. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_cycle_diffusion.py +21 -20
  177. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_inpaint_legacy.py +27 -29
  178. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_model_editing.py +33 -27
  179. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_paradigms.py +33 -23
  180. diffusers/pipelines/deprecated/stable_diffusion_variants/pipeline_stable_diffusion_pix2pix_zero.py +36 -30
  181. diffusers/pipelines/deprecated/versatile_diffusion/modeling_text_unet.py +102 -69
  182. diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion.py +13 -13
  183. diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion_dual_guided.py +10 -5
  184. diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion_image_variation.py +11 -6
  185. diffusers/pipelines/deprecated/versatile_diffusion/pipeline_versatile_diffusion_text_to_image.py +10 -5
  186. diffusers/pipelines/deprecated/vq_diffusion/pipeline_vq_diffusion.py +5 -5
  187. diffusers/pipelines/dit/pipeline_dit.py +7 -4
  188. diffusers/pipelines/flux/__init__.py +69 -0
  189. diffusers/pipelines/flux/modeling_flux.py +47 -0
  190. diffusers/pipelines/flux/pipeline_flux.py +957 -0
  191. diffusers/pipelines/flux/pipeline_flux_control.py +889 -0
  192. diffusers/pipelines/flux/pipeline_flux_control_img2img.py +945 -0
  193. diffusers/pipelines/flux/pipeline_flux_control_inpaint.py +1141 -0
  194. diffusers/pipelines/flux/pipeline_flux_controlnet.py +1006 -0
  195. diffusers/pipelines/flux/pipeline_flux_controlnet_image_to_image.py +998 -0
  196. diffusers/pipelines/flux/pipeline_flux_controlnet_inpainting.py +1204 -0
  197. diffusers/pipelines/flux/pipeline_flux_fill.py +969 -0
  198. diffusers/pipelines/flux/pipeline_flux_img2img.py +856 -0
  199. diffusers/pipelines/flux/pipeline_flux_inpaint.py +1022 -0
  200. diffusers/pipelines/flux/pipeline_flux_prior_redux.py +492 -0
  201. diffusers/pipelines/flux/pipeline_output.py +37 -0
  202. diffusers/pipelines/free_init_utils.py +41 -38
  203. diffusers/pipelines/free_noise_utils.py +596 -0
  204. diffusers/pipelines/hunyuan_video/__init__.py +48 -0
  205. diffusers/pipelines/hunyuan_video/pipeline_hunyuan_video.py +687 -0
  206. diffusers/pipelines/hunyuan_video/pipeline_output.py +20 -0
  207. diffusers/pipelines/hunyuandit/__init__.py +48 -0
  208. diffusers/pipelines/hunyuandit/pipeline_hunyuandit.py +916 -0
  209. diffusers/pipelines/i2vgen_xl/pipeline_i2vgen_xl.py +33 -48
  210. diffusers/pipelines/kandinsky/pipeline_kandinsky.py +8 -8
  211. diffusers/pipelines/kandinsky/pipeline_kandinsky_combined.py +32 -29
  212. diffusers/pipelines/kandinsky/pipeline_kandinsky_img2img.py +11 -11
  213. diffusers/pipelines/kandinsky/pipeline_kandinsky_inpaint.py +12 -12
  214. diffusers/pipelines/kandinsky/pipeline_kandinsky_prior.py +10 -10
  215. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2.py +6 -6
  216. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_combined.py +34 -31
  217. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_controlnet.py +10 -10
  218. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_controlnet_img2img.py +10 -10
  219. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_img2img.py +6 -6
  220. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_inpainting.py +8 -8
  221. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_prior.py +7 -7
  222. diffusers/pipelines/kandinsky2_2/pipeline_kandinsky2_2_prior_emb2emb.py +6 -6
  223. diffusers/pipelines/kandinsky3/convert_kandinsky3_unet.py +3 -3
  224. diffusers/pipelines/kandinsky3/pipeline_kandinsky3.py +22 -35
  225. diffusers/pipelines/kandinsky3/pipeline_kandinsky3_img2img.py +26 -37
  226. diffusers/pipelines/kolors/__init__.py +54 -0
  227. diffusers/pipelines/kolors/pipeline_kolors.py +1070 -0
  228. diffusers/pipelines/kolors/pipeline_kolors_img2img.py +1250 -0
  229. diffusers/pipelines/kolors/pipeline_output.py +21 -0
  230. diffusers/pipelines/kolors/text_encoder.py +889 -0
  231. diffusers/pipelines/kolors/tokenizer.py +338 -0
  232. diffusers/pipelines/latent_consistency_models/pipeline_latent_consistency_img2img.py +82 -62
  233. diffusers/pipelines/latent_consistency_models/pipeline_latent_consistency_text2img.py +77 -60
  234. diffusers/pipelines/latent_diffusion/pipeline_latent_diffusion.py +12 -12
  235. diffusers/pipelines/latte/__init__.py +48 -0
  236. diffusers/pipelines/latte/pipeline_latte.py +881 -0
  237. diffusers/pipelines/ledits_pp/pipeline_leditspp_stable_diffusion.py +80 -74
  238. diffusers/pipelines/ledits_pp/pipeline_leditspp_stable_diffusion_xl.py +85 -76
  239. diffusers/pipelines/ledits_pp/pipeline_output.py +2 -2
  240. diffusers/pipelines/ltx/__init__.py +50 -0
  241. diffusers/pipelines/ltx/pipeline_ltx.py +789 -0
  242. diffusers/pipelines/ltx/pipeline_ltx_image2video.py +885 -0
  243. diffusers/pipelines/ltx/pipeline_output.py +20 -0
  244. diffusers/pipelines/lumina/__init__.py +48 -0
  245. diffusers/pipelines/lumina/pipeline_lumina.py +890 -0
  246. diffusers/pipelines/marigold/__init__.py +50 -0
  247. diffusers/pipelines/marigold/marigold_image_processing.py +576 -0
  248. diffusers/pipelines/marigold/pipeline_marigold_depth.py +813 -0
  249. diffusers/pipelines/marigold/pipeline_marigold_normals.py +690 -0
  250. diffusers/pipelines/mochi/__init__.py +48 -0
  251. diffusers/pipelines/mochi/pipeline_mochi.py +748 -0
  252. diffusers/pipelines/mochi/pipeline_output.py +20 -0
  253. diffusers/pipelines/musicldm/pipeline_musicldm.py +14 -14
  254. diffusers/pipelines/pag/__init__.py +80 -0
  255. diffusers/pipelines/pag/pag_utils.py +243 -0
  256. diffusers/pipelines/pag/pipeline_pag_controlnet_sd.py +1328 -0
  257. diffusers/pipelines/pag/pipeline_pag_controlnet_sd_inpaint.py +1543 -0
  258. diffusers/pipelines/pag/pipeline_pag_controlnet_sd_xl.py +1610 -0
  259. diffusers/pipelines/pag/pipeline_pag_controlnet_sd_xl_img2img.py +1683 -0
  260. diffusers/pipelines/pag/pipeline_pag_hunyuandit.py +969 -0
  261. diffusers/pipelines/pag/pipeline_pag_kolors.py +1136 -0
  262. diffusers/pipelines/pag/pipeline_pag_pixart_sigma.py +865 -0
  263. diffusers/pipelines/pag/pipeline_pag_sana.py +886 -0
  264. diffusers/pipelines/pag/pipeline_pag_sd.py +1062 -0
  265. diffusers/pipelines/pag/pipeline_pag_sd_3.py +994 -0
  266. diffusers/pipelines/pag/pipeline_pag_sd_3_img2img.py +1058 -0
  267. diffusers/pipelines/pag/pipeline_pag_sd_animatediff.py +866 -0
  268. diffusers/pipelines/pag/pipeline_pag_sd_img2img.py +1094 -0
  269. diffusers/pipelines/pag/pipeline_pag_sd_inpaint.py +1356 -0
  270. diffusers/pipelines/pag/pipeline_pag_sd_xl.py +1345 -0
  271. diffusers/pipelines/pag/pipeline_pag_sd_xl_img2img.py +1544 -0
  272. diffusers/pipelines/pag/pipeline_pag_sd_xl_inpaint.py +1776 -0
  273. diffusers/pipelines/paint_by_example/pipeline_paint_by_example.py +17 -12
  274. diffusers/pipelines/pia/pipeline_pia.py +74 -164
  275. diffusers/pipelines/pipeline_flax_utils.py +5 -10
  276. diffusers/pipelines/pipeline_loading_utils.py +515 -53
  277. diffusers/pipelines/pipeline_utils.py +411 -222
  278. diffusers/pipelines/pixart_alpha/__init__.py +8 -1
  279. diffusers/pipelines/pixart_alpha/pipeline_pixart_alpha.py +76 -93
  280. diffusers/pipelines/pixart_alpha/pipeline_pixart_sigma.py +873 -0
  281. diffusers/pipelines/sana/__init__.py +47 -0
  282. diffusers/pipelines/sana/pipeline_output.py +21 -0
  283. diffusers/pipelines/sana/pipeline_sana.py +884 -0
  284. diffusers/pipelines/semantic_stable_diffusion/pipeline_semantic_stable_diffusion.py +27 -23
  285. diffusers/pipelines/shap_e/pipeline_shap_e.py +3 -3
  286. diffusers/pipelines/shap_e/pipeline_shap_e_img2img.py +14 -14
  287. diffusers/pipelines/shap_e/renderer.py +1 -1
  288. diffusers/pipelines/stable_audio/__init__.py +50 -0
  289. diffusers/pipelines/stable_audio/modeling_stable_audio.py +158 -0
  290. diffusers/pipelines/stable_audio/pipeline_stable_audio.py +756 -0
  291. diffusers/pipelines/stable_cascade/pipeline_stable_cascade.py +71 -25
  292. diffusers/pipelines/stable_cascade/pipeline_stable_cascade_combined.py +23 -19
  293. diffusers/pipelines/stable_cascade/pipeline_stable_cascade_prior.py +35 -34
  294. diffusers/pipelines/stable_diffusion/__init__.py +0 -1
  295. diffusers/pipelines/stable_diffusion/convert_from_ckpt.py +20 -11
  296. diffusers/pipelines/stable_diffusion/pipeline_flax_stable_diffusion.py +1 -1
  297. diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion.py +2 -2
  298. diffusers/pipelines/stable_diffusion/pipeline_onnx_stable_diffusion_upscale.py +6 -6
  299. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion.py +145 -79
  300. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_depth2img.py +43 -28
  301. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_image_variation.py +13 -8
  302. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_img2img.py +100 -68
  303. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_inpaint.py +109 -201
  304. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_instruct_pix2pix.py +131 -32
  305. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_latent_upscale.py +247 -87
  306. diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_upscale.py +30 -29
  307. diffusers/pipelines/stable_diffusion/pipeline_stable_unclip.py +35 -27
  308. diffusers/pipelines/stable_diffusion/pipeline_stable_unclip_img2img.py +49 -42
  309. diffusers/pipelines/stable_diffusion/safety_checker.py +2 -1
  310. diffusers/pipelines/stable_diffusion_3/__init__.py +54 -0
  311. diffusers/pipelines/stable_diffusion_3/pipeline_output.py +21 -0
  312. diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3.py +1140 -0
  313. diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_img2img.py +1036 -0
  314. diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_inpaint.py +1250 -0
  315. diffusers/pipelines/stable_diffusion_attend_and_excite/pipeline_stable_diffusion_attend_and_excite.py +29 -20
  316. diffusers/pipelines/stable_diffusion_diffedit/pipeline_stable_diffusion_diffedit.py +59 -58
  317. diffusers/pipelines/stable_diffusion_gligen/pipeline_stable_diffusion_gligen.py +31 -25
  318. diffusers/pipelines/stable_diffusion_gligen/pipeline_stable_diffusion_gligen_text_image.py +38 -22
  319. diffusers/pipelines/stable_diffusion_k_diffusion/pipeline_stable_diffusion_k_diffusion.py +30 -24
  320. diffusers/pipelines/stable_diffusion_k_diffusion/pipeline_stable_diffusion_xl_k_diffusion.py +24 -23
  321. diffusers/pipelines/stable_diffusion_ldm3d/pipeline_stable_diffusion_ldm3d.py +107 -67
  322. diffusers/pipelines/stable_diffusion_panorama/pipeline_stable_diffusion_panorama.py +316 -69
  323. diffusers/pipelines/stable_diffusion_safe/pipeline_stable_diffusion_safe.py +10 -5
  324. diffusers/pipelines/stable_diffusion_safe/safety_checker.py +1 -1
  325. diffusers/pipelines/stable_diffusion_sag/pipeline_stable_diffusion_sag.py +98 -30
  326. diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl.py +121 -83
  327. diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl_img2img.py +161 -105
  328. diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl_inpaint.py +142 -218
  329. diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl_instruct_pix2pix.py +45 -29
  330. diffusers/pipelines/stable_diffusion_xl/watermark.py +9 -3
  331. diffusers/pipelines/stable_video_diffusion/pipeline_stable_video_diffusion.py +110 -57
  332. diffusers/pipelines/t2i_adapter/pipeline_stable_diffusion_adapter.py +69 -39
  333. diffusers/pipelines/t2i_adapter/pipeline_stable_diffusion_xl_adapter.py +105 -74
  334. diffusers/pipelines/text_to_video_synthesis/pipeline_output.py +3 -2
  335. diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_synth.py +29 -49
  336. diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_synth_img2img.py +32 -93
  337. diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_zero.py +37 -25
  338. diffusers/pipelines/text_to_video_synthesis/pipeline_text_to_video_zero_sdxl.py +54 -40
  339. diffusers/pipelines/unclip/pipeline_unclip.py +6 -6
  340. diffusers/pipelines/unclip/pipeline_unclip_image_variation.py +6 -6
  341. diffusers/pipelines/unidiffuser/modeling_text_decoder.py +1 -1
  342. diffusers/pipelines/unidiffuser/modeling_uvit.py +12 -12
  343. diffusers/pipelines/unidiffuser/pipeline_unidiffuser.py +29 -28
  344. diffusers/pipelines/wuerstchen/modeling_paella_vq_model.py +5 -5
  345. diffusers/pipelines/wuerstchen/modeling_wuerstchen_common.py +5 -10
  346. diffusers/pipelines/wuerstchen/modeling_wuerstchen_prior.py +6 -8
  347. diffusers/pipelines/wuerstchen/pipeline_wuerstchen.py +4 -4
  348. diffusers/pipelines/wuerstchen/pipeline_wuerstchen_combined.py +12 -12
  349. diffusers/pipelines/wuerstchen/pipeline_wuerstchen_prior.py +15 -14
  350. diffusers/{models/dual_transformer_2d.py → quantizers/__init__.py} +2 -6
  351. diffusers/quantizers/auto.py +139 -0
  352. diffusers/quantizers/base.py +233 -0
  353. diffusers/quantizers/bitsandbytes/__init__.py +2 -0
  354. diffusers/quantizers/bitsandbytes/bnb_quantizer.py +561 -0
  355. diffusers/quantizers/bitsandbytes/utils.py +306 -0
  356. diffusers/quantizers/gguf/__init__.py +1 -0
  357. diffusers/quantizers/gguf/gguf_quantizer.py +159 -0
  358. diffusers/quantizers/gguf/utils.py +456 -0
  359. diffusers/quantizers/quantization_config.py +669 -0
  360. diffusers/quantizers/torchao/__init__.py +15 -0
  361. diffusers/quantizers/torchao/torchao_quantizer.py +292 -0
  362. diffusers/schedulers/__init__.py +12 -2
  363. diffusers/schedulers/deprecated/__init__.py +1 -1
  364. diffusers/schedulers/deprecated/scheduling_karras_ve.py +25 -25
  365. diffusers/schedulers/scheduling_amused.py +5 -5
  366. diffusers/schedulers/scheduling_consistency_decoder.py +11 -11
  367. diffusers/schedulers/scheduling_consistency_models.py +23 -25
  368. diffusers/schedulers/scheduling_cosine_dpmsolver_multistep.py +572 -0
  369. diffusers/schedulers/scheduling_ddim.py +27 -26
  370. diffusers/schedulers/scheduling_ddim_cogvideox.py +452 -0
  371. diffusers/schedulers/scheduling_ddim_flax.py +2 -1
  372. diffusers/schedulers/scheduling_ddim_inverse.py +16 -16
  373. diffusers/schedulers/scheduling_ddim_parallel.py +32 -31
  374. diffusers/schedulers/scheduling_ddpm.py +27 -30
  375. diffusers/schedulers/scheduling_ddpm_flax.py +7 -3
  376. diffusers/schedulers/scheduling_ddpm_parallel.py +33 -36
  377. diffusers/schedulers/scheduling_ddpm_wuerstchen.py +14 -14
  378. diffusers/schedulers/scheduling_deis_multistep.py +150 -50
  379. diffusers/schedulers/scheduling_dpm_cogvideox.py +489 -0
  380. diffusers/schedulers/scheduling_dpmsolver_multistep.py +221 -84
  381. diffusers/schedulers/scheduling_dpmsolver_multistep_flax.py +2 -2
  382. diffusers/schedulers/scheduling_dpmsolver_multistep_inverse.py +158 -52
  383. diffusers/schedulers/scheduling_dpmsolver_sde.py +153 -34
  384. diffusers/schedulers/scheduling_dpmsolver_singlestep.py +275 -86
  385. diffusers/schedulers/scheduling_edm_dpmsolver_multistep.py +81 -57
  386. diffusers/schedulers/scheduling_edm_euler.py +62 -39
  387. diffusers/schedulers/scheduling_euler_ancestral_discrete.py +30 -29
  388. diffusers/schedulers/scheduling_euler_discrete.py +255 -74
  389. diffusers/schedulers/scheduling_flow_match_euler_discrete.py +458 -0
  390. diffusers/schedulers/scheduling_flow_match_heun_discrete.py +320 -0
  391. diffusers/schedulers/scheduling_heun_discrete.py +174 -46
  392. diffusers/schedulers/scheduling_ipndm.py +9 -9
  393. diffusers/schedulers/scheduling_k_dpm_2_ancestral_discrete.py +138 -29
  394. diffusers/schedulers/scheduling_k_dpm_2_discrete.py +132 -26
  395. diffusers/schedulers/scheduling_karras_ve_flax.py +6 -6
  396. diffusers/schedulers/scheduling_lcm.py +23 -29
  397. diffusers/schedulers/scheduling_lms_discrete.py +105 -28
  398. diffusers/schedulers/scheduling_pndm.py +20 -20
  399. diffusers/schedulers/scheduling_repaint.py +21 -21
  400. diffusers/schedulers/scheduling_sasolver.py +157 -60
  401. diffusers/schedulers/scheduling_sde_ve.py +19 -19
  402. diffusers/schedulers/scheduling_tcd.py +41 -36
  403. diffusers/schedulers/scheduling_unclip.py +19 -16
  404. diffusers/schedulers/scheduling_unipc_multistep.py +243 -47
  405. diffusers/schedulers/scheduling_utils.py +12 -5
  406. diffusers/schedulers/scheduling_utils_flax.py +1 -3
  407. diffusers/schedulers/scheduling_vq_diffusion.py +10 -10
  408. diffusers/training_utils.py +214 -30
  409. diffusers/utils/__init__.py +17 -1
  410. diffusers/utils/constants.py +3 -0
  411. diffusers/utils/doc_utils.py +1 -0
  412. diffusers/utils/dummy_pt_objects.py +592 -7
  413. diffusers/utils/dummy_torch_and_torchsde_objects.py +15 -0
  414. diffusers/utils/dummy_torch_and_transformers_and_sentencepiece_objects.py +47 -0
  415. diffusers/utils/dummy_torch_and_transformers_objects.py +1001 -71
  416. diffusers/utils/dynamic_modules_utils.py +34 -29
  417. diffusers/utils/export_utils.py +50 -6
  418. diffusers/utils/hub_utils.py +131 -17
  419. diffusers/utils/import_utils.py +210 -8
  420. diffusers/utils/loading_utils.py +118 -5
  421. diffusers/utils/logging.py +4 -2
  422. diffusers/utils/peft_utils.py +37 -7
  423. diffusers/utils/state_dict_utils.py +13 -2
  424. diffusers/utils/testing_utils.py +193 -11
  425. diffusers/utils/torch_utils.py +4 -0
  426. diffusers/video_processor.py +113 -0
  427. {diffusers-0.27.1.dist-info → diffusers-0.32.2.dist-info}/METADATA +82 -91
  428. diffusers-0.32.2.dist-info/RECORD +550 -0
  429. {diffusers-0.27.1.dist-info → diffusers-0.32.2.dist-info}/WHEEL +1 -1
  430. diffusers/loaders/autoencoder.py +0 -146
  431. diffusers/loaders/controlnet.py +0 -136
  432. diffusers/loaders/lora.py +0 -1349
  433. diffusers/models/prior_transformer.py +0 -12
  434. diffusers/models/t5_film_transformer.py +0 -70
  435. diffusers/models/transformer_2d.py +0 -25
  436. diffusers/models/transformer_temporal.py +0 -34
  437. diffusers/models/unet_1d.py +0 -26
  438. diffusers/models/unet_1d_blocks.py +0 -203
  439. diffusers/models/unet_2d.py +0 -27
  440. diffusers/models/unet_2d_blocks.py +0 -375
  441. diffusers/models/unet_2d_condition.py +0 -25
  442. diffusers-0.27.1.dist-info/RECORD +0 -399
  443. {diffusers-0.27.1.dist-info → diffusers-0.32.2.dist-info}/LICENSE +0 -0
  444. {diffusers-0.27.1.dist-info → diffusers-0.32.2.dist-info}/entry_points.txt +0 -0
  445. {diffusers-0.27.1.dist-info → diffusers-0.32.2.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,561 @@
1
+ # Copyright 2024 The HuggingFace Inc. team. All rights reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ """
15
+ Adapted from
16
+ https://github.com/huggingface/transformers/blob/c409cd81777fb27aadc043ed3d8339dbc020fb3b/src/transformers/quantizers/quantizer_bnb_4bit.py
17
+ """
18
+
19
+ from typing import TYPE_CHECKING, Any, Dict, List, Optional, Union
20
+
21
+ from ...utils import get_module_from_name
22
+ from ..base import DiffusersQuantizer
23
+
24
+
25
+ if TYPE_CHECKING:
26
+ from ...models.modeling_utils import ModelMixin
27
+
28
+ from ...utils import (
29
+ is_accelerate_available,
30
+ is_accelerate_version,
31
+ is_bitsandbytes_available,
32
+ is_bitsandbytes_version,
33
+ is_torch_available,
34
+ logging,
35
+ )
36
+
37
+
38
+ if is_torch_available():
39
+ import torch
40
+
41
+ logger = logging.get_logger(__name__)
42
+
43
+
44
+ class BnB4BitDiffusersQuantizer(DiffusersQuantizer):
45
+ """
46
+ 4-bit quantization from bitsandbytes.py quantization method:
47
+ before loading: converts transformer layers into Linear4bit during loading: load 16bit weight and pass to the
48
+ layer object after: quantizes individual weights in Linear4bit into 4bit at the first .cuda() call saving:
49
+ from state dict, as usual; saves weights and `quant_state` components
50
+ loading:
51
+ need to locate `quant_state` components and pass to Param4bit constructor
52
+ """
53
+
54
+ use_keep_in_fp32_modules = True
55
+ requires_calibration = False
56
+
57
+ def __init__(self, quantization_config, **kwargs):
58
+ super().__init__(quantization_config, **kwargs)
59
+
60
+ if self.quantization_config.llm_int8_skip_modules is not None:
61
+ self.modules_to_not_convert = self.quantization_config.llm_int8_skip_modules
62
+
63
+ def validate_environment(self, *args, **kwargs):
64
+ if not torch.cuda.is_available():
65
+ raise RuntimeError("No GPU found. A GPU is needed for quantization.")
66
+ if not is_accelerate_available() or is_accelerate_version("<", "0.26.0"):
67
+ raise ImportError(
68
+ "Using `bitsandbytes` 4-bit quantization requires Accelerate: `pip install 'accelerate>=0.26.0'`"
69
+ )
70
+ if not is_bitsandbytes_available() or is_bitsandbytes_version("<", "0.43.3"):
71
+ raise ImportError(
72
+ "Using `bitsandbytes` 4-bit quantization requires the latest version of bitsandbytes: `pip install -U bitsandbytes`"
73
+ )
74
+
75
+ if kwargs.get("from_flax", False):
76
+ raise ValueError(
77
+ "Converting into 4-bit weights from flax weights is currently not supported, please make"
78
+ " sure the weights are in PyTorch format."
79
+ )
80
+
81
+ device_map = kwargs.get("device_map", None)
82
+ if (
83
+ device_map is not None
84
+ and isinstance(device_map, dict)
85
+ and not self.quantization_config.llm_int8_enable_fp32_cpu_offload
86
+ ):
87
+ device_map_without_no_convert = {
88
+ key: device_map[key] for key in device_map.keys() if key not in self.modules_to_not_convert
89
+ }
90
+ if "cpu" in device_map_without_no_convert.values() or "disk" in device_map_without_no_convert.values():
91
+ raise ValueError(
92
+ "Some modules are dispatched on the CPU or the disk. Make sure you have enough GPU RAM to fit the "
93
+ "quantized model. If you want to dispatch the model on the CPU or the disk while keeping these modules "
94
+ "in 32-bit, you need to set `load_in_8bit_fp32_cpu_offload=True` and pass a custom `device_map` to "
95
+ "`from_pretrained`. Check "
96
+ "https://huggingface.co/docs/transformers/main/en/main_classes/quantization#offload-between-cpu-and-gpu "
97
+ "for more details. "
98
+ )
99
+
100
+ def adjust_target_dtype(self, target_dtype: "torch.dtype") -> "torch.dtype":
101
+ if target_dtype != torch.int8:
102
+ from accelerate.utils import CustomDtype
103
+
104
+ logger.info("target_dtype {target_dtype} is replaced by `CustomDtype.INT4` for 4-bit BnB quantization")
105
+ return CustomDtype.INT4
106
+ else:
107
+ raise ValueError(f"Wrong `target_dtype` ({target_dtype}) provided.")
108
+
109
+ def check_if_quantized_param(
110
+ self,
111
+ model: "ModelMixin",
112
+ param_value: "torch.Tensor",
113
+ param_name: str,
114
+ state_dict: Dict[str, Any],
115
+ **kwargs,
116
+ ) -> bool:
117
+ import bitsandbytes as bnb
118
+
119
+ module, tensor_name = get_module_from_name(model, param_name)
120
+ if isinstance(module._parameters.get(tensor_name, None), bnb.nn.Params4bit):
121
+ # Add here check for loaded components' dtypes once serialization is implemented
122
+ return True
123
+ elif isinstance(module, bnb.nn.Linear4bit) and tensor_name == "bias":
124
+ # bias could be loaded by regular set_module_tensor_to_device() from accelerate,
125
+ # but it would wrongly use uninitialized weight there.
126
+ return True
127
+ else:
128
+ return False
129
+
130
+ def create_quantized_param(
131
+ self,
132
+ model: "ModelMixin",
133
+ param_value: "torch.Tensor",
134
+ param_name: str,
135
+ target_device: "torch.device",
136
+ state_dict: Dict[str, Any],
137
+ unexpected_keys: Optional[List[str]] = None,
138
+ ):
139
+ import bitsandbytes as bnb
140
+
141
+ module, tensor_name = get_module_from_name(model, param_name)
142
+
143
+ if tensor_name not in module._parameters:
144
+ raise ValueError(f"{module} does not have a parameter or a buffer named {tensor_name}.")
145
+
146
+ old_value = getattr(module, tensor_name)
147
+
148
+ if tensor_name == "bias":
149
+ if param_value is None:
150
+ new_value = old_value.to(target_device)
151
+ else:
152
+ new_value = param_value.to(target_device)
153
+
154
+ new_value = torch.nn.Parameter(new_value, requires_grad=old_value.requires_grad)
155
+ module._parameters[tensor_name] = new_value
156
+ return
157
+
158
+ if not isinstance(module._parameters[tensor_name], bnb.nn.Params4bit):
159
+ raise ValueError("this function only loads `Linear4bit components`")
160
+ if (
161
+ old_value.device == torch.device("meta")
162
+ and target_device not in ["meta", torch.device("meta")]
163
+ and param_value is None
164
+ ):
165
+ raise ValueError(f"{tensor_name} is on the meta device, we need a `value` to put in on {target_device}.")
166
+
167
+ # construct `new_value` for the module._parameters[tensor_name]:
168
+ if self.pre_quantized:
169
+ # 4bit loading. Collecting components for restoring quantized weight
170
+ # This can be expanded to make a universal call for any quantized weight loading
171
+
172
+ if not self.is_serializable:
173
+ raise ValueError(
174
+ "Detected int4 weights but the version of bitsandbytes is not compatible with int4 serialization. "
175
+ "Make sure to download the latest `bitsandbytes` version. `pip install --upgrade bitsandbytes`."
176
+ )
177
+
178
+ if (param_name + ".quant_state.bitsandbytes__fp4" not in state_dict) and (
179
+ param_name + ".quant_state.bitsandbytes__nf4" not in state_dict
180
+ ):
181
+ raise ValueError(
182
+ f"Supplied state dict for {param_name} does not contain `bitsandbytes__*` and possibly other `quantized_stats` components."
183
+ )
184
+
185
+ quantized_stats = {}
186
+ for k, v in state_dict.items():
187
+ # `startswith` to counter for edge cases where `param_name`
188
+ # substring can be present in multiple places in the `state_dict`
189
+ if param_name + "." in k and k.startswith(param_name):
190
+ quantized_stats[k] = v
191
+ if unexpected_keys is not None and k in unexpected_keys:
192
+ unexpected_keys.remove(k)
193
+
194
+ new_value = bnb.nn.Params4bit.from_prequantized(
195
+ data=param_value,
196
+ quantized_stats=quantized_stats,
197
+ requires_grad=False,
198
+ device=target_device,
199
+ )
200
+ else:
201
+ new_value = param_value.to("cpu")
202
+ kwargs = old_value.__dict__
203
+ new_value = bnb.nn.Params4bit(new_value, requires_grad=False, **kwargs).to(target_device)
204
+
205
+ module._parameters[tensor_name] = new_value
206
+
207
+ def check_quantized_param_shape(self, param_name, current_param, loaded_param):
208
+ current_param_shape = current_param.shape
209
+ loaded_param_shape = loaded_param.shape
210
+
211
+ n = current_param_shape.numel()
212
+ inferred_shape = (n,) if "bias" in param_name else ((n + 1) // 2, 1)
213
+ if loaded_param_shape != inferred_shape:
214
+ raise ValueError(
215
+ f"Expected the flattened shape of the current param ({param_name}) to be {loaded_param_shape} but is {inferred_shape}."
216
+ )
217
+ else:
218
+ return True
219
+
220
+ def adjust_max_memory(self, max_memory: Dict[str, Union[int, str]]) -> Dict[str, Union[int, str]]:
221
+ # need more space for buffers that are created during quantization
222
+ max_memory = {key: val * 0.90 for key, val in max_memory.items()}
223
+ return max_memory
224
+
225
+ def update_torch_dtype(self, torch_dtype: "torch.dtype") -> "torch.dtype":
226
+ if torch_dtype is None:
227
+ # We force the `dtype` to be float16, this is a requirement from `bitsandbytes`
228
+ logger.info(
229
+ "Overriding torch_dtype=%s with `torch_dtype=torch.float16` due to "
230
+ "requirements of `bitsandbytes` to enable model loading in 8-bit or 4-bit. "
231
+ "Pass your own torch_dtype to specify the dtype of the remaining non-linear layers or pass"
232
+ " torch_dtype=torch.float16 to remove this warning.",
233
+ torch_dtype,
234
+ )
235
+ torch_dtype = torch.float16
236
+ return torch_dtype
237
+
238
+ # (sayakpaul): I think it could be better to disable custom `device_map`s
239
+ # for the first phase of the integration in the interest of simplicity.
240
+ # Commenting this for discussions on the PR.
241
+ # def update_device_map(self, device_map):
242
+ # if device_map is None:
243
+ # device_map = {"": torch.cuda.current_device()}
244
+ # logger.info(
245
+ # "The device_map was not initialized. "
246
+ # "Setting device_map to {'':torch.cuda.current_device()}. "
247
+ # "If you want to use the model for inference, please set device_map ='auto' "
248
+ # )
249
+ # return device_map
250
+
251
+ def _process_model_before_weight_loading(
252
+ self,
253
+ model: "ModelMixin",
254
+ device_map,
255
+ keep_in_fp32_modules: List[str] = [],
256
+ **kwargs,
257
+ ):
258
+ from .utils import replace_with_bnb_linear
259
+
260
+ load_in_8bit_fp32_cpu_offload = self.quantization_config.llm_int8_enable_fp32_cpu_offload
261
+
262
+ # We may keep some modules such as the `proj_out` in their original dtype for numerical stability reasons
263
+ self.modules_to_not_convert = self.quantization_config.llm_int8_skip_modules
264
+
265
+ if not isinstance(self.modules_to_not_convert, list):
266
+ self.modules_to_not_convert = [self.modules_to_not_convert]
267
+
268
+ self.modules_to_not_convert.extend(keep_in_fp32_modules)
269
+
270
+ # Extend `self.modules_to_not_convert` to keys that are supposed to be offloaded to `cpu` or `disk`
271
+ if isinstance(device_map, dict) and len(device_map.keys()) > 1:
272
+ keys_on_cpu = [key for key, value in device_map.items() if value in ["disk", "cpu"]]
273
+
274
+ if len(keys_on_cpu) > 0 and not load_in_8bit_fp32_cpu_offload:
275
+ raise ValueError(
276
+ "If you want to offload some keys to `cpu` or `disk`, you need to set "
277
+ "`llm_int8_enable_fp32_cpu_offload=True`. Note that these modules will not be "
278
+ " converted to 8-bit but kept in 32-bit."
279
+ )
280
+ self.modules_to_not_convert.extend(keys_on_cpu)
281
+
282
+ # Purge `None`.
283
+ # Unlike `transformers`, we don't know if we should always keep certain modules in FP32
284
+ # in case of diffusion transformer models. For language models and others alike, `lm_head`
285
+ # and tied modules are usually kept in FP32.
286
+ self.modules_to_not_convert = [module for module in self.modules_to_not_convert if module is not None]
287
+
288
+ model = replace_with_bnb_linear(
289
+ model, modules_to_not_convert=self.modules_to_not_convert, quantization_config=self.quantization_config
290
+ )
291
+ model.config.quantization_config = self.quantization_config
292
+
293
+ def _process_model_after_weight_loading(self, model: "ModelMixin", **kwargs):
294
+ model.is_loaded_in_4bit = True
295
+ model.is_4bit_serializable = self.is_serializable
296
+ return model
297
+
298
+ @property
299
+ def is_serializable(self):
300
+ # Because we're mandating `bitsandbytes` 0.43.3.
301
+ return True
302
+
303
+ @property
304
+ def is_trainable(self) -> bool:
305
+ # Because we're mandating `bitsandbytes` 0.43.3.
306
+ return True
307
+
308
+ def _dequantize(self, model):
309
+ from .utils import dequantize_and_replace
310
+
311
+ is_model_on_cpu = model.device.type == "cpu"
312
+ if is_model_on_cpu:
313
+ logger.info(
314
+ "Model was found to be on CPU (could happen as a result of `enable_model_cpu_offload()`). So, moving it to GPU. After dequantization, will move the model back to CPU again to preserve the previous device."
315
+ )
316
+ model.to(torch.cuda.current_device())
317
+
318
+ model = dequantize_and_replace(
319
+ model, self.modules_to_not_convert, quantization_config=self.quantization_config
320
+ )
321
+ if is_model_on_cpu:
322
+ model.to("cpu")
323
+ return model
324
+
325
+
326
+ class BnB8BitDiffusersQuantizer(DiffusersQuantizer):
327
+ """
328
+ 8-bit quantization from bitsandbytes quantization method:
329
+ before loading: converts transformer layers into Linear8bitLt during loading: load 16bit weight and pass to the
330
+ layer object after: quantizes individual weights in Linear8bitLt into 8bit at fitst .cuda() call
331
+ saving:
332
+ from state dict, as usual; saves weights and 'SCB' component
333
+ loading:
334
+ need to locate SCB component and pass to the Linear8bitLt object
335
+ """
336
+
337
+ use_keep_in_fp32_modules = True
338
+ requires_calibration = False
339
+
340
+ def __init__(self, quantization_config, **kwargs):
341
+ super().__init__(quantization_config, **kwargs)
342
+
343
+ if self.quantization_config.llm_int8_skip_modules is not None:
344
+ self.modules_to_not_convert = self.quantization_config.llm_int8_skip_modules
345
+
346
+ def validate_environment(self, *args, **kwargs):
347
+ if not torch.cuda.is_available():
348
+ raise RuntimeError("No GPU found. A GPU is needed for quantization.")
349
+ if not is_accelerate_available() or is_accelerate_version("<", "0.26.0"):
350
+ raise ImportError(
351
+ "Using `bitsandbytes` 8-bit quantization requires Accelerate: `pip install 'accelerate>=0.26.0'`"
352
+ )
353
+ if not is_bitsandbytes_available() or is_bitsandbytes_version("<", "0.43.3"):
354
+ raise ImportError(
355
+ "Using `bitsandbytes` 8-bit quantization requires the latest version of bitsandbytes: `pip install -U bitsandbytes`"
356
+ )
357
+
358
+ if kwargs.get("from_flax", False):
359
+ raise ValueError(
360
+ "Converting into 8-bit weights from flax weights is currently not supported, please make"
361
+ " sure the weights are in PyTorch format."
362
+ )
363
+
364
+ device_map = kwargs.get("device_map", None)
365
+ if (
366
+ device_map is not None
367
+ and isinstance(device_map, dict)
368
+ and not self.quantization_config.llm_int8_enable_fp32_cpu_offload
369
+ ):
370
+ device_map_without_no_convert = {
371
+ key: device_map[key] for key in device_map.keys() if key not in self.modules_to_not_convert
372
+ }
373
+ if "cpu" in device_map_without_no_convert.values() or "disk" in device_map_without_no_convert.values():
374
+ raise ValueError(
375
+ "Some modules are dispatched on the CPU or the disk. Make sure you have enough GPU RAM to fit the "
376
+ "quantized model. If you want to dispatch the model on the CPU or the disk while keeping these modules "
377
+ "in 32-bit, you need to set `load_in_8bit_fp32_cpu_offload=True` and pass a custom `device_map` to "
378
+ "`from_pretrained`. Check "
379
+ "https://huggingface.co/docs/transformers/main/en/main_classes/quantization#offload-between-cpu-and-gpu "
380
+ "for more details. "
381
+ )
382
+
383
+ # Copied from diffusers.quantizers.bitsandbytes.bnb_quantizer.BnB4BitDiffusersQuantizer.adjust_max_memory
384
+ def adjust_max_memory(self, max_memory: Dict[str, Union[int, str]]) -> Dict[str, Union[int, str]]:
385
+ # need more space for buffers that are created during quantization
386
+ max_memory = {key: val * 0.90 for key, val in max_memory.items()}
387
+ return max_memory
388
+
389
+ # Copied from diffusers.quantizers.bitsandbytes.bnb_quantizer.BnB4BitDiffusersQuantizer.update_torch_dtype
390
+ def update_torch_dtype(self, torch_dtype: "torch.dtype") -> "torch.dtype":
391
+ if torch_dtype is None:
392
+ # We force the `dtype` to be float16, this is a requirement from `bitsandbytes`
393
+ logger.info(
394
+ "Overriding torch_dtype=%s with `torch_dtype=torch.float16` due to "
395
+ "requirements of `bitsandbytes` to enable model loading in 8-bit or 4-bit. "
396
+ "Pass your own torch_dtype to specify the dtype of the remaining non-linear layers or pass"
397
+ " torch_dtype=torch.float16 to remove this warning.",
398
+ torch_dtype,
399
+ )
400
+ torch_dtype = torch.float16
401
+ return torch_dtype
402
+
403
+ # # Copied from diffusers.quantizers.bitsandbytes.bnb_quantizer.BnB4BitDiffusersQuantizer.update_device_map
404
+ # def update_device_map(self, device_map):
405
+ # if device_map is None:
406
+ # device_map = {"": torch.cuda.current_device()}
407
+ # logger.info(
408
+ # "The device_map was not initialized. "
409
+ # "Setting device_map to {'':torch.cuda.current_device()}. "
410
+ # "If you want to use the model for inference, please set device_map ='auto' "
411
+ # )
412
+ # return device_map
413
+
414
+ def adjust_target_dtype(self, target_dtype: "torch.dtype") -> "torch.dtype":
415
+ if target_dtype != torch.int8:
416
+ logger.info("target_dtype {target_dtype} is replaced by `torch.int8` for 8-bit BnB quantization")
417
+ return torch.int8
418
+
419
+ def check_if_quantized_param(
420
+ self,
421
+ model: "ModelMixin",
422
+ param_value: "torch.Tensor",
423
+ param_name: str,
424
+ state_dict: Dict[str, Any],
425
+ **kwargs,
426
+ ):
427
+ import bitsandbytes as bnb
428
+
429
+ module, tensor_name = get_module_from_name(model, param_name)
430
+ if isinstance(module._parameters.get(tensor_name, None), bnb.nn.Int8Params):
431
+ if self.pre_quantized:
432
+ if param_name.replace("weight", "SCB") not in state_dict.keys():
433
+ raise ValueError("Missing quantization component `SCB`")
434
+ if param_value.dtype != torch.int8:
435
+ raise ValueError(
436
+ f"Incompatible dtype `{param_value.dtype}` when loading 8-bit prequantized weight. Expected `torch.int8`."
437
+ )
438
+ return True
439
+ return False
440
+
441
+ def create_quantized_param(
442
+ self,
443
+ model: "ModelMixin",
444
+ param_value: "torch.Tensor",
445
+ param_name: str,
446
+ target_device: "torch.device",
447
+ state_dict: Dict[str, Any],
448
+ unexpected_keys: Optional[List[str]] = None,
449
+ ):
450
+ import bitsandbytes as bnb
451
+
452
+ fp16_statistics_key = param_name.replace("weight", "SCB")
453
+ fp16_weights_format_key = param_name.replace("weight", "weight_format")
454
+
455
+ fp16_statistics = state_dict.get(fp16_statistics_key, None)
456
+ fp16_weights_format = state_dict.get(fp16_weights_format_key, None)
457
+
458
+ module, tensor_name = get_module_from_name(model, param_name)
459
+ if tensor_name not in module._parameters:
460
+ raise ValueError(f"{module} does not have a parameter or a buffer named {tensor_name}.")
461
+
462
+ old_value = getattr(module, tensor_name)
463
+
464
+ if not isinstance(module._parameters[tensor_name], bnb.nn.Int8Params):
465
+ raise ValueError(f"Parameter `{tensor_name}` should only be a `bnb.nn.Int8Params` instance.")
466
+ if (
467
+ old_value.device == torch.device("meta")
468
+ and target_device not in ["meta", torch.device("meta")]
469
+ and param_value is None
470
+ ):
471
+ raise ValueError(f"{tensor_name} is on the meta device, we need a `value` to put in on {target_device}.")
472
+
473
+ new_value = param_value.to("cpu")
474
+ if self.pre_quantized and not self.is_serializable:
475
+ raise ValueError(
476
+ "Detected int8 weights but the version of bitsandbytes is not compatible with int8 serialization. "
477
+ "Make sure to download the latest `bitsandbytes` version. `pip install --upgrade bitsandbytes`."
478
+ )
479
+
480
+ kwargs = old_value.__dict__
481
+ new_value = bnb.nn.Int8Params(new_value, requires_grad=False, **kwargs).to(target_device)
482
+
483
+ module._parameters[tensor_name] = new_value
484
+ if fp16_statistics is not None:
485
+ setattr(module.weight, "SCB", fp16_statistics.to(target_device))
486
+ if unexpected_keys is not None:
487
+ unexpected_keys.remove(fp16_statistics_key)
488
+
489
+ # We just need to pop the `weight_format` keys from the state dict to remove unneeded
490
+ # messages. The correct format is correctly retrieved during the first forward pass.
491
+ if fp16_weights_format is not None and unexpected_keys is not None:
492
+ unexpected_keys.remove(fp16_weights_format_key)
493
+
494
+ # Copied from diffusers.quantizers.bitsandbytes.bnb_quantizer.BnB4BitDiffusersQuantizer._process_model_after_weight_loading with 4bit->8bit
495
+ def _process_model_after_weight_loading(self, model: "ModelMixin", **kwargs):
496
+ model.is_loaded_in_8bit = True
497
+ model.is_8bit_serializable = self.is_serializable
498
+ return model
499
+
500
+ # Copied from diffusers.quantizers.bitsandbytes.bnb_quantizer.BnB4BitDiffusersQuantizer._process_model_before_weight_loading
501
+ def _process_model_before_weight_loading(
502
+ self,
503
+ model: "ModelMixin",
504
+ device_map,
505
+ keep_in_fp32_modules: List[str] = [],
506
+ **kwargs,
507
+ ):
508
+ from .utils import replace_with_bnb_linear
509
+
510
+ load_in_8bit_fp32_cpu_offload = self.quantization_config.llm_int8_enable_fp32_cpu_offload
511
+
512
+ # We may keep some modules such as the `proj_out` in their original dtype for numerical stability reasons
513
+ self.modules_to_not_convert = self.quantization_config.llm_int8_skip_modules
514
+
515
+ if not isinstance(self.modules_to_not_convert, list):
516
+ self.modules_to_not_convert = [self.modules_to_not_convert]
517
+
518
+ self.modules_to_not_convert.extend(keep_in_fp32_modules)
519
+
520
+ # Extend `self.modules_to_not_convert` to keys that are supposed to be offloaded to `cpu` or `disk`
521
+ if isinstance(device_map, dict) and len(device_map.keys()) > 1:
522
+ keys_on_cpu = [key for key, value in device_map.items() if value in ["disk", "cpu"]]
523
+
524
+ if len(keys_on_cpu) > 0 and not load_in_8bit_fp32_cpu_offload:
525
+ raise ValueError(
526
+ "If you want to offload some keys to `cpu` or `disk`, you need to set "
527
+ "`llm_int8_enable_fp32_cpu_offload=True`. Note that these modules will not be "
528
+ " converted to 8-bit but kept in 32-bit."
529
+ )
530
+ self.modules_to_not_convert.extend(keys_on_cpu)
531
+
532
+ # Purge `None`.
533
+ # Unlike `transformers`, we don't know if we should always keep certain modules in FP32
534
+ # in case of diffusion transformer models. For language models and others alike, `lm_head`
535
+ # and tied modules are usually kept in FP32.
536
+ self.modules_to_not_convert = [module for module in self.modules_to_not_convert if module is not None]
537
+
538
+ model = replace_with_bnb_linear(
539
+ model, modules_to_not_convert=self.modules_to_not_convert, quantization_config=self.quantization_config
540
+ )
541
+ model.config.quantization_config = self.quantization_config
542
+
543
+ @property
544
+ # Copied from diffusers.quantizers.bitsandbytes.bnb_quantizer.BnB4BitDiffusersQuantizer.is_serializable
545
+ def is_serializable(self):
546
+ # Because we're mandating `bitsandbytes` 0.43.3.
547
+ return True
548
+
549
+ @property
550
+ # Copied from diffusers.quantizers.bitsandbytes.bnb_quantizer.BnB4BitDiffusersQuantizer.is_serializable
551
+ def is_trainable(self) -> bool:
552
+ # Because we're mandating `bitsandbytes` 0.43.3.
553
+ return True
554
+
555
+ def _dequantize(self, model):
556
+ from .utils import dequantize_and_replace
557
+
558
+ model = dequantize_and_replace(
559
+ model, self.modules_to_not_convert, quantization_config=self.quantization_config
560
+ )
561
+ return model