fix: remove defaultProfilingTimerResolution from RuntimeCapabilityTable

Related-To: NEO-12275
Signed-off-by: Marcel Skierkowski <marcel.skierkowski@intel.com>
This commit is contained in:
Marcel Skierkowski
2024-11-04 10:14:17 +00:00
committed by Compute-Runtime-Automation
parent f8f1557ec7
commit 49d999abe6
40 changed files with 101 additions and 140 deletions

View File

@@ -73,11 +73,11 @@ struct MockTagNode : public TagNode<TagType> {
};
class MyOSDeviceTime : public DeviceTime {
double getDynamicDeviceTimerResolution(HardwareInfo const &hwInfo) const override {
double getDynamicDeviceTimerResolution() const override {
EXPECT_FALSE(true);
return 1.0;
}
uint64_t getDynamicDeviceTimerClock(HardwareInfo const &hwInfo) const override {
uint64_t getDynamicDeviceTimerClock() const override {
EXPECT_FALSE(true);
return 0;
}