mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
Change-Id: If965c79d70392db26597aea4c2f3b7ae2820fe96 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
44 lines
1.2 KiB
C++
44 lines
1.2 KiB
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/gen9/hw_cmds_base.h"
|
|
|
|
namespace NEO {
|
|
|
|
struct BXT : public SKLFamily {
|
|
static const PLATFORM platform;
|
|
static const HardwareInfo hwInfo;
|
|
|
|
static const uint32_t threadsPerEu = 6;
|
|
static const uint32_t maxEuPerSubslice = 6;
|
|
static const uint32_t maxSlicesSupported = 1;
|
|
static const uint32_t maxSubslicesSupported = 3;
|
|
|
|
static const RuntimeCapabilityTable capabilityTable;
|
|
static void (*setupHardwareInfo)(GT_SYSTEM_INFO *gtSysInfo, FeatureTable *featureTable, bool setupFeatureTable, const std::string &hwInfoConfig);
|
|
};
|
|
|
|
class BXT_1x2x6 : public BXT {
|
|
public:
|
|
static void setupHardwareInfo(GT_SYSTEM_INFO *gtSysInfo, FeatureTable *featureTable, bool setupFeatureTable);
|
|
static const HardwareInfo hwInfo;
|
|
|
|
private:
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
};
|
|
|
|
class BXT_1x3x6 : public BXT {
|
|
public:
|
|
static void setupHardwareInfo(GT_SYSTEM_INFO *gtSysInfo, FeatureTable *featureTable, bool setupFeatureTable);
|
|
static const HardwareInfo hwInfo;
|
|
|
|
private:
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
};
|
|
} // namespace NEO
|