Merge pull request #411 from luckynikki/SWDEV-141024

SWDEV-141024

[ROCm/hip commit: d2a51ee651]
Tento commit je obsažen v:
Maneesh Gupta
2018-05-01 09:29:26 +05:30
odevzdal GitHub
+8
Zobrazit soubor
@@ -766,10 +766,18 @@ hipError_t hipArray3DCreate(hipArray_t* array, const HIP_ARRAY_DESCRIPTOR* pAllo
hipError_t hipMalloc3DArray(hipArray_t* array, const struct hipChannelFormatDesc* desc,
struct hipExtent extent, unsigned int flags) {
HIP_INIT_API(array, desc, &extent, flags);
HIP_SET_DEVICE();
hipError_t hip_status = hipSuccess;
if(array==NULL )
{
hip_status=hipErrorInvalidValue;
return ihipLogStatus(hip_status);
}
auto ctx = ihipGetTlsDefaultCtx();
*array = (hipArray*)malloc(sizeof(hipArray));