[llvm] [OpenMP] Unconditionally provide an RPC client interface for OpenMP (PR #117933)
Joseph Huber via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 28 04:31:33 PST 2024
================
@@ -93,6 +94,22 @@ Error RPCServerTy::runServer(plugin::GenericDeviceTy &Device) {
});
break;
}
+ case OFFLOAD_HOST_CALL: {
+ uint64_t Sizes[64] = {0};
----------------
jhuber6 wrote:
Yes, it needs to handle up to 64 lanes. The proper solution is to template this and do dynamic dispatch based on the wave size, but this was easier for now so I just did that. I could do the template version if you'd prefer.
https://github.com/llvm/llvm-project/pull/117933
More information about the llvm-commits
mailing list