SWDEV-319818 - Release restriction on hipResourceViewDesc

Let more types support hipResourceViewDesc.
Add missing symbols to fix cuda build failing.

Change-Id: Ife694cc6491427093863252e257e820b0bb4fa0f
Este commit está contenido en:
Tao Sang
2022-05-09 17:42:24 -04:00
cometido por Tao Sang
padre d04938a6ad
commit a19b767e8a
Se han modificado 2 ficheros con 38 adiciones y 3 borrados
+1 -3
Ver fichero
@@ -88,9 +88,7 @@ hipError_t ihipCreateTextureObject(hipTextureObject_t* pTexObject,
return hipErrorInvalidValue;
}
// pResViewDesc can only be specified if the type of resource is a HIP array or a HIP mipmapped array.
if ((pResViewDesc != nullptr) &&
((pResDesc->resType != hipResourceTypeArray) && (pResDesc->resType != hipResourceTypeMipmappedArray))) {
if (pResViewDesc != nullptr && pResDesc->resType == hipResourceTypeLinear) {
return hipErrorInvalidValue;
}