Skip to content

Commit

Permalink
fix import order for pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
asyms committed Oct 21, 2024
1 parent 16354a3 commit ec68da9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stream/cost_model/group_allocation.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import logging
import math
from typing import TypeAlias

from stream.workload.computation.computation_node import ComputationNode, LoopRanges
from zigzag.datatypes import LayerDim

from stream.workload.computation.computation_node import ComputationNode, LoopRanges

logger = logging.getLogger(__name__)

GroupAllocation: TypeAlias = dict[tuple[tuple[int, int], ...], int]
Expand Down

0 comments on commit ec68da9

Please sign in to comment.