/* * Copyright (C) 2022 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include namespace NEO { template void sleep(const T &sleepDuration) { // Do not sleep in ULTs } template void sleep(const std::chrono::microseconds &); template void sleep(const std::chrono::milliseconds &); template void sleep(const std::chrono::seconds &); } // namespace NEO