We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ddca06 commit cd4f49bCopy full SHA for cd4f49b
lib/Analysis/Utility.cpp
@@ -108,6 +108,11 @@ unsigned ReduceOpHelper::getIntraWarpSizeWithUniqueData() {
108
}
109
110
bool ReduceOpHelper::isWarpSynchronous() {
111
+ // FIXME: In the default path tensors will always have a layout. Tensors do
112
+ // not have a layout only in the advanced path. We need to find a workaround
113
+ // in order to remove this change.
114
+ if (!srcEncoding)
115
+ return true;
116
return getWarpsPerCTAWithUniqueData(srcEncoding, srcShape)[axis] == 1;
117
118
0 commit comments