[Mlir-commits] [mlir] [mlir][nvgpu] Make `phaseParity` of `mbarrier.try_wait` `i1` (PR #81460)

Guray Ozen llvmlistbot at llvm.org
Mon Feb 12 09:03:00 PST 2024


================
@@ -362,7 +362,8 @@ std::optional<InFlightDiagnostic> verifyTmaDescriptorWithMemref(
                              << kMaxTMADimension << " but it is " << dim;
     }
   }
-  if (descMemref.getRank() > 1) {
+  if (descMemref.getRank() > 1 &&
+      descType.getSwizzle() != TensorMapSwizzleKind::SWIZZLE_NONE) {
----------------
grypp wrote:

It is not :) it was another fix, and leaked here. 
I put another PR for this fix
https://github.com/llvm/llvm-project/pull/81499

https://github.com/llvm/llvm-project/pull/81460


More information about the Mlir-commits mailing list