Files
compute-runtime/shared/source/helpers/device_bitfield.h
Kamil Kopryk f17ac35108 refactor: improve compilation time
Limit bitset includes,
stl bitset is slow to compile

Related-To: NEO-15390

Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
2025-10-03 21:21:25 +02:00

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