Skip to content

Commit

Permalink
Merge pull request #3790 from vladmandic/dev
Browse files Browse the repository at this point in the history
Merge Dev
  • Loading branch information
Disty0 authored Feb 27, 2025
2 parents a1ab39b + e1f6abd commit be076ec
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log for SD.Next

## Update for 2025-02-24
## Update for 2025-02-27

Primarily a hotfix/service release plus few UI improvements and one exciting new feature: Remote-VAE!

Expand Down Expand Up @@ -30,6 +30,7 @@ Primarily a hotfix/service release plus few UI improvements and one exciting new
- infotext parser force delimiter before params
- handle pipeline class switch errors
- improve extensions options compatibility
- fix flux on ipex

## Update for 2025-02-18

Expand Down
2 changes: 1 addition & 1 deletion modules/intel/ipex/attention.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# pylint: disable=protected-access, missing-function-docstring, line-too-long

# ARC GPUs can't allocate more than 4GB to a single block so we slice the attetion layers
# ARC GPUs can't allocate more than 4GB to a single block so we slice the attention layers

sdpa_slice_trigger_rate = float(os.environ.get('IPEX_SDPA_SLICE_TRIGGER_RATE', 1))
attention_slice_rate = float(os.environ.get('IPEX_ATTENTION_SLICE_RATE', 0.5))
Expand Down
2 changes: 2 additions & 0 deletions modules/intel/ipex/diffusers.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,5 @@ def ipex_diffusers(device_supports_fp64=False, can_allocate_plus_4gb=False):
diffusers.utils.torch_utils.fourier_filter = fourier_filter
if not device_supports_fp64:
diffusers.models.embeddings.FluxPosEmbed = FluxPosEmbed
diffusers.models.transformers.transformer_flux.FluxPosEmbed = FluxPosEmbed
diffusers.models.controlnets.controlnet_flux.FluxPosEmbed = FluxPosEmbed

0 comments on commit be076ec

Please # to comment.