commit | 561dcb26d4597b592caa417d36c1a4e09fb2be2d | [log] [tgz] |
---|---|---|
author | Joseph Huber <huberjn@outlook.com> | Fri Mar 21 08:25:52 2025 -0500 |
committer | GitHub <noreply@github.com> | Fri Mar 21 08:25:52 2025 -0500 |
tree | 3252126e1346a22765abc8357fca81c61d7978ee | |
parent | 369be311a7b8344699d12719a8fa557fe8934e46 [diff] |
[Clang] Permit `-Xarch_` to be used with `--offload-arch` (#131884) Summary: The `--offload-arch` option is very complicated, but roughly behaves as the `-march` option for several compilations at once. This creates problems when we try to combine multiple separate architectures into one, as happens with SYCL, OpenMP, and HIP w/ SPIR-V. The existing solution used by OpenMP is the `-Xopenmp-target` option, this lets you select which `--offload-arch` options go to which toolchain. This patch permits `-Xarch_` to be used in the same way. There are concerns about whether or not this falls into the `-Xarch_` umbrella because it changes the driver behaviour, but I think this is the easiest way to handle this problem. The existing solution seems to be prefixing things and adding more magic handling into `--offload-arch`. Like SYCL is doing `nvidia_gpu_sm_89` instead of just `-Xarch_nvptx64 --offload-arch=sm_89`. The only reason this is more complicated than just doing `-Xarch_sm_89 -march=...` is because we need to know to create multiple jobs for each architecture.
Welcome to the LLVM project!
This repository contains the source code for LLVM, a toolkit for the construction of highly optimized compilers, optimizers, and run-time environments.
The LLVM project has multiple components. The core of the project is itself called “LLVM”. This contains all of the tools, libraries, and header files needed to process intermediate representations and convert them into object files. Tools include an assembler, disassembler, bitcode analyzer, and bitcode optimizer.
C-like languages use the Clang frontend. This component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode -- and from there into object files, using LLVM.
Other components include: the libc++ C++ standard library, the LLD linker, and more.
Consult the Getting Started with LLVM page for information on building and running LLVM.
For information on how to contribute to the LLVM project, please take a look at the Contributing to LLVM guide.
Join the LLVM Discourse forums, Discord chat, LLVM Office Hours or Regular sync-ups.
The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.