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

New string debug variable HardwareInfoOverride is used to specify new Hardware Info Config to be selected, for example 1x4x8. Change-Id: I6d939608e6551e4a9102e5ab2e08255ee4982933
44 lines
1.2 KiB
C++
44 lines
1.2 KiB
C++
/*
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/gen9/hw_cmds_base.h"
|
|
|
|
namespace OCLRT {
|
|
|
|
struct GLK : 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 GLK_1x3x6 : public GLK {
|
|
public:
|
|
static void setupHardwareInfo(GT_SYSTEM_INFO *gtSysInfo, FeatureTable *featureTable, bool setupFeatureTable);
|
|
static const HardwareInfo hwInfo;
|
|
|
|
private:
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
};
|
|
|
|
class GLK_1x2x6 : public GLK {
|
|
public:
|
|
static void setupHardwareInfo(GT_SYSTEM_INFO *gtSysInfo, FeatureTable *featureTable, bool setupFeatureTable);
|
|
static const HardwareInfo hwInfo;
|
|
|
|
private:
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
};
|
|
} // namespace OCLRT
|