mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
Use product aub device id and make it configurable by using debug flag
Change-Id: Ie65eea0f72497ef68e805ad438f4f53df731d304
This commit is contained in:
@ -22,6 +22,7 @@
|
||||
|
||||
#include "hw_info_bxt.h"
|
||||
#include "hw_cmds.h"
|
||||
#include "runtime/aub_mem_dump/aub_services.h"
|
||||
#include "runtime/helpers/engine_node.h"
|
||||
#include "runtime/memory_manager/memory_constants.h"
|
||||
|
||||
@ -71,8 +72,8 @@ const RuntimeCapabilityTable BXT::capabilityTable{
|
||||
EngineType::ENGINE_RCS, // defaultEngineType
|
||||
MemoryConstants::pageSize, //requiredPreemptionSurfaceSize
|
||||
false, // isCore
|
||||
true // sourceLevelDebuggerSupported
|
||||
};
|
||||
true, // sourceLevelDebuggerSupported
|
||||
CmdServicesMemTraceVersion::DeviceValues::Bxt};
|
||||
|
||||
const HardwareInfo BXT_1x2x6::hwInfo = {
|
||||
&BXT::platform,
|
||||
|
@ -22,6 +22,7 @@
|
||||
|
||||
#include "hw_info_cfl.h"
|
||||
#include "hw_cmds.h"
|
||||
#include "runtime/aub_mem_dump/aub_services.h"
|
||||
#include "runtime/helpers/engine_node.h"
|
||||
#include "runtime/memory_manager/memory_constants.h"
|
||||
|
||||
@ -66,8 +67,8 @@ const RuntimeCapabilityTable CFL::capabilityTable{
|
||||
EngineType::ENGINE_RCS, // defaultEngineType
|
||||
MemoryConstants::pageSize, //requiredPreemptionSurfaceSize
|
||||
true, // isCore
|
||||
true // sourceLevelDebuggerSupported
|
||||
};
|
||||
true, // sourceLevelDebuggerSupported
|
||||
CmdServicesMemTraceVersion::DeviceValues::Cfl};
|
||||
|
||||
const HardwareInfo CFL_1x2x6::hwInfo = {
|
||||
&CFL::platform,
|
||||
|
@ -22,6 +22,7 @@
|
||||
|
||||
#include "hw_info_glk.h"
|
||||
#include "hw_cmds.h"
|
||||
#include "runtime/aub_mem_dump/aub_services.h"
|
||||
#include "runtime/helpers/engine_node.h"
|
||||
#include "runtime/memory_manager/memory_constants.h"
|
||||
|
||||
@ -66,8 +67,8 @@ const RuntimeCapabilityTable GLK::capabilityTable{
|
||||
EngineType::ENGINE_RCS, // defaultEngineType
|
||||
MemoryConstants::pageSize, //requiredPreemptionSurfaceSize
|
||||
false, // isCore
|
||||
true // sourceLevelDebuggerSupported
|
||||
};
|
||||
true, // sourceLevelDebuggerSupported
|
||||
CmdServicesMemTraceVersion::DeviceValues::Glk};
|
||||
|
||||
const HardwareInfo GLK_1x3x6::hwInfo = {
|
||||
&GLK::platform,
|
||||
|
@ -22,6 +22,7 @@
|
||||
|
||||
#include "hw_info_kbl.h"
|
||||
#include "hw_cmds.h"
|
||||
#include "runtime/aub_mem_dump/aub_services.h"
|
||||
#include "runtime/helpers/engine_node.h"
|
||||
#include "runtime/memory_manager/memory_constants.h"
|
||||
|
||||
@ -66,8 +67,8 @@ const RuntimeCapabilityTable KBL::capabilityTable{
|
||||
EngineType::ENGINE_RCS, // defaultEngineType
|
||||
MemoryConstants::pageSize, //requiredPreemptionSurfaceSize
|
||||
true, // isCore
|
||||
true // sourceLevelDebuggerSupported
|
||||
};
|
||||
true, // sourceLevelDebuggerSupported
|
||||
CmdServicesMemTraceVersion::DeviceValues::Kbl};
|
||||
|
||||
const HardwareInfo KBL_1x2x6::hwInfo = {
|
||||
&KBL::platform,
|
||||
|
@ -22,6 +22,7 @@
|
||||
|
||||
#include "hw_info_skl.h"
|
||||
#include "hw_cmds.h"
|
||||
#include "runtime/aub_mem_dump/aub_services.h"
|
||||
#include "runtime/helpers/engine_node.h"
|
||||
#include "runtime/memory_manager/memory_constants.h"
|
||||
|
||||
@ -74,8 +75,8 @@ const RuntimeCapabilityTable SKL::capabilityTable{
|
||||
EngineType::ENGINE_RCS, // defaultEngineType
|
||||
MemoryConstants::pageSize, //requiredPreemptionSurfaceSize
|
||||
true, // isCore
|
||||
true // sourceLevelDebuggerSupported
|
||||
};
|
||||
true, // sourceLevelDebuggerSupported
|
||||
CmdServicesMemTraceVersion::DeviceValues::Skl};
|
||||
|
||||
const HardwareInfo SKL_1x2x6::hwInfo = {
|
||||
&SKL::platform,
|
||||
|
Reference in New Issue
Block a user