mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
Remove not used isSimulation functions
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
17d87a4c69
commit
cfe51ff2ba
@@ -15,13 +15,6 @@ namespace NEO {
|
||||
|
||||
const char *HwMapper<IGFX_ELKHARTLAKE>::abbreviation = "ehl";
|
||||
|
||||
bool isSimulationEHL(unsigned short deviceId) {
|
||||
switch (deviceId) {
|
||||
case IEHL_1x4x8_SUPERSKU_DEVICE_A0_ID:
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
};
|
||||
const PLATFORM EHL::platform = {
|
||||
IGFX_ELKHARTLAKE,
|
||||
PCH_UNKNOWN,
|
||||
@@ -42,7 +35,6 @@ const RuntimeCapabilityTable EHL::capabilityTable{
|
||||
0, // sharedSystemMemCapabilities
|
||||
83.333, // defaultProfilingTimerResolution
|
||||
MemoryConstants::pageSize, // requiredPreemptionSurfaceSize
|
||||
&isSimulationEHL, // isSimulation
|
||||
"lp", // platformType
|
||||
"", // deviceName
|
||||
PreemptionMode::MidThread, // defaultPreemptionMode
|
||||
|
||||
@@ -15,14 +15,6 @@ namespace NEO {
|
||||
|
||||
const char *HwMapper<IGFX_ICELAKE_LP>::abbreviation = "icllp";
|
||||
|
||||
bool isSimulationICLLP(unsigned short deviceId) {
|
||||
switch (deviceId) {
|
||||
case IICL_LP_GT1_MOB_DEVICE_F0_ID:
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
};
|
||||
|
||||
const PLATFORM ICLLP::platform = {
|
||||
IGFX_ICELAKE_LP,
|
||||
PCH_UNKNOWN,
|
||||
@@ -43,7 +35,6 @@ const RuntimeCapabilityTable ICLLP::capabilityTable{
|
||||
0, // sharedSystemMemCapabilities
|
||||
83.333, // defaultProfilingTimerResolution
|
||||
MemoryConstants::pageSize, // requiredPreemptionSurfaceSize
|
||||
&isSimulationICLLP, // isSimulation
|
||||
"lp", // platformType
|
||||
"", // deviceName
|
||||
PreemptionMode::MidThread, // defaultPreemptionMode
|
||||
|
||||
@@ -15,13 +15,6 @@ namespace NEO {
|
||||
|
||||
const char *HwMapper<IGFX_LAKEFIELD>::abbreviation = "lkf";
|
||||
|
||||
bool isSimulationLKF(unsigned short deviceId) {
|
||||
switch (deviceId) {
|
||||
case ILKF_1x8x8_DESK_DEVICE_F0_ID:
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
};
|
||||
const PLATFORM LKF::platform = {
|
||||
IGFX_LAKEFIELD,
|
||||
PCH_UNKNOWN,
|
||||
@@ -42,7 +35,6 @@ const RuntimeCapabilityTable LKF::capabilityTable{
|
||||
0, // sharedSystemMemCapabilities
|
||||
83.333, // defaultProfilingTimerResolution
|
||||
MemoryConstants::pageSize, // requiredPreemptionSurfaceSize
|
||||
&isSimulationLKF, // isSimulation
|
||||
"lp", // platformType
|
||||
"", // deviceName
|
||||
PreemptionMode::MidThread, // defaultPreemptionMode
|
||||
|
||||
Reference in New Issue
Block a user