fixed hipHostGetFlags test

This commit is contained in:
Aditya Atluri
2016-03-23 02:45:21 -05:00
parent b1b6d5e648
commit e9e84d2db6
2 changed files with 2 additions and 3 deletions
+2 -2
View File
@@ -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
View File
@@ -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));