Displaying 2 results from an estimated 2 matches for "d77005".
2020 Apr 07
2
GSoC Interested student
Hi Johannes,
In order to create the testcases with the FIXMEs showing how it should
look after the transformation, I've been trying to come up with a way of
splitting the runtime call __tgt_target_teams based on Silei's recent
patch D77005. I like the idea of using its asynchronous version
__tgt_target_teams_nowait, but I think we would have to modify it,
either to return the async_info struct:
__tgt_async_info __tgt_target_teams_nowait(...) // This would break the
current canonical way of returning a status code.
or to receive...
2020 Mar 29
2
GSoC Interested student
Hi Johannes,
I've been thinking on how to implement a solution for the problem and I
have some questions:
1. You mention in the problem description that the current asynchronous
functions can be used, and probably modified. The problem is that those
runtime functions with _nowait at the end are not asynchronous. Looking
at their implementations, they just wait for other tasks is there