Remove unused members and getters in system info

Related-To: NEO-6835

Signed-off-by: Slawomir Milczarek <slawomir.milczarek@intel.com>
This commit is contained in:
Slawomir Milczarek
2022-04-12 08:42:58 +00:00
committed by Compute-Runtime-Automation
parent 789587bacc
commit 858766c080
3 changed files with 0 additions and 12 deletions

View File

@@ -954,10 +954,7 @@ bool Drm::useVMBindImmediate() const {
void Drm::setupSystemInfo(HardwareInfo *hwInfo, SystemInfo *sysInfo) {
GT_SYSTEM_INFO *gtSysInfo = &hwInfo->gtSystemInfo;
gtSysInfo->ThreadCount = gtSysInfo->EUCount * sysInfo->getNumThreadsPerEu();
gtSysInfo->L3CacheSizeInKb = sysInfo->getL3CacheSizeInKb();
gtSysInfo->L3BankCount = sysInfo->getL3BankCount();
gtSysInfo->MemoryType = sysInfo->getMemoryType();
gtSysInfo->MaxFillRate = sysInfo->getMaxFillRate();
gtSysInfo->TotalVsThreads = sysInfo->getTotalVsThreads();
gtSysInfo->TotalHsThreads = sysInfo->getTotalHsThreads();
gtSysInfo->TotalDsThreads = sysInfo->getTotalDsThreads();

View File

@@ -21,8 +21,6 @@ struct SystemInfo {
uint32_t getMaxSlicesSupported() const { return maxSlicesSupported; }
uint32_t getMaxDualSubSlicesSupported() const { return maxDualSubSlicesSupported; }
uint32_t getMaxEuPerDualSubSlice() const { return maxEuPerDualSubSlice; }
uint64_t getL3CacheSizeInKb() const { return L3CacheSizeInKb; }
uint32_t getL3BankCount() const { return L3BankCount; }
uint32_t getMemoryType() const { return memoryType; }
uint32_t getMaxMemoryChannels() const { return maxMemoryChannels; }
uint32_t getNumThreadsPerEu() const { return numThreadsPerEu; }
@@ -31,7 +29,6 @@ struct SystemInfo {
uint32_t getTotalDsThreads() const { return totalDsThreads; }
uint32_t getTotalGsThreads() const { return totalGsThreads; }
uint32_t getTotalPsThreads() const { return totalPsThreads; }
uint32_t getMaxFillRate() const { return maxFillRate; }
uint32_t getMaxRCS() const { return maxRCS; }
uint32_t getMaxCCS() const { return maxCCS; }
@@ -43,8 +40,6 @@ struct SystemInfo {
uint32_t maxSlicesSupported = 0;
uint32_t maxDualSubSlicesSupported = 0;
uint32_t maxEuPerDualSubSlice = 0;
uint64_t L3CacheSizeInKb = 0;
uint32_t L3BankCount = 0;
uint32_t memoryType = 0;
uint32_t maxMemoryChannels = 0;
uint32_t numThreadsPerEu = 0;
@@ -53,7 +48,6 @@ struct SystemInfo {
uint32_t totalDsThreads = 0;
uint32_t totalGsThreads = 0;
uint32_t totalPsThreads = 0;
uint32_t maxFillRate = 0;
uint32_t maxRCS = 0;
uint32_t maxCCS = 0;
};