mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
14 lines
195 B
C++
14 lines
195 B
C++
/*
|
|
* Copyright (C) 2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include <thread>
|
|
|
|
namespace NEO {
|
|
template <class T>
|
|
void sleep(const T &sleepDuration);
|
|
} // namespace NEO
|