mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-04 15:53:45 +08:00
17 lines
428 B
C++
17 lines
428 B
C++
/*
|
|
* Copyright (C) 2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/ail/ail_configuration.h"
|
|
|
|
namespace NEO {
|
|
|
|
template <>
|
|
inline bool AILConfigurationHw<gfxProduct>::isAdjustMicrosecondResolutionRequired() {
|
|
auto iterator = applicationsMicrosecontResolutionAdjustment.find(processName);
|
|
return iterator != applicationsMicrosecontResolutionAdjustment.end();
|
|
}
|
|
} // namespace NEO
|