Fix -Wsign-compare warnings

Change-Id: I874dc007ac657c25a72c6752c1a2da74c028a822


[ROCm/hip commit: a6aef2a36a]
This commit is contained in:
Vlad Sytchenko
2020-06-16 11:41:01 -04:00
committed by Vladislav Sytchenko
parent 671b994ff8
commit 3af20b1bbb
2 changed files with 6 additions and 5 deletions
+2 -1
View File
@@ -112,7 +112,8 @@ hipError_t hipMemPrefetchAsync(const void* dev_ptr, size_t count, int device,
hipError_t hipMemAdvise(const void* dev_ptr, size_t count, hipMemoryAdvise advice, int device) {
HIP_INIT_API(hipMemAdvise, dev_ptr, count, advice, device);
if ((dev_ptr == nullptr) || (count == 0) || (device >= g_devices.size())) {
if ((dev_ptr == nullptr) || (count == 0) ||
(static_cast<size_t>(device) >= g_devices.size())) {
HIP_RETURN(hipErrorInvalidValue);
}
amd::Device* dev = g_devices[device]->devices()[0];