[llvm] [llvm-lit][NVPTX] Use the shell's `ptxas` if `LLVM_PTXAS_EXECUTABLE` isn't set (PR #132810)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 24 11:55:52 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {darker}-->
:warning: Python code formatter, darker found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
darker --check --diff -r 1f27ff91b3104f3d2038324f09fb9cab2c75d037...ad13f699d110761e3ad861eb7b9e43c7e0c9b3c6 llvm/test/lit.cfg.py
``````````
</details>
<details>
<summary>
View the diff from darker here.
</summary>
``````````diff
--- lit.cfg.py 2025-03-21 21:37:12.000000 +0000
+++ lit.cfg.py 2025-03-24 18:55:26.654802 +0000
@@ -344,11 +344,13 @@
]
)
ptxas_executable = (
- os.environ.get("LLVM_PTXAS_EXECUTABLE", None) or config.ptxas_executable or shutil.which("ptxas")
+ os.environ.get("LLVM_PTXAS_EXECUTABLE", None)
+ or config.ptxas_executable
+ or shutil.which("ptxas")
)
if ptxas_executable:
enable_ptxas(ptxas_executable)
llvm_config.add_tool_substitutions(tools, config.llvm_tools_dir)
``````````
</details>
https://github.com/llvm/llvm-project/pull/132810
More information about the llvm-commits
mailing list