Enabled profiling for CPU agents for memcpy activities

To be able to trace memcpy asynchronously, both dst and src agents need to have profiling enabled and the api for enabling profiling was only enabling for gpu agents. CPU agents didn't have profiling enabled so the signal owner could not be known. hsa_amd_profiling_get_async_copy_time will fail with an HSA status error because it can't read the agent for the given signal.

Change-Id: Ie165e0e39b8fcd6992a55695b9ffcead10a8e812
This commit is contained in:
Youssef Aly
2023-11-07 12:56:53 -06:00
gecommit door David Yat Sin
bovenliggende f9cf1852e5
commit ae1da390bd
@@ -414,6 +414,11 @@ hsa_status_t hsa_amd_profiling_async_copy_enable(bool enable) {
hsa_status_t err = agent->profiling_enabled(enable);
if (err != HSA_STATUS_SUCCESS) ret = err;
}
for (core::Agent* agent : core::Runtime::runtime_singleton_->cpu_agents()) {
hsa_status_t err = agent->profiling_enabled(enable);
if (err != HSA_STATUS_SUCCESS) ret = err;
}
return ret;
CATCH;