[llvm] [offload] Add properties parameter to olLaunchKernel (PR #184343)
Kevin Sala Penades via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 4 14:48:57 PST 2026
================
@@ -1119,7 +1125,7 @@ struct CUDADeviceTy : public GenericDeviceTy {
Res = getDeviceAttrRaw(CU_DEVICE_ATTRIBUTE_GPU_OVERLAP, TmpInt);
if (Res == CUDA_SUCCESS)
- Info.add("Concurrent Copy and Execution", (bool)TmpInt);
+ Info.add("Concurrent Copy and Execution", bool(TmpInt));
----------------
kevinsala wrote:
These changes should go to a separate PR; they are unrelated.
https://github.com/llvm/llvm-project/pull/184343
More information about the llvm-commits
mailing list