mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 21:18:24 +08:00
Fix dependency resolve in level zero black box tests
Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
ac5d719e25
commit
b4544f6f78
@@ -42,6 +42,7 @@ struct AubInfo {
|
||||
bool allocDumpable = false;
|
||||
bool bcsDumpOnly = false;
|
||||
bool memObjectsAllocationWithWritableFlags = false;
|
||||
bool writeMemoryOnly = false;
|
||||
};
|
||||
|
||||
class GraphicsAllocation : public IDNode<GraphicsAllocation> {
|
||||
@@ -129,6 +130,9 @@ class GraphicsAllocation : public IDNode<GraphicsAllocation> {
|
||||
aubInfo.allocDumpable = dumpable;
|
||||
aubInfo.bcsDumpOnly = bcsDumpOnly;
|
||||
}
|
||||
void setWriteMemoryOnly(bool writeMemoryOnly) {
|
||||
aubInfo.writeMemoryOnly = writeMemoryOnly;
|
||||
}
|
||||
bool isAllocDumpable() const { return aubInfo.allocDumpable; }
|
||||
bool isMemObjectsAllocationWithWritableFlags() const { return aubInfo.memObjectsAllocationWithWritableFlags; }
|
||||
void setMemObjectsAllocationWithWritableFlags(bool newValue) { aubInfo.memObjectsAllocationWithWritableFlags = newValue; }
|
||||
|
||||
Reference in New Issue
Block a user