Skip to content

Commit

Permalink
Fixed issue - Thanks Marco! (#1556)
Browse files Browse the repository at this point in the history
  • Loading branch information
vprajapati-tt authored Dec 12, 2024
1 parent f97c45b commit 607ce90
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tools/explorer/tt_adapter/src/tt_adapter/mlir.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,8 +553,10 @@ def build_graph(module):
target_node.incomingEdges.append(
graph_builder.IncomingEdge(
sourceNodeId=source_node.id,
sourceNodeOutputId=output_connections[source_node.id],
targetNodeInputId=operand_index,
sourceNodeOutputId=str(
output_connections[source_node.id]
),
targetNodeInputId=str(operand_index),
)
)

Expand Down

0 comments on commit 607ce90

Please sign in to comment.