Files
compute-runtime/shared/source/gen8/reg_configs.h
Mateusz Jablonski 8424b27754 Rename core family names to meet naming convention
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2022-07-26 16:36:49 +02:00

25 lines
477 B
C++

/*
* Copyright (C) 2018-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/helpers/preamble.h"
namespace NEO {
struct Gen8Family;
template <>
struct L3CNTLREGConfig<IGFX_BROADWELL> {
static const uint32_t valueForSLM = 0x60000321u;
static const uint32_t valueForNoSLM = 0x80000340u;
};
template <>
struct L3CNTLRegisterOffset<Gen8Family> {
static const uint32_t registerOffset = 0x7034;
};
} // namespace NEO