feature: Support for metrics group exp extension

Support zet_metric_global_timestamps_resolution_exp_t

Resolves: LOCI-4350

Signed-off-by: Matias Cabral <matias.a.cabral@intel.com>
This commit is contained in:
Matias Cabral
2023-04-25 17:31:35 +00:00
committed by Compute-Runtime-Automation
parent f329fa5f87
commit cfa187aec6
47 changed files with 796 additions and 178 deletions

View File

@@ -101,6 +101,10 @@ int DrmMock::ioctl(DrmIoctl request, void *arg) {
*gp->value = this->storedCsTimestampFrequency;
return this->storedRetVal;
}
if (gp->param == I915_PARAM_OA_TIMESTAMP_FREQUENCY) {
*gp->value = this->storedOaTimestampFrequency;
return this->storedRetVal;
}
}
if ((request == DrmIoctl::GemContextCreateExt) && (arg != nullptr)) {