Files
compute-runtime/shared/source/dll/get_devices.cpp
Warchulski, Jaroslaw c3a86232d9 Cleanup includes 15
Cleaned up files:
shared/source/command_stream/command_stream_receiver.h
shared/source/command_stream/submissions_aggregator.h
shared/source/helpers/flat_batch_buffer_helper.h

Related-To: NEO-5548
Signed-off-by: Warchulski, Jaroslaw <jaroslaw.warchulski@intel.com>
2022-12-23 12:36:51 +01:00

63 lines
2.2 KiB
C++

/*
* Copyright (C) 2019-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/command_stream/create_command_stream_impl.h"
#include "shared/source/debug_settings/debug_settings_manager.h"
#include "shared/source/execution_environment/execution_environment.h"
#include "shared/source/execution_environment/root_device_environment.h"
#include "hw_cmds_default.h"
namespace NEO {
bool prepareDeviceEnvironments(ExecutionEnvironment &executionEnvironment, std::string &osPciPath, const uint32_t rootDeviceIndex) {
bool returnValue = false;
if (osPciPath.empty()) {
returnValue = prepareDeviceEnvironmentsImpl(executionEnvironment);
} else {
returnValue = prepareDeviceEnvironmentImpl(executionEnvironment, osPciPath, rootDeviceIndex);
}
if (DebugManager.flags.Force32BitDriverSupport.get() != -1) {
return returnValue;
}
if (returnValue) {
auto i = 0u;
while (i < executionEnvironment.rootDeviceEnvironments.size()) {
executionEnvironment.rootDeviceEnvironments[i]->initGmm();
bool unsupportedDeviceDetected = false;
auto &featureTable = executionEnvironment.rootDeviceEnvironments[i]->getHardwareInfo()->featureTable;
if (!featureTable.flags.ftrRcsNode && !featureTable.flags.ftrCCSNode) {
unsupportedDeviceDetected = true;
}
if (unsupportedDeviceDetected) {
executionEnvironment.rootDeviceEnvironments.erase(executionEnvironment.rootDeviceEnvironments.begin() + i);
} else {
i++;
}
}
}
return returnValue && executionEnvironment.rootDeviceEnvironments.size() > 0;
}
bool prepareDeviceEnvironments(ExecutionEnvironment &executionEnvironment) {
std::string path = "";
return prepareDeviceEnvironments(executionEnvironment, path, 0u);
}
bool prepareDeviceEnvironment(ExecutionEnvironment &executionEnvironment, std::string &osPciPath, const uint32_t rootDeviceIndex) {
return prepareDeviceEnvironments(executionEnvironment, osPciPath, rootDeviceIndex);
}
const HardwareInfo *getDefaultHwInfo() {
return &DEFAULT_PLATFORM::hwInfo;
}
} // namespace NEO