mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 01:48:50 +08:00
Change-Id: I37388b3d43251d930136fde154b7861072a5abec Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
16 lines
255 B
C++
16 lines
255 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace GrfConfig {
|
|
constexpr uint32_t DefaultGrfNumber = 128u;
|
|
constexpr uint32_t NotApplicable = 0u;
|
|
} // namespace GrfConfig
|