mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Cleaned up files: shared/source/helpers/hw_info.h Related-To: NEO-5548 Signed-off-by: Warchulski, Jaroslaw <jaroslaw.warchulski@intel.com>
21 lines
325 B
C++
21 lines
325 B
C++
/*
|
|
* Copyright (C) 2019-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/helpers/hw_mapper.h"
|
|
|
|
namespace NEO {
|
|
|
|
struct Gen8Family;
|
|
|
|
template <>
|
|
struct GfxFamilyMapper<IGFX_GEN8_CORE> {
|
|
typedef Gen8Family GfxFamily;
|
|
static const char *name;
|
|
};
|
|
} // namespace NEO
|