[Mlir-commits] [mlir] Fix printing of `mlirUniformQuantizedSubChannelTypeGetNumBlockSizes` in 32-bit machine. (PR #133763)
Sandeep Dasgupta
llvmlistbot at llvm.org
Mon Mar 31 10:45:25 PDT 2025
https://github.com/sdasgup3 created https://github.com/llvm/llvm-project/pull/133763
Fixes the issue reporting in https://github.com/llvm/llvm-project/pull/120172#issuecomment-2763212827
>From 788c53741e0f464ccc0edc22979ab578053d2245 Mon Sep 17 00:00:00 2001
From: Sandeep Dasgupta <sdasgup at google.com>
Date: Mon, 31 Mar 2025 17:41:59 +0000
Subject: [PATCH] Fix printing of CAPI
`mlirUniformQuantizedSubChannelTypeGetNumBlockSizes`
---
mlir/test/CAPI/quant.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mlir/test/CAPI/quant.c b/mlir/test/CAPI/quant.c
index 30f376ebeb112..be4595fd39e81 100644
--- a/mlir/test/CAPI/quant.c
+++ b/mlir/test/CAPI/quant.c
@@ -268,7 +268,7 @@ void testUniformSubChannelType(MlirContext ctx) {
mlirTypeIsNull(illegalSubChannel));
// CHECK: num dims: 2
- fprintf(stderr, "num dims: %" PRId64 "\n",
+ fprintf(stderr, "num dims: %" PRIdPTR "\n",
mlirUniformQuantizedSubChannelTypeGetNumBlockSizes(subChannel));
// CHECK: axis-block-size-pair[0]: 0:1
More information about the Mlir-commits
mailing list