Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated port names for crddrop #133

Merged
merged 1 commit into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sam/onyx/hw_nodes/compute_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def connect(self, other, edge, kwargs=None):

new_conns = {
f'pe_to_crddrop_res_to_{conn}': [
([(pe, "res"), (crddrop, f"cmrg_coord_in_{conn}")], 17),
([(pe, "res"), (crddrop, f"coord_in_{conn}")], 17),
]
}
return new_conns
Expand Down
2 changes: 1 addition & 1 deletion sam/onyx/hw_nodes/intersect_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def connect(self, other, edge, kwargs=None):
new_conns = {
f'isect_to_merger_{conn}': [
# Send isect row and isect col to merger inside isect_col
([(isect, "coord_out"), (merge, f"cmrg_coord_in_{conn}")], 17),
([(isect, "coord_out"), (merge, f"coord_in_{conn}")], 17),
]
}

Expand Down
8 changes: 4 additions & 4 deletions sam/onyx/hw_nodes/merge_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def connect(self, other, edge, kwargs=None):
print(conn)
new_conns = {
f'merge_{conn}_to_wr_scan': [
([(merge, f"cmrg_coord_out_{conn}"), (wr_scan, f"data_in")], 17),
([(merge, f"coord_out_{conn}"), (wr_scan, f"data_in")], 17),
]
}

Expand All @@ -66,7 +66,7 @@ def connect(self, other, edge, kwargs=None):
print("MERGE TO UNION FOR VECTOR REDUCE")
new_conns = {
f'merge_to_union_inner': [
([(merge, f"cmrg_coord_out_{0}"), (isect, f"coord_in_{0}")], 17),
([(merge, f"coord_out_{0}"), (isect, f"coord_in_{0}")], 17),
]
}

Expand All @@ -77,7 +77,7 @@ def connect(self, other, edge, kwargs=None):
other_red = other.get_name()
new_conns = {
f'merge_to_reduce_inner': [
([(merge, f"cmrg_coord_out_{0}"), (other_red, f"reduce_data_in")], 17),
([(merge, f"coord_out_{0}"), (other_red, f"reduce_data_in")], 17),
]
}

Expand All @@ -103,7 +103,7 @@ def connect(self, other, edge, kwargs=None):

new_conns = {
f'merger_to_merger_{out_conn}_to_{in_conn}': [
([(merge, f"cmrg_coord_out_{out_conn}"), (other_merge, f"cmrg_coord_in_{in_conn}")], 17),
([(merge, f"coord_out_{out_conn}"), (other_merge, f"coord_in_{in_conn}")], 17),
]
}

Expand Down
2 changes: 1 addition & 1 deletion sam/onyx/hw_nodes/read_scanner_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def connect(self, other, edge, kwargs=None):

new_conns = {
f'rd_scan_to_crddrop_{conn}': [
([(rd_scan, out_conn), (crddrop, f"cmrg_coord_in_{conn}")], 17),
([(rd_scan, out_conn), (crddrop, f"coord_in_{conn}")], 17),
]
}

Expand Down
Loading