mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 09:58:55 +08:00
Copy command buffer into ring buffer
Resolves: NEO-7422 Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
6e39b98094
commit
2f5be7a48d
@@ -638,7 +638,7 @@ HWTEST2_P(L0DebuggerSimpleParameterizedTest, givenNotChangedSurfaceStateWhenCapt
|
||||
debugger->sbaTrackingGpuVa.address = 0x45670000;
|
||||
|
||||
NEO::CommandContainer container;
|
||||
container.initialize(pDevice, nullptr, true);
|
||||
container.initialize(pDevice, nullptr, true, false);
|
||||
|
||||
NEO::Debugger::SbaAddresses sba = {};
|
||||
sba.SurfaceStateBaseAddress = 0x123456000;
|
||||
@@ -661,7 +661,7 @@ HWTEST2_P(L0DebuggerSimpleParameterizedTest, givenChangedBaseAddressesWhenCaptur
|
||||
debugger->sbaTrackingGpuVa.address = 0x45670000;
|
||||
{
|
||||
NEO::CommandContainer container;
|
||||
container.initialize(pDevice, nullptr, true);
|
||||
container.initialize(pDevice, nullptr, true, false);
|
||||
|
||||
NEO::Debugger::SbaAddresses sba = {};
|
||||
sba.SurfaceStateBaseAddress = 0x123456000;
|
||||
@@ -674,7 +674,7 @@ HWTEST2_P(L0DebuggerSimpleParameterizedTest, givenChangedBaseAddressesWhenCaptur
|
||||
|
||||
{
|
||||
NEO::CommandContainer container;
|
||||
container.initialize(pDevice, nullptr, true);
|
||||
container.initialize(pDevice, nullptr, true, false);
|
||||
|
||||
NEO::Debugger::SbaAddresses sba = {};
|
||||
sba.GeneralStateBaseAddress = 0x123456000;
|
||||
@@ -687,7 +687,7 @@ HWTEST2_P(L0DebuggerSimpleParameterizedTest, givenChangedBaseAddressesWhenCaptur
|
||||
|
||||
{
|
||||
NEO::CommandContainer container;
|
||||
container.initialize(pDevice, nullptr, true);
|
||||
container.initialize(pDevice, nullptr, true, false);
|
||||
|
||||
NEO::Debugger::SbaAddresses sba = {};
|
||||
sba.BindlessSurfaceStateBaseAddress = 0x123456000;
|
||||
|
||||
Reference in New Issue
Block a user