mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
fix: prepare L3 cache size getter
Signed-off-by: Naklicki, Mateusz <mateusz.naklicki@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
1319ab4efc
commit
adae21b103
@@ -54,6 +54,7 @@ class ReleaseHelper {
|
||||
virtual const ThreadsPerEUConfigs getThreadsPerEUConfigs() const = 0;
|
||||
virtual const std::string getDeviceConfigString(uint32_t tileCount, uint32_t sliceCount, uint32_t subSliceCount, uint32_t euPerSubSliceCount) const = 0;
|
||||
virtual bool isRayTracingSupported() const = 0;
|
||||
virtual uint64_t getL3CacheSizeInKb() const = 0;
|
||||
|
||||
protected:
|
||||
ReleaseHelper(HardwareIpVersion hardwareIpVersion) : hardwareIpVersion(hardwareIpVersion) {}
|
||||
@@ -90,6 +91,7 @@ class ReleaseHelperHw : public ReleaseHelper {
|
||||
const StackVec<uint32_t, 6> getThreadsPerEUConfigs() const override;
|
||||
const std::string getDeviceConfigString(uint32_t tileCount, uint32_t sliceCount, uint32_t subSliceCount, uint32_t euPerSubSliceCount) const override;
|
||||
bool isRayTracingSupported() const override;
|
||||
uint64_t getL3CacheSizeInKb() const override;
|
||||
|
||||
protected:
|
||||
ReleaseHelperHw(HardwareIpVersion hardwareIpVersion) : ReleaseHelper(hardwareIpVersion) {}
|
||||
|
||||
Reference in New Issue
Block a user