Files
compute-runtime/shared/source/sku_info/definitions/sku_info.h
Kamil Diedrich 79d4af28de Switch to c++17
Signed-off-by: Kamil Diedrich <kamil.diedrich@intel.com>
2020-12-03 15:15:32 +01:00

23 lines
373 B
C++

/*
* Copyright (C) 2018-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/sku_info/sku_info_base.h"
#include <bitset>
namespace NEO {
using BcsInfoMask = std::bitset<1>;
struct FeatureTable : FeatureTableBase {
BcsInfoMask ftrBcsInfo = 0;
};
struct WorkaroundTable : WorkaroundTableBase {};
} // namespace NEO