Suppose I have a .cc
file containing both device kernel vec_add
and host function main
, how can I get the IR only from the device kernel when generating the IR?
--offload-device-only
seems to be what you’re looking for: Clang command line argument reference — Clang 17.0.0git documentation (llvm.org)
It works! Thanks very much.