mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-04 23:56:39 +08:00
235 lines
9.4 KiB
C++
235 lines
9.4 KiB
C++
/*
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "engine_node.h"
|
|
#include "hw_cmds.h"
|
|
#include "hw_info.h"
|
|
#include "runtime/aub_mem_dump/aub_services.h"
|
|
#include "runtime/memory_manager/memory_constants.h"
|
|
|
|
namespace OCLRT {
|
|
|
|
const char *HwMapper<IGFX_CANNONLAKE>::abbreviation = "cnl";
|
|
|
|
bool isSimulationCNL(unsigned short deviceId) {
|
|
switch (deviceId) {
|
|
case ICNL_3x8_DESK_DEVICE_F0_ID:
|
|
case ICNL_5x8_DESK_DEVICE_F0_ID:
|
|
case ICNL_9x8_DESK_DEVICE_F0_ID:
|
|
case ICNL_13x8_DESK_DEVICE_F0_ID:
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
|
|
const PLATFORM CNL::platform = {
|
|
IGFX_CANNONLAKE,
|
|
PCH_UNKNOWN,
|
|
IGFX_GEN10_CORE,
|
|
IGFX_GEN10_CORE,
|
|
PLATFORM_NONE, // default init
|
|
0, // usDeviceID
|
|
0, // usRevId. 0 sets the stepping to A0
|
|
0, // usDeviceID_PCH
|
|
0, // usRevId_PCH
|
|
GTTYPE_UNDEFINED};
|
|
|
|
const RuntimeCapabilityTable CNL::capabilityTable{
|
|
{0, 0, 0, false, false, false}, // kmdNotifyProperties
|
|
{true, true}, // whitelistedRegisters
|
|
MemoryConstants::max48BitAddress, // gpuAddressSpace
|
|
83.333, // defaultProfilingTimerResolution
|
|
MemoryConstants::pageSize, // requiredPreemptionSurfaceSize
|
|
&isSimulationCNL, // isSimulation
|
|
PreemptionMode::MidThread, // defaultPreemptionMode
|
|
EngineType::ENGINE_RCS, // defaultEngineType
|
|
0, // maxRenderFrequency
|
|
21, // clVersionSupport
|
|
CmdServicesMemTraceVersion::DeviceValues::Cnl, // aubDeviceId
|
|
0, // extraQuantityThreadsPerEU
|
|
64, // slmSize
|
|
true, // ftrSupportsFP64
|
|
true, // ftrSupports64BitMath
|
|
true, // ftrSvm
|
|
true, // ftrSupportsCoherency
|
|
true, // ftrSupportsVmeAvcTextureSampler
|
|
true, // ftrSupportsVmeAvcPreemption
|
|
false, // ftrRenderCompressedBuffers
|
|
false, // ftrRenderCompressedImages
|
|
true, // ftr64KBpages
|
|
true, // instrumentationEnabled
|
|
true, // forceStatelessCompilationFor32Bit
|
|
true, // isCore
|
|
true, // sourceLevelDebuggerSupported
|
|
true, // supportsVme
|
|
false // supportCacheFlushAfterWalker
|
|
};
|
|
|
|
const HardwareInfo CNL_2x5x8::hwInfo = {
|
|
&CNL::platform,
|
|
&emptySkuTable,
|
|
&emptyWaTable,
|
|
&CNL_2x5x8::gtSystemInfo,
|
|
CNL::capabilityTable,
|
|
};
|
|
GT_SYSTEM_INFO CNL_2x5x8::gtSystemInfo = {0};
|
|
void CNL_2x5x8::setupHardwareInfo(GT_SYSTEM_INFO *gtSysInfo, FeatureTable *featureTable, bool setupFeatureTable) {
|
|
gtSysInfo->EUCount = 39;
|
|
gtSysInfo->ThreadCount = 39 * CNL::threadsPerEu;
|
|
gtSysInfo->SliceCount = 2;
|
|
gtSysInfo->SubSliceCount = 10;
|
|
gtSysInfo->L3CacheSizeInKb = 1536;
|
|
gtSysInfo->L3BankCount = 6;
|
|
gtSysInfo->MaxFillRate = 16;
|
|
gtSysInfo->TotalVsThreads = 336;
|
|
gtSysInfo->TotalHsThreads = 336;
|
|
gtSysInfo->TotalDsThreads = 336;
|
|
gtSysInfo->TotalGsThreads = 336;
|
|
gtSysInfo->TotalPsThreadsWindowerRange = 64;
|
|
gtSysInfo->CsrSizeInMb = 8;
|
|
gtSysInfo->MaxEuPerSubSlice = CNL::maxEuPerSubslice;
|
|
gtSysInfo->MaxSlicesSupported = CNL::maxSlicesSupported;
|
|
gtSysInfo->MaxSubSlicesSupported = CNL::maxSubslicesSupported;
|
|
gtSysInfo->IsL3HashModeEnabled = false;
|
|
gtSysInfo->IsDynamicallyPopulated = false;
|
|
};
|
|
const HardwareInfo CNL_2x4x8::hwInfo = {
|
|
&CNL::platform,
|
|
&emptySkuTable,
|
|
&emptyWaTable,
|
|
&CNL_2x4x8::gtSystemInfo,
|
|
CNL::capabilityTable,
|
|
};
|
|
GT_SYSTEM_INFO CNL_2x4x8::gtSystemInfo = {0};
|
|
void CNL_2x4x8::setupHardwareInfo(GT_SYSTEM_INFO *gtSysInfo, FeatureTable *featureTable, bool setupFeatureTable) {
|
|
gtSysInfo->EUCount = 31;
|
|
gtSysInfo->ThreadCount = 31 * CNL::threadsPerEu;
|
|
gtSysInfo->SliceCount = 2;
|
|
gtSysInfo->SubSliceCount = 8;
|
|
gtSysInfo->L3CacheSizeInKb = 1536;
|
|
gtSysInfo->L3BankCount = 6;
|
|
gtSysInfo->MaxFillRate = 16;
|
|
gtSysInfo->TotalVsThreads = 336;
|
|
gtSysInfo->TotalHsThreads = 336;
|
|
gtSysInfo->TotalDsThreads = 336;
|
|
gtSysInfo->TotalGsThreads = 336;
|
|
gtSysInfo->TotalPsThreadsWindowerRange = 64;
|
|
gtSysInfo->CsrSizeInMb = 8;
|
|
gtSysInfo->MaxEuPerSubSlice = CNL::maxEuPerSubslice;
|
|
gtSysInfo->MaxSlicesSupported = CNL::maxSlicesSupported;
|
|
gtSysInfo->MaxSubSlicesSupported = CNL::maxSubslicesSupported;
|
|
gtSysInfo->IsL3HashModeEnabled = false;
|
|
gtSysInfo->IsDynamicallyPopulated = false;
|
|
};
|
|
const HardwareInfo CNL_1x3x8::hwInfo = {
|
|
&CNL::platform,
|
|
&emptySkuTable,
|
|
&emptyWaTable,
|
|
&CNL_1x3x8::gtSystemInfo,
|
|
CNL::capabilityTable,
|
|
};
|
|
GT_SYSTEM_INFO CNL_1x3x8::gtSystemInfo = {0};
|
|
void CNL_1x3x8::setupHardwareInfo(GT_SYSTEM_INFO *gtSysInfo, FeatureTable *featureTable, bool setupFeatureTable) {
|
|
gtSysInfo->EUCount = 23;
|
|
gtSysInfo->ThreadCount = 23 * CNL::threadsPerEu;
|
|
gtSysInfo->SliceCount = 1;
|
|
gtSysInfo->SubSliceCount = 3;
|
|
gtSysInfo->L3CacheSizeInKb = 1536;
|
|
gtSysInfo->L3BankCount = 6;
|
|
gtSysInfo->MaxFillRate = 16;
|
|
gtSysInfo->TotalVsThreads = 336;
|
|
gtSysInfo->TotalHsThreads = 336;
|
|
gtSysInfo->TotalDsThreads = 336;
|
|
gtSysInfo->TotalGsThreads = 336;
|
|
gtSysInfo->TotalPsThreadsWindowerRange = 64;
|
|
gtSysInfo->CsrSizeInMb = 8;
|
|
gtSysInfo->MaxEuPerSubSlice = CNL::maxEuPerSubslice;
|
|
gtSysInfo->MaxSlicesSupported = CNL::maxSlicesSupported;
|
|
gtSysInfo->MaxSubSlicesSupported = CNL::maxSubslicesSupported;
|
|
gtSysInfo->IsL3HashModeEnabled = false;
|
|
gtSysInfo->IsDynamicallyPopulated = false;
|
|
};
|
|
const HardwareInfo CNL_1x2x8::hwInfo = {
|
|
&CNL::platform,
|
|
&emptySkuTable,
|
|
&emptyWaTable,
|
|
&CNL_1x2x8::gtSystemInfo,
|
|
CNL::capabilityTable,
|
|
};
|
|
GT_SYSTEM_INFO CNL_1x2x8::gtSystemInfo = {0};
|
|
void CNL_1x2x8::setupHardwareInfo(GT_SYSTEM_INFO *gtSysInfo, FeatureTable *featureTable, bool setupFeatureTable) {
|
|
gtSysInfo->EUCount = 15;
|
|
gtSysInfo->ThreadCount = 15 * CNL::threadsPerEu;
|
|
gtSysInfo->SliceCount = 1;
|
|
gtSysInfo->SubSliceCount = 2;
|
|
gtSysInfo->L3CacheSizeInKb = 1536;
|
|
gtSysInfo->L3BankCount = 6;
|
|
gtSysInfo->MaxFillRate = 16;
|
|
gtSysInfo->TotalVsThreads = 336;
|
|
gtSysInfo->TotalHsThreads = 336;
|
|
gtSysInfo->TotalDsThreads = 336;
|
|
gtSysInfo->TotalGsThreads = 336;
|
|
gtSysInfo->TotalPsThreadsWindowerRange = 64;
|
|
gtSysInfo->CsrSizeInMb = 8;
|
|
gtSysInfo->MaxEuPerSubSlice = CNL::maxEuPerSubslice;
|
|
gtSysInfo->MaxSlicesSupported = CNL::maxSlicesSupported;
|
|
gtSysInfo->MaxSubSlicesSupported = CNL::maxSubslicesSupported;
|
|
gtSysInfo->IsL3HashModeEnabled = false;
|
|
gtSysInfo->IsDynamicallyPopulated = false;
|
|
};
|
|
const HardwareInfo CNL_4x9x8::hwInfo = {
|
|
&CNL::platform,
|
|
&emptySkuTable,
|
|
&emptyWaTable,
|
|
&CNL_4x9x8::gtSystemInfo,
|
|
CNL::capabilityTable,
|
|
};
|
|
GT_SYSTEM_INFO CNL_4x9x8::gtSystemInfo = {0};
|
|
void CNL_4x9x8::setupHardwareInfo(GT_SYSTEM_INFO *gtSysInfo, FeatureTable *featureTable, bool setupFeatureTable) {
|
|
gtSysInfo->EUCount = 71;
|
|
gtSysInfo->ThreadCount = 71 * CNL::threadsPerEu;
|
|
gtSysInfo->SliceCount = 4;
|
|
gtSysInfo->SubSliceCount = 36;
|
|
gtSysInfo->L3CacheSizeInKb = 1536;
|
|
gtSysInfo->L3BankCount = 6;
|
|
gtSysInfo->MaxFillRate = 16;
|
|
gtSysInfo->TotalVsThreads = 336;
|
|
gtSysInfo->TotalHsThreads = 336;
|
|
gtSysInfo->TotalDsThreads = 336;
|
|
gtSysInfo->TotalGsThreads = 336;
|
|
gtSysInfo->TotalPsThreadsWindowerRange = 64;
|
|
gtSysInfo->CsrSizeInMb = 8;
|
|
gtSysInfo->MaxEuPerSubSlice = CNL::maxEuPerSubslice;
|
|
gtSysInfo->MaxSlicesSupported = CNL::maxSlicesSupported;
|
|
gtSysInfo->MaxSubSlicesSupported = CNL::maxSubslicesSupported;
|
|
gtSysInfo->IsL3HashModeEnabled = false;
|
|
gtSysInfo->IsDynamicallyPopulated = false;
|
|
};
|
|
const HardwareInfo CNL::hwInfo = CNL_2x5x8::hwInfo;
|
|
|
|
void setupCNLHardwareInfoImpl(GT_SYSTEM_INFO *gtSysInfo, FeatureTable *featureTable, bool setupFeatureTable, const std::string &hwInfoConfig) {
|
|
if (hwInfoConfig == "1x2x8") {
|
|
CNL_1x2x8::setupHardwareInfo(gtSysInfo, featureTable, setupFeatureTable);
|
|
} else if (hwInfoConfig == "1x3x8") {
|
|
CNL_1x3x8::setupHardwareInfo(gtSysInfo, featureTable, setupFeatureTable);
|
|
} else if (hwInfoConfig == "2x5x8") {
|
|
CNL_2x5x8::setupHardwareInfo(gtSysInfo, featureTable, setupFeatureTable);
|
|
} else if (hwInfoConfig == "2x4x8") {
|
|
CNL_2x4x8::setupHardwareInfo(gtSysInfo, featureTable, setupFeatureTable);
|
|
} else if (hwInfoConfig == "4x9x8") {
|
|
CNL_4x9x8::setupHardwareInfo(gtSysInfo, featureTable, setupFeatureTable);
|
|
} else if (hwInfoConfig == "default") {
|
|
// Default config
|
|
CNL_2x5x8::setupHardwareInfo(gtSysInfo, featureTable, setupFeatureTable);
|
|
} else {
|
|
UNRECOVERABLE_IF(true);
|
|
}
|
|
}
|
|
|
|
void (*CNL::setupHardwareInfo)(GT_SYSTEM_INFO *, FeatureTable *, bool, const std::string &) = setupCNLHardwareInfoImpl;
|
|
} // namespace OCLRT
|