2018-09-21 20:06:35 +08:00
|
|
|
/*
|
2021-05-17 02:51:16 +08:00
|
|
|
* Copyright (C) 2019-2021 Intel Corporation
|
2018-09-21 20:06:35 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-09-28 19:19:27 +08:00
|
|
|
#include <cstdint>
|
|
|
|
|
2018-09-21 20:06:35 +08:00
|
|
|
namespace GrfConfig {
|
|
|
|
constexpr uint32_t DefaultGrfNumber = 128u;
|
2021-04-24 00:43:48 +08:00
|
|
|
constexpr uint32_t LargeGrfNumber = 256u;
|
2020-08-21 19:05:01 +08:00
|
|
|
constexpr uint32_t NotApplicable = 0u;
|
|
|
|
} // namespace GrfConfig
|