Skip to content

Commit

Permalink
Style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mcoduoza committed Nov 26, 2023
1 parent 09458bb commit c9c0193
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sam/onyx/parse_dot.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,18 +360,18 @@ def rewrite_VectorReducer(self):
# crd_rd_scan_to_glb = pydot.Edge(src=crd_rd_scanner, dst=dst_crd, **crd_edge_attr, use_alt_out_port="1")
# val_rd_scan_to_glb = pydot.Edge(src=vals_rd_scanner, dst=dst_vals, **val_edge_attr, use_alt_out_port="1")

# CRDDROP SUPPORT: TOOK OUT COMMENT ATTRIBUTE FROM BOTH OF THESE
# CRDDROP SUPPORT: TOOK OUT COMMENT ATTRIBUTE FROM BOTH OF THESE
crd_rd_scan_to_ds = pydot.Edge(
src=crd_rd_scanner,
dst=dst_crd,
**crd_edge_attr,
#comment="final-crd",
# comment="final-crd",
vector_reduce_mode=True)
val_rd_scan_to_ds = pydot.Edge(
src=vals_rd_scanner,
dst=dst_vals,
**val_edge_attr,
#comment="final-val",
# comment="final-val",
vector_reduce_mode=True)

# self.graph.add_edge(input_to_rsg_edge)
Expand Down

0 comments on commit c9c0193

Please sign in to comment.