/* * Copyright (C) 2022-2023 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "shared/source/helpers/sleep.h" namespace NEO { template void sleep(const T &sleepDuration) { // Do not sleep in ULTs } template void waitOnCondition(std::condition_variable &condition, std::unique_lock &lock, const T &duration) { // Do not wait in ULTs } template void sleep(const std::chrono::microseconds &); template void sleep(const std::chrono::milliseconds &); template void sleep(const std::chrono::seconds &); template void waitOnCondition(std::condition_variable &condition, std::unique_lock &lock, const std::chrono::milliseconds &duration); } // namespace NEO