SWDEV-305752 - OCL WIN Conformance select test fail

Change-Id: I73571c262a14d6b27d8cf91b6d1a13e1974ddc96
This commit is contained in:
Alex Xie
2021-10-27 12:51:08 -04:00
کامیت شده توسط AlexBin Xie
والد 4aea2ad172
کامیت 0e321f45c1
2فایلهای تغییر یافته به همراه10 افزوده شده و 10 حذف شده
+10
مشاهده پرونده
@@ -734,6 +734,16 @@ class Memory : public amd::HeapObject {
return NULL;
}
bool isPersistentMapped() const { return (flags_ & PersistentMap) ? true : false; }
void setPersistentMapFlag(bool persistentMapped) {
if (persistentMapped == true) {
flags_ |= PersistentMap;
}
else {
flags_ &= ~PersistentMap;
}
}
virtual bool pinSystemMemory(void* hostPtr, //!< System memory address
size_t size //!< Size of allocated system memory
) {
@@ -97,16 +97,6 @@ class Memory : public device::Memory, public Resource {
size_t* slicePitch = NULL //!< Slice for the mapped memory
);
virtual bool isPersistentMapped() const { return (flags_ & PersistentMap) ? true : false; }
virtual void setPersistentMapFlag(bool persistentMapped) {
if (persistentMapped == true) {
flags_ |= PersistentMap;
}
else {
flags_ &= ~PersistentMap;
}
}
//! Pins system memory associated with this memory object
virtual bool pinSystemMemory(void* hostPtr, //!< System memory address
size_t size //!< Size of allocated system memory