SWDEV-440746 - Fix a typo with GPU_PINNED_XFER_SIZE

Change-Id: I8fdbfb4e1c6b1274206c28a529eee9ebeaaa26fb
This commit is contained in:
German Andryeyev
2024-10-21 17:35:39 -04:00
parent 64e1b15551
commit dceb320ba7
+1 -1
View File
@@ -61,7 +61,7 @@ Settings::Settings() {
// Initialize transfer buffer size to 1MB by default
xferBufSize_ = 1024 * Ki;
pinnedXferSize_ = GPU_PINNED_MIN_XFER_SIZE * Mi;
pinnedXferSize_ = GPU_PINNED_XFER_SIZE * Mi;
pinnedMinXferSize_ = flagIsDefault(GPU_PINNED_MIN_XFER_SIZE)
? 1 * Mi : GPU_PINNED_MIN_XFER_SIZE * Mi;