Add explicit cast when computing the available amount of system memory.

[ROCm/hip commit: 12634879e2]
This commit is contained in:
Vladislav Sytchenko
2019-12-13 21:37:30 -05:00
bovenliggende 9dade23425
commit 29ca9f7d53
@@ -292,8 +292,8 @@ void memcpytest2_get_host_memory(size_t& free, size_t& total) {
MEMORYSTATUSEX status;
status.dwLength = sizeof(status);
GlobalMemoryStatusEx(&status);
free = (0.4 * status.ullAvailPhys);
total = (0.4 * status.ullTotalPhys);
free = static_cast<size_t>(0.4 * status.ullAvailPhys);
total = static_cast<size_t>(0.4 * status.ullTotalPhys);
}
#else
struct sysinfo memInfo;