Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix printing of mlirUniformQuantizedSubChannelTypeGetNumBlockSizes in 32-bit machine. #133763

Merged
merged 1 commit into from
Mar 31, 2025

Conversation

sdasgup3
Copy link
Contributor

@sdasgup3 sdasgup3 commented Mar 31, 2025

Fixes the issue reported in #120172 (comment)

cc @mgorny

@llvmbot llvmbot added the mlir label Mar 31, 2025
@llvmbot
Copy link
Member

llvmbot commented Mar 31, 2025

@llvm/pr-subscribers-mlir

Author: Sandeep Dasgupta (sdasgup3)

Changes

Fixes the issue reporting in #120172 (comment)


Full diff: https://github.com/llvm/llvm-project/pull/133763.diff

1 Files Affected:

  • (modified) mlir/test/CAPI/quant.c (+1-1)
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

@GleasonK
Copy link
Contributor

LGTM. My main question was - should we just be using int64_t instead of intptr_t for the return type, but it looks like the way you currently have it is more in line with the existing "get num" APIs like intptr_t mlirUniformQuantizedPerAxisTypeGetNumDims(...) and the test

fprintf(stderr, "num dims: %" PRIdPTR "\n",
          mlirUniformQuantizedPerAxisTypeGetNumDims(perAxis));

@GleasonK GleasonK merged commit baacd12 into llvm:main Mar 31, 2025
13 checks passed
@mgorny
Copy link
Member

mgorny commented Apr 1, 2025

Thanks! I can confirm that it fixed the issue for me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants