SWDEV-378367 - Observed performance drop for Geekbench5

Change-Id: I0beabc6e3bec095574c8168fcf52af1e94105792


[ROCm/clr commit: 97243ff755]
This commit is contained in:
Xie,AlexBin
2023-02-17 18:49:15 -05:00
committato da AlexBin Xie
parent 77a647b170
commit 4d6ec86edf
@@ -78,9 +78,10 @@ Settings::Settings() {
// By default use host blit
blitEngine_ = BlitEngineHost;
pinnedXferSize_ = GPU_PINNED_MIN_XFER_SIZE * Mi;
pinnedXferSize_ = GPU_PINNED_XFER_SIZE * Mi;
size_t defaultMinXferSize = amd::IS_HIP ? 128: 4;
pinnedMinXferSize_ = flagIsDefault(GPU_PINNED_MIN_XFER_SIZE)
? 128 * Mi : GPU_PINNED_MIN_XFER_SIZE * Mi;
? defaultMinXferSize * Mi : GPU_PINNED_MIN_XFER_SIZE * Mi;
// Disable FP_FAST_FMA defines by default
reportFMAF_ = false;