mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-04 15:53:45 +08:00
Add query system info implementation stub on Linux
Related-To: NEO-4998 Signed-off-by: Slawomir Milczarek <slawomir.milczarek@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
496bdd77ae
commit
e6a18aac73
35
shared/source/os_interface/linux/system_info_impl.h
Normal file
35
shared/source/os_interface/linux/system_info_impl.h
Normal file
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Copyright (C) 2020 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include "shared/source/os_interface/linux/system_info.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
struct SystemInfoImpl : public SystemInfo {
|
||||
~SystemInfoImpl() override = default;
|
||||
|
||||
SystemInfoImpl(const uint32_t *data, int32_t length) {
|
||||
}
|
||||
|
||||
uint32_t getMaxSlicesSupported() const override { return 0; }
|
||||
uint32_t getMaxDualSubSlicesSupported() const override { return 0; }
|
||||
uint32_t getMaxEuPerDualSubSlice() const override { return 0; }
|
||||
uint32_t getL3CacheSizeInKb() const override { return 0; }
|
||||
uint32_t getL3BankCount() const override { return 0; }
|
||||
uint32_t getNumThreadsPerEu() const override { return 0; }
|
||||
uint32_t getTotalVsThreads() const override { return 0; }
|
||||
uint32_t getTotalHsThreads() const override { return 0; }
|
||||
uint32_t getTotalDsThreads() const override { return 0; }
|
||||
uint32_t getTotalGsThreads() const override { return 0; }
|
||||
uint32_t getTotalPsThreads() const override { return 0; }
|
||||
uint32_t getMaxFillRate() const override { return 0; }
|
||||
uint32_t getMaxRCS() const override { return 0; }
|
||||
uint32_t getMaxCCS() const override { return 0; }
|
||||
};
|
||||
|
||||
} // namespace NEO
|
||||
Reference in New Issue
Block a user