diff --git a/hipamd/rocclr/hip_module.cpp b/hipamd/rocclr/hip_module.cpp index 53f17ffdf1..6b61b2c6ff 100755 --- a/hipamd/rocclr/hip_module.cpp +++ b/hipamd/rocclr/hip_module.cpp @@ -631,16 +631,16 @@ hipError_t hipLaunchCooperativeKernelMultiDevice(hipLaunchParams* launchParamsLi { HIP_INIT_API(hipLaunchCooperativeKernelMultiDevice, launchParamsList, numDevices, flags); - return ihipLaunchCooperativeKernelMultiDevice(launchParamsList, numDevices, flags, + return HIP_RETURN(ihipLaunchCooperativeKernelMultiDevice(launchParamsList, numDevices, flags, (amd::NDRangeKernelCommand::CooperativeGroups | - amd::NDRangeKernelCommand::CooperativeMultiDeviceGroups)); + amd::NDRangeKernelCommand::CooperativeMultiDeviceGroups))); } hipError_t hipExtLaunchMultiKernelMultiDevice(hipLaunchParams* launchParamsList, int numDevices, unsigned int flags) { HIP_INIT_API(hipExtLaunchMultiKernelMultiDevice, launchParamsList, numDevices, flags); - return ihipLaunchCooperativeKernelMultiDevice(launchParamsList, numDevices, flags, 0); + return HIP_RETURN(ihipLaunchCooperativeKernelMultiDevice(launchParamsList, numDevices, flags, 0)); } hipError_t hipModuleGetTexRef(textureReference** texRef, hipModule_t hmod, const char* name) {