fixed hipHostGetFlags test

[ROCm/clr commit: e9e84d2db6]
Цей коміт міститься в:
Aditya Atluri
2016-03-23 02:45:21 -05:00
джерело 53bdbdc81b
коміт 49946441ab
2 змінених файлів з 2 додано та 3 видалено
+2 -2
Переглянути файл
@@ -130,7 +130,7 @@ int HIP_DISABLE_HW_COPY_DEP = 1;
// Compile code that generate
#ifndef COMPILE_TRACE_MARKER
#define COMPILE_TRACE_MARKER 1
#define COMPILE_TRACE_MARKER 0
#endif
@@ -2064,7 +2064,7 @@ hipError_t hipHostGetDevicePointer(void **devicePointer, void *hostPointer, unsi
hipError_t e = hipSuccess;
// Flags must be 0:
if (flags == 0) {
if (flags != 0) {
e = hipErrorInvalidValue;
} else {
hc::accelerator acc;
-1
Переглянути файл
@@ -52,7 +52,6 @@ HIPCHECK(hipHostMalloc((void**)&C, SIZE, hipHostMallocMapped));
HIPCHECK(hipHostMalloc((void**)&D, SIZE, hipHostMallocDefault));
unsigned int flagA, flagB, flagC;
HIPCHECK(hipHostGetDevicePointer((void**)&Ad, A, 0));
HIPCHECK(hipHostGetDevicePointer((void**)&Bd, B, 0));
HIPCHECK(hipHostGetDevicePointer((void**)&Cd, C, 0));