First implementation of hipCtxXXX functions

Change-Id: I4609cbe6bd90a1fff8655bff4fdd773864397aba


[ROCm/hip commit: 62d390da58]
This commit is contained in:
Rahul Garg
2016-08-13 00:09:08 +05:30
parent 2880d1230f
commit 5e91fe9af3
4 changed files with 83 additions and 0 deletions
@@ -31,9 +31,16 @@ int main(int argc, char *argv[])
hipDevice_t device;
hipCtx_t ctx;
hipCtx_t ctx1;
HIPCHECK(hipDeviceGetFromId(&device, 0));
HIPCHECK(hipCtxCreate(&ctx, 0, device));
HIPCHECK(hipCtxGetCurrent(&ctx1));
HIPCHECK(hipCtxPopCurrent(&ctx1));
HIPCHECK(hipCtxGetCurrent(&ctx1));
HIPCHECK(hipCtxDestroy(ctx));
passed();
};