-
Notifications
You must be signed in to change notification settings - Fork 144
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
PyInPort: probe() implementation #77
Conversation
I suggest to always include a few more people than just the two minimum required number of reviewers. |
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.
Looks good to me for now. At some point we might want to enable InPorts which do not expect data on every csp channel to not block (current behavior, this comes from the fact that previously each InPort had exactly one csp channel), but this is for later I guess.
If an InPort has multiple inputs, it expects inputs from all of them. The only way to not block on some input is to receive a flush. |
* PyInPort probe method + unit tests.
Implementation of
probe
method for PyInPorts.Added :
probe
method for PyInPorts.probe
method forPyInPortVectorDense
only.