Directed tests: Fix hipCtx_simple on NVCC

The test was using hipDeviceGetFromId instead of hipDeviceGet

Change-Id: Ia035ded5212f2659d5c8f01e9f6fcec514fe7ccb


[ROCm/clr commit: f8f75faba3]
This commit is contained in:
Maneesh Gupta
2016-09-09 12:04:22 +05:30
parent b5c5d0fe22
commit 56e62228af
@@ -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));