P4 to Git Change 2051060 by michliao@hliao-dev-00-hip.rocm-workspace on 2019/12/30 16:42:07

SWDEV-145570 - Clean up after `hipError_t` unification.

	- Replace deprecated `hipError_t` enums.

Affected files ...

... //depot/stg/opencl/drivers/opencl/api/hip/hip_device_runtime.cpp#24 edit
... //depot/stg/opencl/drivers/opencl/api/hip/hip_error.cpp#4 edit
... //depot/stg/opencl/drivers/opencl/api/hip/hip_event.cpp#19 edit
... //depot/stg/opencl/drivers/opencl/api/hip/hip_memory.cpp#94 edit
... //depot/stg/opencl/drivers/opencl/api/hip/hip_module.cpp#52 edit
... //depot/stg/opencl/drivers/opencl/api/hip/hip_stream.cpp#27 edit
... //depot/stg/opencl/drivers/opencl/api/hip/hip_texture.cpp#32 edit
... //depot/stg/opencl/drivers/opencl/api/hip/trace_helper.h#5 edit
This commit is contained in:
foreman
2019-12-30 16:46:39 -05:00
parent 2989140f78
commit 9386736b41
8 changed files with 22 additions and 31 deletions
+1 -1
View File
@@ -342,7 +342,7 @@ hipError_t ihipModuleLaunchKernel(hipFunction_t f,
// Capture the kernel arguments
if (CL_SUCCESS != command->captureAndValidate()) {
delete command;
return hipErrorMemoryAllocation;
return hipErrorOutOfMemory;
}
command->enqueue();