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

Change-Id: Ia1618668a57ebaca9a65081ba13af579c0ac87c2

[ROCm/hip commit: bf3c5870e6]
This commit is contained in:
ROCm CI Service Account
2022-06-03 08:32:22 +05:30
zatwierdzone przez GitHub
rodzic 086fb9d935
commit c430e0d281
@@ -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;
/**