mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 17:29:14 +08:00
- pass registry path in constructor Change-Id: I2a121da2c9483a0df088989feea490a638c63016 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
24 lines
708 B
C++
24 lines
708 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/helpers/device_helpers.h"
|
|
|
|
#include "core/debug_settings/debug_settings_manager.h"
|
|
#include "core/helpers/hw_info.h"
|
|
|
|
namespace NEO {
|
|
void DeviceHelper::getExtraDeviceInfo(const HardwareInfo &hwInfo, cl_device_info paramName, cl_uint ¶m, const void *&src, size_t &size, size_t &retSize) {}
|
|
|
|
uint32_t DeviceHelper::getSubDevicesCount(const HardwareInfo *pHwInfo) {
|
|
return DebugManager.flags.CreateMultipleSubDevices.get() > 0 ? DebugManager.flags.CreateMultipleSubDevices.get() : 1u;
|
|
}
|
|
|
|
uint32_t DeviceHelper::getEnginesCount(const HardwareInfo &hwInfo) {
|
|
return 1u;
|
|
}
|
|
} // namespace NEO
|