-
Notifications
You must be signed in to change notification settings - Fork 7
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
Remove 18 #550
Remove 18 #550
Conversation
|
||
def __init__(self, out_going_links: Union[int, Iterable[int], None], | ||
outgoing_processors: Union[int, Iterable[int], None], | ||
incoming_processor: Optional[int] = None, | ||
incoming_link: Optional[int] = None): | ||
incoming_link: Optional[int] = None, | ||
spinnaker_route: Optional[int] = None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we actually make use of this here? I would have thought it would never be called in this way...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, I see this is used internally...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This might be another case where we could have a "from_processor_and_links" function or something like that. It might alternatively then hold a SpiNNMachine routing entry rather than extend it, but not sure if that would help things here...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The main need for these is in the Mundy routers.
Allow these to be lost and I think the secondary usage of seeing is a route is defaulable can be handled at init time.
Part of SpiNNakerManchester/SpiNNMachine#248
MulticastRoutingTableByPartitionEntry
-incoming processor and link id now stored separately