[Mlir-commits] [mlir] [MLIR][NVVM] Print ptxas path in debug output for "serialize-to-binary" (PR #132373)
Guray Ozen
llvmlistbot at llvm.org
Mon Mar 24 01:06:39 PDT 2025
https://github.com/grypp updated https://github.com/llvm/llvm-project/pull/132373
>From cf3e2141886f72b1e706d40565b246b901fae2d1 Mon Sep 17 00:00:00 2001
From: Guray Ozen <gozen at nvidia.com>
Date: Mon, 24 Mar 2025 09:06:24 +0100
Subject: [PATCH] [MLIR][NVVM] Print ptxas path
---
mlir/lib/Target/LLVM/NVVM/Target.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/mlir/lib/Target/LLVM/NVVM/Target.cpp b/mlir/lib/Target/LLVM/NVVM/Target.cpp
index fa8c597da58b1..69a247b06bf16 100644
--- a/mlir/lib/Target/LLVM/NVVM/Target.cpp
+++ b/mlir/lib/Target/LLVM/NVVM/Target.cpp
@@ -455,6 +455,7 @@ NVPTXSerializer::compileToBinary(const std::string &ptxCode) {
LLVM_DEBUG({
llvm::dbgs() << "Tool invocation for module: "
<< getOperation().getNameAttr() << "\n";
+ llvm::dbgs() << "ptxas executable:" << ptxasCompiler.value() << "\n";
llvm::interleave(ptxasArgs, llvm::dbgs(), " ");
llvm::dbgs() << "\n";
if (createFatbin) {
More information about the Mlir-commits
mailing list