SWDEV-305752 - OCL WIN Conformance select test fail

Change-Id: I73571c262a14d6b27d8cf91b6d1a13e1974ddc96
Dieser Commit ist enthalten in:
Alex Xie
2021-10-27 12:51:08 -04:00
committet von AlexBin Xie
Ursprung 4aea2ad172
Commit 0e321f45c1
2 geänderte Dateien mit 10 neuen und 10 gelöschten Zeilen
+10
Datei anzeigen
@@ -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
) {
-10
Datei anzeigen
@@ -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