Closed mloubout closed 4 months ago
Attention: Patch coverage is 96.29630%
with 2 lines
in your changes missing coverage. Please review.
Project coverage is 86.75%. Comparing base (
6e79f1c
) to head (a9a4d14
).
Files | Patch % | Lines |
---|---|---|
devito/passes/clusters/cse.py | 88.23% | 2 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Fix cse to make sure expression from different conditionals get properly handled.
avoids things like
to be converted to
CSE now counts expression based on the equation's conditional. We could also just lift all
rxx
out of conditionals but that would be computing those cse temps way more than needed which I don't think it great