compute-runtime/shared/source/sku_info/definitions/sku_info.h

23 lines
373 B
C
Raw Normal View History

/*
* Copyright (C) 2019-2021 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