fixed hipHostGetFlags test
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user