Skip to content

⚡️ Speed up function add_area_dims by 56% #7742

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions comfy/samplers.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,16 @@


def add_area_dims(area, num_dims):
while (len(area) // 2) < num_dims:
area = [2147483648] + area[:len(area) // 2] + [0] + area[len(area) // 2:]
current_dims = len(area) // 2
while current_dims < num_dims:
midpoint = len(area) // 2
# More efficient construction of the new area list
new_area = [2147483648]
new_area.extend(area[:midpoint])
new_area.append(0)
new_area.extend(area[midpoint:])
area = new_area
current_dims += 1
return area

def get_area_and_mult(conds, x_in, timestep_in):
Expand Down