mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 09:03:14 +08:00
[7/n] Internal 4GB allocator
- rename getBase to getCpuBase - change some test names accordingly. Change-Id: I6fb2e4714298250147ea7766a916d7f5d62edc54
This commit is contained in:
committed by
sys_ocldev
parent
cfe1f72dcb
commit
1602fa5a88
@@ -269,7 +269,7 @@ HWTEST_F(BarrierTest, givenEmptyCommandStreamAndBlockedBarrierCommandWhenUserEve
|
||||
auto &commandStream = pCmdQ->getCS(0);
|
||||
|
||||
auto commandStreamStart = commandStream.getUsed();
|
||||
auto commandStreamBuffer = commandStream.getBase();
|
||||
auto commandStreamBuffer = commandStream.getCpuBase();
|
||||
|
||||
auto retVal = pCmdQ->enqueueBarrierWithWaitList(
|
||||
numEventsInWaitList,
|
||||
@@ -285,7 +285,7 @@ HWTEST_F(BarrierTest, givenEmptyCommandStreamAndBlockedBarrierCommandWhenUserEve
|
||||
event2.setStatus(CL_COMPLETE);
|
||||
|
||||
auto commandStreamStart2 = commandStream.getUsed();
|
||||
auto commandStreamBuffer2 = commandStream.getBase();
|
||||
auto commandStreamBuffer2 = commandStream.getCpuBase();
|
||||
|
||||
EXPECT_EQ(0u, commandStreamStart);
|
||||
EXPECT_GT(commandStreamStart2, 0u);
|
||||
|
||||
Reference in New Issue
Block a user