15 lines
193 B
C
15 lines
193 B
C
![]() |
/*
|
||
|
* Copyright (C) 2023 Intel Corporation
|
||
|
*
|
||
|
* SPDX-License-Identifier: MIT
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
#include <bitset>
|
||
|
|
||
|
namespace NEO {
|
||
|
|
||
|
using DeviceBitfield = std::bitset<4>;
|
||
|
|
||
|
} // namespace NEO
|