SWDEV-336532 - Add hipMemoryTypeManaged in hipMemoryType enum (#2688)

Change-Id: Ia1618668a57ebaca9a65081ba13af579c0ac87c2
Tento commit je obsažen v:
ROCm CI Service Account
2022-06-03 08:32:22 +05:30
odevzdal GitHub
rodič 08435a972b
revize bf3c5870e6
+4 -3
Zobrazit soubor
@@ -160,9 +160,10 @@ typedef enum hipMemoryType {
hipMemoryTypeHost, ///< Memory is physically located on host
hipMemoryTypeDevice, ///< Memory is physically located on device. (see deviceId for specific
///< device)
hipMemoryTypeArray, ///< Array memory, physically located on device. (see deviceId for specific
///< device)
hipMemoryTypeUnified ///< Not used currently
hipMemoryTypeArray, ///< Array memory, physically located on device. (see deviceId for specific
///< device)
hipMemoryTypeUnified, ///< Not used currently
hipMemoryTypeManaged ///< Managed memory, automaticallly managed by the unified memory system
} hipMemoryType;
/**