mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 09:14:47 +08:00
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
|