Add a threshold for forcing ROCr to take blit path

This workaround is to avoid performance penalty of SDMA engine
taking a while to clock up from a lower DPM state. Add env var
GPU_FORCE_BLIT_COPY_SIZE (1024 by default for HIP in KB). Forcing
Src and Dst agent to be amdgpu makes ROCr take blit copy path for
what otherwise should have been SDMA copy

Change-Id: I222f687155f86000d17d66d25182e490b6710463
This commit is contained in:
Saleel Kudchadker
2020-04-24 10:07:50 -07:00
والد cba7a4d20e
کامیت 5f64e6e7ad
5فایلهای تغییر یافته به همراه32 افزوده شده و 3 حذف شده
+4
مشاهده پرونده
@@ -486,6 +486,10 @@ Settings::Settings() : value_(0) {
if (flagIsDefault(HIP_HIDDEN_FREE_MEM)) {
HIP_HIDDEN_FREE_MEM = 320;
}
if (flagIsDefault(GPU_FORCE_BLIT_COPY_SIZE)) {
GPU_FORCE_BLIT_COPY_SIZE = 1024;
}
}
}