Skip to content

Commit

Permalink
don't sort layer_stacks in scheduling_order_generation
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinGeens committed Jan 17, 2025
1 parent cbe526a commit c5569ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stream/stages/generation/scheduling_order_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def get_scheduling_order_fused(self):

order: SCHEDULE_ORDER_T = []

for stack in sorted(self.layer_stacks):
for stack in self.layer_stacks:
order += self.get_scheduling_order_for_stack_with_generated_nodes(stack)

assert len(order) == self.workload.number_of_nodes()
Expand Down

0 comments on commit c5569ff

Please sign in to comment.