Conversation
|
!test |
|
Review updated until commit 9c82318 Description
Changes walkthrough 📝
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
|
!test |
| } else { | ||
| new_logical_domain.push_back(id->cloneWithoutRFactor()); | ||
| } | ||
| new_logical_domain.push_back(id->cloneWithoutRFactor()); |
There was a problem hiding this comment.
It's possible that segmentation changed since #630 was merged. One thing that changed is introduction of the ExprEval scheduler which now evaluates some of the segments so it won't hit the issue. I think we should look at that test DynamicTransformIssue418 and sprinkle in some pointwise ops to trigger the segmentation between two codegen'd segments again.
As to your change, it removes only the rFactor product flag and does not mark the extents for replacement, which would open us up to #418 and #629 again I think.
A follow-up to #5177 (comment)
This change doesn't break any tests. Is that expected?
Possibly because of
Fuser/csrc/runtime/fusion_kernel_runtime.cpp
Lines 550 to 553 in e2d2264