mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
25 lines
477 B
C++
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
|