We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad7765f commit 7488d79Copy full SHA for 7488d79
unit_tests/aub_tests/fixtures/aub_fixture.h
@@ -71,6 +71,12 @@ class AUBFixture : public CommandQueueHwFixture {
71
aubCsr->expectMemoryEqual(gfxAddress, srcAddress, length);
72
}
73
74
+ template <typename FamilyType>
75
+ void expectNotEqualMemory(void *gfxAddress, const void *srcAddress, size_t length) {
76
+ auto aubCsr = getAubCsr<FamilyType>();
77
+ aubCsr->expectMemoryNotEqual(gfxAddress, srcAddress, length);
78
+ }
79
+
80
static void *getGpuPointer(GraphicsAllocation *allocation) {
81
return reinterpret_cast<void *>(allocation->getGpuAddress());
82
0 commit comments