mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-07 21:27:04 +08:00
Reorganization directory structure [1/n]
Change-Id: Id1a94577437a4826a32411869f516fec20314ec0
This commit is contained in:
18
opencl/source/gen8/linux/command_stream_receiver_gen8.cpp
Normal file
18
opencl/source/gen8/linux/command_stream_receiver_gen8.cpp
Normal file
@@ -0,0 +1,18 @@
|
||||
/*
|
||||
* Copyright (C) 2017-2020 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "command_stream/command_stream_receiver_with_aub_dump.inl"
|
||||
#include "os_interface/linux/device_command_stream.inl"
|
||||
#include "os_interface/linux/drm_command_stream.inl"
|
||||
#include "os_interface/linux/drm_command_stream_bdw_plus.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
template class DeviceCommandStreamReceiver<BDWFamily>;
|
||||
template class DrmCommandStreamReceiver<BDWFamily>;
|
||||
template class CommandStreamReceiverWithAUBDump<DrmCommandStreamReceiver<BDWFamily>>;
|
||||
} // namespace NEO
|
||||
38
opencl/source/gen8/linux/hw_info_config_bdw.inl
Normal file
38
opencl/source/gen8/linux/hw_info_config_bdw.inl
Normal file
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Copyright (C) 2017-2020 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "core/helpers/hw_info.h"
|
||||
#include "core/os_interface/hw_info_config.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
template <>
|
||||
int HwInfoConfigHw<IGFX_BROADWELL>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
|
||||
if (nullptr == osIface) {
|
||||
return 0;
|
||||
}
|
||||
GT_SYSTEM_INFO *gtSystemInfo = &hwInfo->gtSystemInfo;
|
||||
|
||||
// There is no interface to read total slice count from drm/i915, so we
|
||||
// derive this from the number of EUs and subslices.
|
||||
// otherwise there is one slice.
|
||||
if (gtSystemInfo->SubSliceCount > 3) {
|
||||
gtSystemInfo->SliceCount = 2;
|
||||
} else {
|
||||
gtSystemInfo->SliceCount = 1;
|
||||
}
|
||||
|
||||
if (hwInfo->platform.usDeviceID == IBDW_GT3_HALO_MOBL_DEVICE_F0_ID ||
|
||||
hwInfo->platform.usDeviceID == IBDW_GT3_SERV_DEVICE_F0_ID) {
|
||||
gtSystemInfo->EdramSizeInKb = 128 * 1024;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
template class HwInfoConfigHw<IGFX_BROADWELL>;
|
||||
|
||||
} // namespace NEO
|
||||
13
opencl/source/gen8/linux/hw_info_config_gen8.cpp
Normal file
13
opencl/source/gen8/linux/hw_info_config_gen8.cpp
Normal file
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2020 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "core/os_interface/hw_info_config.inl"
|
||||
#include "core/os_interface/hw_info_config_bdw_plus.inl"
|
||||
|
||||
#ifdef SUPPORT_BDW
|
||||
#include "hw_info_config_bdw.inl"
|
||||
#endif
|
||||
Reference in New Issue
Block a user