mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-31 12:11:31 +08:00
Limit bitset includes, stl bitset is slow to compile Related-To: NEO-15390 Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
17 lines
258 B
C++
17 lines
258 B
C++
/*
|
|
* Copyright (C) 2023-2025 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <bitset>
|
|
|
|
namespace NEO {
|
|
|
|
using DeviceBitfield = std::bitset<4>;
|
|
|
|
inline constexpr DeviceBitfield systemMemoryBitfield(0b0);
|
|
|
|
} // namespace NEO
|