P4 to Git Change 1536698 by skudchad@skudchad_test2_win_opencl on 2018/04/04 13:18:19

SWDEV-145570 - [HIP] -  Add HIP Memory api skeletons

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

Affected files ...

... //depot/stg/opencl/drivers/opencl/api/hip/hip_device_runtime.cpp#4 edit
... //depot/stg/opencl/drivers/opencl/api/hip/hip_memory.cpp#6 edit
This commit is contained in:
foreman
2018-04-04 13:24:15 -04:00
förälder dd4b380661
incheckning 4574e01740
2 ändrade filer med 357 tillägg och 38 borttagningar
-24
Visa fil
@@ -401,14 +401,6 @@ hipError_t hipGetDeviceFlags ( unsigned int* flags ) {
return hipErrorUnknown;
}
hipError_t hipIpcCloseMemHandle ( void* devPtr ) {
HIP_INIT_API(devPtr);
assert(0 && "Unimplemented");
return hipErrorUnknown;
}
hipError_t hipIpcGetEventHandle ( hipIpcEventHandle_t* handle, hipEvent_t event ) {
HIP_INIT_API(handle, event);
@@ -417,14 +409,6 @@ hipError_t hipIpcGetEventHandle ( hipIpcEventHandle_t* handle, hipEvent_t event
return hipErrorUnknown;
}
hipError_t hipIpcGetMemHandle ( hipIpcMemHandle_t* handle, void* devPtr ) {
HIP_INIT_API(handle, devPtr);
assert(0 && "Unimplemented");
return hipErrorUnknown;
}
hipError_t hipIpcOpenEventHandle ( hipEvent_t* event, hipIpcEventHandle_t handle ) {
HIP_INIT_API(event, handle);
@@ -433,14 +417,6 @@ hipError_t hipIpcOpenEventHandle ( hipEvent_t* event, hipIpcEventHandle_t handle
return hipErrorUnknown;
}
hipError_t hipIpcOpenMemHandle ( void** devPtr, hipIpcMemHandle_t handle, unsigned int flags ) {
HIP_INIT_API(devPtr, handle, flags);
assert(0 && "Unimplemented");
return hipErrorUnknown;
}
hipError_t hipSetDevice ( int device ) {
HIP_INIT_API(device);