Directed tests: Fix hipCtx_simple on NVCC

The test was using hipDeviceGetFromId instead of hipDeviceGet

Change-Id: Ia035ded5212f2659d5c8f01e9f6fcec514fe7ccb
This commit is contained in:
Maneesh Gupta
2016-09-09 12:04:22 +05:30
parent df0b908937
commit f8f75faba3
+1 -1
View File
@@ -34,7 +34,7 @@ int main(int argc, char *argv[])
hipCtx_t ctx;
hipCtx_t ctx1;
HIPCHECK(hipDeviceGetFromId(&device, 0));
HIPCHECK(hipDeviceGet(&device, 0));
HIPCHECK(hipCtxCreate(&ctx, 0, device));
HIPCHECK(hipCtxGetCurrent(&ctx1));
HIPCHECK(hipCtxGetDevice(&device1));