Skip to content

Commit

Permalink
Fix for case where src vtx is not all on one chip and src is not all
Browse files Browse the repository at this point in the history
  • Loading branch information
rowleya committed Nov 22, 2024
1 parent ca929f3 commit ce61ffc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pacman/operations/router_algorithms/application_router.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,8 @@ def route_application_graph() -> MulticastRoutingTableByPartition:
# Get all source chips coordinates
all_source_xys = {
vertex_xy(m_vertex)
for m_vertex in source.machine_vertices}
for m_vertex in source.splitter.get_out_going_vertices(
partition.identifier)}

# Keep track of the source edge chips
source_edge_xys: Set[XY] = set()
Expand Down

0 comments on commit ce61ffc

Please sign in to comment.