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