-
Notifications
You must be signed in to change notification settings - Fork 64
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
Fixed causality loop detection bug #1026
Conversation
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.
ModalCycleBreaker test still works as intended.
Thanks for fixing it.
There is a test failure in the C++ benchmarks, but I can't replicate this. The output from CI seems to imply the failure is in parallelism/MatMul.lf. I cloned the benchmarks repo, but I can't compile this benchmark. I get the following... Help?
|
Try |
It looks like the test is failing because there is a cycle in FilterBank:
|
reaction(in2) -> out {= | ||
SET(out, in2->value); | ||
reaction(in2) {= | ||
// SET(out, in2->value); |
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.
Just tagging @a-sr to be sure he is aware.
This fixes #1024 and updates a test which had a flaw masked by this bug.