[Mlir-commits] [mlir] baacd12 - Fix printing of `mlirUniformQuantizedSubChannelTypeGetNumBlockSizes` in 32-bit machine. (#133763)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Mon Mar 31 13:45:46 PDT 2025
Author: Sandeep Dasgupta
Date: 2025-03-31T16:45:43-04:00
New Revision: baacd1287bfb17608068485c2554dd4455ac29a0
URL: https://github.com/llvm/llvm-project/commit/baacd1287bfb17608068485c2554dd4455ac29a0
DIFF: https://github.com/llvm/llvm-project/commit/baacd1287bfb17608068485c2554dd4455ac29a0.diff
LOG: Fix printing of `mlirUniformQuantizedSubChannelTypeGetNumBlockSizes` in 32-bit machine. (#133763)
Fixes the issue reported in
https://github.com/llvm/llvm-project/pull/120172#issuecomment-2763212827
cc @mgorny
Added:
Modified:
mlir/test/CAPI/quant.c
Removed:
################################################################################
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