mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
19 lines
246 B
C++
19 lines
246 B
C++
/*
|
|
* Copyright (C) 2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
|
|
enum class LocalMemoryAccessMode {
|
|
Default = 0,
|
|
CpuAccessAllowed = 1,
|
|
CpuAccessDisallowed = 3
|
|
};
|
|
|
|
} // namespace NEO
|