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

[ROCm/clr commit: 4c21eed68b]
This commit is contained in:
Vladislav Sytchenko
2019-12-13 21:37:30 -05:00
parent d2be30f0e0
commit 014f068e2f
@@ -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;