2018-06-21 12:06:32 +02:00
|
|
|
/*
|
2018-09-18 09:11:08 +02:00
|
|
|
* Copyright (C) 2018 Intel Corporation
|
2018-06-21 12:06:32 +02:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-06-21 12:06:32 +02:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
#include "runtime/gen8/hw_cmds_base.h"
|
2018-10-04 12:44:49 +02:00
|
|
|
#include <string>
|
2018-06-21 12:06:32 +02:00
|
|
|
|
|
|
|
|
namespace OCLRT {
|
|
|
|
|
|
|
|
|
|
struct BDW : public BDWFamily {
|
|
|
|
|
static const PLATFORM platform;
|
|
|
|
|
static const HardwareInfo hwInfo;
|
|
|
|
|
static const uint32_t threadsPerEu = 7;
|
|
|
|
|
static const uint32_t maxEuPerSubslice = 8;
|
|
|
|
|
static const uint32_t maxSlicesSupported = 2;
|
|
|
|
|
static const uint32_t maxSubslicesSupported = 6;
|
|
|
|
|
static const RuntimeCapabilityTable capabilityTable;
|
2018-10-04 12:44:49 +02:00
|
|
|
static void (*setupHardwareInfo)(GT_SYSTEM_INFO *gtSysInfo, FeatureTable *featureTable, bool setupFeatureTable, const std::string &hwInfoConfig);
|
2018-06-21 12:06:32 +02:00
|
|
|
};
|
|
|
|
|
class BDW_1x2x6 : public BDW {
|
|
|
|
|
public:
|
2018-08-27 12:11:07 +02:00
|
|
|
static void setupHardwareInfo(GT_SYSTEM_INFO *gtSysInfo, FeatureTable *featureTable, bool setupFeatureTable);
|
2018-06-21 12:06:32 +02:00
|
|
|
static const HardwareInfo hwInfo;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
|
|
|
};
|
|
|
|
|
class BDW_1x3x6 : public BDW {
|
|
|
|
|
public:
|
2018-08-27 12:11:07 +02:00
|
|
|
static void setupHardwareInfo(GT_SYSTEM_INFO *gtSysInfo, FeatureTable *featureTable, bool setupFeatureTable);
|
2018-06-21 12:06:32 +02:00
|
|
|
static const HardwareInfo hwInfo;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
|
|
|
};
|
|
|
|
|
class BDW_1x3x8 : public BDW {
|
|
|
|
|
public:
|
2018-08-27 12:11:07 +02:00
|
|
|
static void setupHardwareInfo(GT_SYSTEM_INFO *gtSysInfo, FeatureTable *featureTable, bool setupFeatureTable);
|
2018-06-21 12:06:32 +02:00
|
|
|
static const HardwareInfo hwInfo;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
|
|
|
};
|
|
|
|
|
class BDW_2x3x8 : public BDW {
|
|
|
|
|
public:
|
2018-08-27 12:11:07 +02:00
|
|
|
static void setupHardwareInfo(GT_SYSTEM_INFO *gtSysInfo, FeatureTable *featureTable, bool setupFeatureTable);
|
2018-06-21 12:06:32 +02:00
|
|
|
static const HardwareInfo hwInfo;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
|
|
|
};
|
|
|
|
|
} // namespace OCLRT
|