mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 06:24:51 +08:00
19 lines
255 B
C++
19 lines
255 B
C++
/*
|
|
* Copyright (C) 2021-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
|
|
enum class LocalMemoryAccessMode {
|
|
defaultMode = 0,
|
|
cpuAccessAllowed = 1,
|
|
cpuAccessDisallowed = 3
|
|
};
|
|
|
|
} // namespace NEO
|