P4 to Git Change 1539198 by skudchad@skudchad_test2_win_opencl on 2018/04/10 17:32:14

SWDEV-145570 - [HIP] -  Add HIP API skeletons for Peer and memory

	ReviewBoardURL = http://ocltc.amd.com/reviews/r/14596/diff/

Affected files ...

... //depot/stg/opencl/drivers/opencl/api/hip/hip_context.cpp#7 edit
... //depot/stg/opencl/drivers/opencl/api/hip/hip_memory.cpp#9 edit
... //depot/stg/opencl/drivers/opencl/api/hip/hip_peer.cpp#1 add
This commit is contained in:
foreman
2018-04-10 17:41:24 -04:00
parent e7f206d249
commit 04decb72fc
3 changed files with 139 additions and 26 deletions
+16
View File
@@ -169,6 +169,22 @@ hipError_t hipCtxPushCurrent(hipCtx_t ctx) {
return hipSuccess;
}
hipError_t hipDriverGetVersion(int* driverVersion) {
HIP_INIT_API(driverVersion);
auto* deviceHandle = g_devices[0]->devices()[0];
const auto& info = deviceHandle->info();
if (driverVersion) {
*driverVersion = AMD_PLATFORM_BUILD_NUMBER * 100 +
AMD_PLATFORM_REVISION_NUMBER;
} else {
return hipErrorInvalidValue;
}
return hipSuccess;;
}
hipError_t hipCtxGetDevice(hipDevice_t* device) {
HIP_INIT_API(device);