/* * Copyright (C) 2023 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include "igfxfmid.h" namespace NEO { template struct HwMapper {}; // Utility conversion template struct ToGfxCoreFamily { static const GFXCORE_FAMILY gfxCoreFamily = static_cast(NEO::HwMapper::gfxFamily); static constexpr GFXCORE_FAMILY get() { return gfxCoreFamily; } }; template struct GfxFamilyMapper {}; } // namespace NEO