mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

- hw_info - hw_cmds - kmd_notify_properties - completion_stamp - bxml_generator_glue Related-To: NEO-3982 Change-Id: I3ed3ef81f42596f381e60c19250f6eb1296d47a4 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
74 lines
2.0 KiB
C++
74 lines
2.0 KiB
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "core/gen9/hw_cmds_base.h"
|
|
|
|
namespace NEO {
|
|
|
|
struct KBL : public SKLFamily {
|
|
static const PLATFORM platform;
|
|
static const HardwareInfo hwInfo;
|
|
static const std::string defaultHardwareInfoConfig;
|
|
static FeatureTable featureTable;
|
|
static WorkaroundTable workaroundTable;
|
|
static const uint32_t threadsPerEu = 7;
|
|
static const uint32_t maxEuPerSubslice = 8;
|
|
static const uint32_t maxSlicesSupported = 3;
|
|
static const uint32_t maxSubslicesSupported = 9;
|
|
|
|
static const RuntimeCapabilityTable capabilityTable;
|
|
static void (*setupHardwareInfo)(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable, const std::string &hwInfoConfig);
|
|
static void setupFeatureAndWorkaroundTable(HardwareInfo *hwInfo);
|
|
};
|
|
|
|
class KBL_1x2x6 : public KBL {
|
|
public:
|
|
static void setupHardwareInfo(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable);
|
|
static const HardwareInfo hwInfo;
|
|
|
|
private:
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
};
|
|
|
|
class KBL_1x3x6 : public KBL {
|
|
public:
|
|
static void setupHardwareInfo(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable);
|
|
static const HardwareInfo hwInfo;
|
|
|
|
private:
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
};
|
|
|
|
class KBL_1x3x8 : public KBL {
|
|
public:
|
|
static void setupHardwareInfo(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable);
|
|
static const HardwareInfo hwInfo;
|
|
|
|
private:
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
};
|
|
|
|
class KBL_2x3x8 : public KBL {
|
|
public:
|
|
static void setupHardwareInfo(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable);
|
|
static const HardwareInfo hwInfo;
|
|
|
|
private:
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
};
|
|
|
|
class KBL_3x3x8 : public KBL {
|
|
public:
|
|
static void setupHardwareInfo(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable);
|
|
static const HardwareInfo hwInfo;
|
|
|
|
private:
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
};
|
|
} // namespace NEO
|