Removed NVCC check for hipCtxXXX functions in module_api/runKernel.cpp

Change-Id: I2bdd4fadf41063ec60626f1850e16f8307ebe6b5
This commit is contained in:
Rahul Garg
2016-09-04 20:37:29 +05:30
والد b250c5a7b3
کامیت 71736d2ed2
@@ -47,14 +47,11 @@ int main(){
B[i] = 0.0f;
}
#ifdef __HIP_PLATFORM_NVCC__
hipInit(0);
hipDevice_t device;
hipCtx_t context;
hipDeviceGet(&device, 0);
hipCtxCreate(&context, 0, device);
#endif
hipDevice_t device;
hipCtx_t context;
hipDeviceGet(&device, 0);
hipCtxCreate(&context, 0, device);
hipMalloc((void**)&Ad, SIZE);
hipMalloc((void**)&Bd, SIZE);
@@ -107,9 +104,6 @@ int main(){
std::cout<<A[i]<<" - "<<B[i]<<std::endl;
}
#ifdef __HIP_PLATFORM_NVCC__
hipCtxDetach(context);
#endif
hipCtxDestroy(context);
return 0;
}