| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413 |
- # mypy: allow-untyped-defs
- import collections
- import itertools
- import logging
- import operator
- from collections.abc import Iterable, Sequence
- from typing import Optional
- from torch.fx.graph_module import GraphModule
- from torch.fx.node import _get_qualified_name, Node
- from torch.fx.passes.operator_support import OperatorSupportBase
- from torch.fx.passes.utils.fuser_utils import fuse_by_partitions
- logger = logging.getLogger(__name__)
- logger.setLevel(logging.WARNING)
- class Partition:
- def __init__(
- self,
- id: Optional[int] = None,
- nodes: Optional[Iterable[Node]] = None,
- node_orders: Optional[Iterable[int]] = None,
- ):
- self.id = id
- self.nodes: dict[Node, Optional[int]] = {}
- if nodes is not None:
- if node_orders is None:
- self.nodes = dict.fromkeys(nodes, None)
- else:
- nodes_list = list(nodes)
- node_orders_list = list(node_orders)
- if len(nodes_list) != len(node_orders_list):
- raise AssertionError(
- "nodes and node_orders must have the same length"
- )
- self.nodes = dict(zip(nodes_list, node_orders_list))
- def __repr__(self) -> str:
- return str(self.nodes)
- def add_node(self, node: Node, node_order: Optional[int] = None):
- self.nodes.update({node: node_order})
- def remove_node(self, node: Node):
- del self.nodes[node]
- def size(self):
- return len(self.nodes)
- class _DependencyViewer:
- def __init__(self, graph_module: GraphModule):
- self.downstreams = collections.defaultdict(set)
- for node in reversed(graph_module.graph.nodes):
- for output_node in node.users:
- # add output_node and output_node's downstream dependency
- self.downstreams[node].add(output_node)
- self.downstreams[node].update(self.downstreams[output_node])
- def downstreams_of(self, node: Node) -> set[Node]:
- return self.downstreams[node]
- class CapabilityBasedPartitioner:
- def __init__(
- self,
- graph_module: GraphModule,
- operator_support: OperatorSupportBase,
- allows_single_node_partition: bool = False,
- non_compute_ops: Optional[Sequence[str]] = None,
- allowed_single_node_partition_ops: Optional[Sequence[str]] = None,
- ) -> None:
- self.graph_module = graph_module
- self.operator_support = operator_support
- self.allows_single_node_partition = allows_single_node_partition
- self.non_compute_ops = non_compute_ops if non_compute_ops is not None else []
- self.allowed_single_node_partition_ops = (
- allowed_single_node_partition_ops
- if allowed_single_node_partition_ops is not None
- else []
- )
- self.dependency_viewer = _DependencyViewer(graph_module)
- def _is_node_supported(self, node: Node) -> bool:
- return self.operator_support.is_node_supported(
- dict(self.graph_module.named_modules()), node
- )
- def propose_partitions(self) -> list[Partition]:
- # partition_map is a mapping from partition id to a set of partition id's.
- # The value set contains all the partition ids that can be reached by doing a
- # DFS starting from the partition id in the key.
- partition_map: dict[int, set] = collections.defaultdict(set)
- # assumptions: nodes in candidate list is sorted in topological order
- assignment: dict[Node, int] = {} # mapping from node to partition_id
- partitions_by_id: dict[
- int, Partition
- ] = {} # mapping from partition_id to partition
- nodes_order: dict[
- Node, int
- ] = {} # mapping from nodes to reversed topological order
- partitions_order: dict[
- int, int
- ] = {} # mapping from partition_id to minimum topo order of nodes in partition
- partition_users: dict[
- int, set
- ] = {} # mapping from partition_id to partition users
- new_partition_id = itertools.count()
- # try to merge partition other_id into partition self_id
- # merge only happens if the end graph doesn't contain cyclic dependency
- # returns `True` when merge happens, `False` otherwise.
- def maybe_merge_partition(self_id: int, other_id: int):
- # merged_nodes is the union of nodes in two partition to-be-merged
- self_nodes = partitions_by_id[self_id].nodes
- other_nodes = partitions_by_id[other_id].nodes
- def dfs_iter_find_cycle(all_user_nodes: set[Node]):
- for user_node in all_user_nodes:
- visited_partition_ids = set()
- for path_node in self.dependency_viewer.downstreams_of(user_node):
- # If any of the nodes in the dfs path of this node are in the merged_nodes
- # list then there is a cycle in the graph.
- if path_node in self_nodes or path_node in other_nodes:
- return True
- # If any of the nodes in the dfs path of this node are in the assignment
- # map then we have to make sure that the partitions that these nodes belong
- # to do not form a cycle with the current partitions being merged. This means
- # iterating through all the nodes in all the parititons that are traversed in
- # the dfs path and checking if they are in the merged_nodes list.
- if path_node in assignment:
- partition_id = assignment[path_node]
- # If the partition id has already been visited then we know that it doesn't
- # form a cycle with the current partitions being merged.
- if partition_id in visited_partition_ids:
- continue
- p_map = partition_map[partition_id]
- if self_id in p_map or other_id in p_map:
- return True
- visited_partition_ids.add(partition_id)
- return False
- # find new partition users if merge.
- all_user_nodes = partition_users[self_id] | partition_users[other_id]
- all_user_nodes.difference_update(other_nodes, self_nodes)
- # check if merge would create cyclic dependency.
- if dfs_iter_find_cycle(all_user_nodes):
- # return false indicating cyclic dependency found and
- # merge is aborted
- return self_id, False
- # merge the smaller partition into the larger.
- merge_id, removed_id = self_id, other_id
- if len(self_nodes) < len(other_nodes):
- merge_id, removed_id = removed_id, merge_id
- # no cyclic dependency found, move forward with the merge
- # updating partition nodes
- partitions_by_id[merge_id].nodes.update(partitions_by_id[removed_id].nodes)
- # updating assignment map
- for node in partitions_by_id[removed_id].nodes:
- assignment[node] = merge_id
- # delete other partition
- del partitions_by_id[removed_id]
- partitions_order[merge_id] = min(
- partitions_order[merge_id], partitions_order[removed_id]
- )
- del partitions_order[removed_id]
- partition_map[merge_id] = partition_map[merge_id].union(
- partition_map[removed_id]
- )
- del partition_map[removed_id]
- partition_users[merge_id] = all_user_nodes
- del partition_users[removed_id]
- return merge_id, True
- def merge_single_node(node: Node, node_order: Optional[int], id: Optional[int]):
- def _update_partition_map(node: Node, id: int):
- # Iterate through all the users of this node and update the partition map to indicate
- # that there is a path from the partition id of this node to the target partition id.
- for user_node in node.users:
- target_id = assignment.get(user_node)
- if target_id is not None:
- partition_map[id].add(target_id)
- partition_map[id].update(partition_map[target_id])
- if node in assignment:
- partitions_by_id[assignment[node]].remove_node(node)
- if id is None:
- assignment.pop(node)
- elif id not in partitions_by_id:
- assignment[node] = id
- if node_order is None:
- raise AssertionError("node_order is required for new partitions")
- partitions_by_id[id] = Partition(
- id=id, nodes=[node], node_orders=[node_order]
- )
- partition_users[id] = set(node.users)
- _update_partition_map(node, id)
- else:
- assignment[node] = id
- partitions_by_id[id].add_node(node, node_order)
- logger.debug("Proposing partitions...")
- for node_order, node in enumerate(reversed(self.graph_module.graph.nodes)):
- # use Dict as an ordered set to ensure deterministic partitioning result, don't care value
- merge_candidates: dict[int, None] = {}
- # Note a limited horizontal fusion is enabled:
- # when `node` is not supported, the code below attempts to fuse consumer of `node`.
- #
- # I don't see a need to add a knob to disable horizontal fusion yet, we can short-cut
- # the fusion by adding an `else` block here to skip horizontal fusion.
- if self._is_node_supported(node) and node not in assignment:
- partition_id = next(new_partition_id)
- nodes_order[node] = partition_id
- partitions_order[partition_id] = partition_id
- merge_single_node(node, node_order, partition_id)
- merge_candidates[partition_id] = None
- # merge all possible partitions
- for partition_id, _ in sorted(
- partitions_order.items(), key=operator.itemgetter(1)
- ):
- merge_candidates[partition_id] = None
- merge_candidates_list = list(merge_candidates.keys())
- if len(merge_candidates_list) > 1:
- self_id = merge_candidates_list[0]
- for other_id in merge_candidates_list[1:]:
- # note: merge partitions if it doesn't create cyclic dependency
- # in the graph, otherwise, this is a no-op
- self_id, _ = maybe_merge_partition(self_id, other_id)
- # sort partition nodes based on descending node order
- for partition in partitions_by_id.values():
- partition.nodes = dict(
- sorted(
- partition.nodes.items(), key=operator.itemgetter(1), reverse=True
- )
- )
- # post processing to re-assign "getitem" nodes into upstream partition
- # Run iteratively until no more changes, to handle nested getitem chains
- # (e.g., getitem_619 = getitem_618[0] where getitem_618 = with_effects_167[1])
- logger.debug("Reassigning getitem nodes to its producer node's partition...")
- while True:
- nodes_reassignment: dict[Node, int] = {}
- for node in self.graph_module.graph.nodes:
- is_tuple_output = True
- for user in node.users:
- if (
- user.op != "call_function"
- or _get_qualified_name(user.target) != "_operator.getitem"
- ): # type: ignore[arg-type]
- is_tuple_output = False
- break
- # node has tuple outputs, re-assign all following getitem node into node's partition
- if is_tuple_output:
- id = assignment.get(node) # type: ignore[arg-type]
- for user in node.users:
- if assignment.get(user) != id: # type: ignore[arg-type]
- nodes_reassignment[user] = id # type: ignore[assignment]
- # no more re-assignments
- if not nodes_reassignment:
- break
- for node, id in nodes_reassignment.items():
- merge_single_node(node, None, id)
- # filter out single node partitions
- if not self.allows_single_node_partition:
- logger.debug("Filtering out single node partitions...")
- default_non_compute_ops = {"torch.ops.aten.view", "_operator.getitem"}
- non_compute_ops = default_non_compute_ops.union(set(self.non_compute_ops))
- partitions_to_remove: list[int] = []
- for id, partition in partitions_by_id.items():
- compute_node_count = 0
- for node in partition.nodes:
- if node.op == "call_function":
- if not callable(node.target):
- raise AssertionError(
- f"Expected callable target, got {type(node.target)}"
- )
- if _get_qualified_name(node.target) not in non_compute_ops:
- compute_node_count += 1
- if (
- _get_qualified_name(node.target)
- in self.allowed_single_node_partition_ops
- ):
- compute_node_count += 1
- if compute_node_count <= 1:
- partitions_to_remove.append(id)
- for id in partitions_to_remove:
- del partitions_by_id[id]
- logger.debug("Partitions proposed:")
- for id, partition in partitions_by_id.items():
- logger.debug(
- "partition #%s: %s", id, [node.name for node in partition.nodes]
- )
- return [
- partition for partition in partitions_by_id.values() if partition.size() > 0
- ]
- def fuse_partitions(
- self, partitions: list[Partition], prefix: str = "fused_"
- ) -> GraphModule:
- logger.debug("Fusing partitions...")
- # fuse_by_partitions expects partitions in List[Dict[Node, None]]: [ {node0 : None}, {node1 : None} ]
- return fuse_by_partitions(
- self.graph_module,
- [partition.nodes for partition in partitions],
- prefix=prefix,
- )
- # remove non-compute-ops that sits at the boundary of a partition.
- def remove_bookend_non_compute_ops(self, partitions: list[Partition]):
- non_compute_ops = set(self.non_compute_ops)
- def is_non_compute_node(node: Node):
- return (
- node.op == "call_function"
- and _get_qualified_name(node.target) in non_compute_ops # type: ignore[arg-type]
- )
- # cache transparent nodes
- transparent_input_nodes: dict[Node, bool] = {}
- transparent_output_nodes: dict[Node, bool] = {}
- def is_transparent_input_node(
- node: Node, partition: set[Node], removed_nodes: set[Node]
- ):
- if (
- node.op == "placeholder"
- or (node not in partition)
- or (node in removed_nodes)
- ):
- return True
- if node in transparent_input_nodes:
- return transparent_input_nodes[node]
- if is_non_compute_node(node):
- for input_n in node.all_input_nodes:
- if not is_transparent_input_node(input_n, partition, removed_nodes):
- transparent_input_nodes[node] = False
- return False
- transparent_input_nodes[node] = True
- return True
- transparent_input_nodes[node] = False
- return False
- def is_transparent_output_node(
- node: Node, partition: set[Node], removed_nodes: set[Node]
- ):
- if (
- node.op == "placeholder"
- or (node not in partition)
- or (node in removed_nodes)
- ):
- return True
- if node in transparent_output_nodes:
- return transparent_output_nodes[node]
- if is_non_compute_node(node):
- for output_n in node.users:
- if not is_transparent_output_node(
- output_n, partition, removed_nodes
- ):
- transparent_output_nodes[node] = False
- return False
- transparent_output_nodes[node] = True
- return True
- transparent_output_nodes[node] = False
- return False
- for partition in partitions:
- # Note it's ok to use `set` here, since we are only query if a node
- # has been removed. We are NEVER going to iterate on nodes inside
- # the set.
- remove_node: set[Node] = set()
- for node in partition.nodes:
- if is_non_compute_node(node) and (
- is_transparent_input_node(node, set(partition.nodes), remove_node)
- or is_transparent_output_node(
- node, set(partition.nodes), remove_node
- )
- ):
- remove_node.add(node)
- if len(remove_node) != 0:
- for node in remove_node:
- partition.nodes.pop(node, None)
- def partition_and_fuse(self, prefix: str = "fused_") -> GraphModule:
- partitions = self.propose_partitions()
- fused_gm = self.fuse_partitions(partitions, prefix=prefix)
- return fused_gm
|