2019-08-07 12:58:28 +08:00
|
|
|
/*
|
2022-04-01 19:47:24 +08:00
|
|
|
* Copyright (C) 2020-2022 Intel Corporation
|
2019-08-07 12:58:28 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
namespace CpuIntrinsics {
|
|
|
|
|
2022-04-01 19:47:24 +08:00
|
|
|
void sfence();
|
|
|
|
|
2019-08-07 12:58:28 +08:00
|
|
|
void clFlush(void const *ptr);
|
|
|
|
|
2020-01-14 20:52:06 +08:00
|
|
|
void pause();
|
|
|
|
|
2019-08-07 12:58:28 +08:00
|
|
|
} // namespace CpuIntrinsics
|
|
|
|
} // namespace NEO
|