Remove OpenCL Single Buffer Allocation Restriction

Change-Id: I5c37a7f08b02ed74ec6984c6da9ffa5dc9bf0f52
Cette révision appartient à :
Vladislav Sytchenko
2020-02-24 14:27:35 -05:00
révisé par Vladislav Sytchenko
Parent 0eea98b755
révision 019d1feea5
2 fichiers modifiés avec 2 ajouts et 2 suppressions
+1 -1
Voir le fichier
@@ -294,7 +294,7 @@ bool Settings::create(const CALdeviceattribs& calAttr, bool reportAsOCL12Device,
supportDepthsRGB_ = true;
}
if (use64BitPtr_) {
if ((GPU_ENABLE_LARGE_ALLOCATION) && (calAttr.isWorkstation) && (oclVersion_ == OpenCL20)) {
if ((GPU_ENABLE_LARGE_ALLOCATION) && (oclVersion_ == OpenCL20)) {
maxAllocSize_ = 64ULL * Gi;
} else {
maxAllocSize_ = 4048 * Mi;
+1 -1
Voir le fichier
@@ -332,7 +332,7 @@ bool Settings::create(const Pal::DeviceProperties& palProp,
supportDepthsRGB_ = true;
}
if (use64BitPtr_) {
if (amd::IS_HIP || (GPU_ENABLE_LARGE_ALLOCATION && wscaps.workStationBoard)) {
if (GPU_ENABLE_LARGE_ALLOCATION) {
maxAllocSize_ = 64ULL * Gi;
} else {
maxAllocSize_ = 4048 * Mi;