[Mlir-commits] [mlir] Sub-channel quantized type implementation (PR #120172)

Kevin Gleason llvmlistbot at llvm.org
Tue Feb 11 14:55:22 PST 2025


================
@@ -360,6 +514,19 @@ static void printQuantParams(double scale, int64_t zeroPoint,
   }
 }
 
+static void
+printBlockSizeInfo(ArrayRef<std::pair<int32_t, int64_t>> blockSizeInfo,
+                   DialectAsmPrinter &out) {
+  out << "{";
+  llvm::interleave(
----------------
GleasonK wrote:

`llvm::interleaveComma` instead?

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


More information about the Mlir-commits mailing list