2018-09-21 20:06:35 +08:00
|
|
|
/*
|
2023-11-30 18:36:43 +08:00
|
|
|
* Copyright (C) 2019-2023 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 {
|
2023-11-30 18:36:43 +08:00
|
|
|
inline constexpr uint32_t defaultGrfNumber = 128u;
|
|
|
|
inline constexpr uint32_t largeGrfNumber = 256u;
|
|
|
|
inline constexpr uint32_t notApplicable = 0u;
|
2020-08-21 19:05:01 +08:00
|
|
|
} // namespace GrfConfig
|