/* * Copyright (C) 2018-2020 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "core/execution_environment/execution_environment.h" #include "core/compiler_interface/compiler_interface.h" #include "core/compiler_interface/default_cache_config.h" #include "core/debugger/debugger.h" #include "core/execution_environment/root_device_environment.h" #include "core/gmm_helper/gmm_helper.h" #include "core/helpers/hw_helper.h" #include "runtime/built_ins/built_ins.h" #include "runtime/memory_manager/os_agnostic_memory_manager.h" namespace NEO { ExecutionEnvironment::ExecutionEnvironment() { hwInfo = std::make_unique(); }; ExecutionEnvironment::~ExecutionEnvironment() { debugger.reset(); compilerInterface.reset(); builtins.reset(); rootDeviceEnvironments.clear(); } void ExecutionEnvironment::initGmm() { if (!gmmHelper) { gmmHelper.reset(new GmmHelper(rootDeviceEnvironments[0]->osInterface.get(), hwInfo.get())); } } void ExecutionEnvironment::setHwInfo(const HardwareInfo *hwInfo) { *this->hwInfo = *hwInfo; } void ExecutionEnvironment::initializeMemoryManager() { if (this->memoryManager) { return; } int32_t setCommandStreamReceiverType = CommandStreamReceiverType::CSR_HW; if (DebugManager.flags.SetCommandStreamReceiver.get() >= 0) { setCommandStreamReceiverType = DebugManager.flags.SetCommandStreamReceiver.get(); } switch (setCommandStreamReceiverType) { case CommandStreamReceiverType::CSR_TBX: case CommandStreamReceiverType::CSR_TBX_WITH_AUB: case CommandStreamReceiverType::CSR_AUB: memoryManager = std::make_unique(*this); break; case CommandStreamReceiverType::CSR_HW: case CommandStreamReceiverType::CSR_HW_WITH_AUB: default: memoryManager = MemoryManager::createMemoryManager(*this); break; } DEBUG_BREAK_IF(!this->memoryManager); } void ExecutionEnvironment::initDebugger() { debugger = Debugger::create(hwInfo.get()); } void ExecutionEnvironment::calculateMaxOsContextCount() { auto &hwHelper = HwHelper::get(this->hwInfo->platform.eRenderCoreFamily); auto osContextCount = hwHelper.getGpgpuEngineInstances().size(); auto subDevicesCount = HwHelper::getSubDevicesCount(this->getHardwareInfo()); auto rootDevicesCount = this->rootDeviceEnvironments.size(); bool hasRootCsr = subDevicesCount > 1; MemoryManager::maxOsContextCount = static_cast(rootDevicesCount * (osContextCount * subDevicesCount + hasRootCsr)); } GmmHelper *ExecutionEnvironment::getGmmHelper() const { return gmmHelper.get(); } GmmClientContext *ExecutionEnvironment::getGmmClientContext() const { return gmmHelper->getClientContext(); } CompilerInterface *ExecutionEnvironment::getCompilerInterface() { if (this->compilerInterface.get() == nullptr) { std::lock_guard autolock(this->mtx); if (this->compilerInterface.get() == nullptr) { auto cache = std::make_unique(getDefaultCompilerCacheConfig()); this->compilerInterface.reset(CompilerInterface::createInstance(std::move(cache), true)); } } return this->compilerInterface.get(); } BuiltIns *ExecutionEnvironment::getBuiltIns() { if (this->builtins.get() == nullptr) { std::lock_guard autolock(this->mtx); if (this->builtins.get() == nullptr) { this->builtins = std::make_unique(); } } return this->builtins.get(); } bool ExecutionEnvironment::isFullRangeSvm() const { return hwInfo->capabilityTable.gpuAddressSpace >= maxNBitValue(47); } void ExecutionEnvironment::prepareRootDeviceEnvironments(uint32_t numRootDevices) { if (rootDeviceEnvironments.size() < numRootDevices) { rootDeviceEnvironments.resize(numRootDevices); } for (auto rootDeviceIndex = 0u; rootDeviceIndex < numRootDevices; rootDeviceIndex++) { if (!rootDeviceEnvironments[rootDeviceIndex]) { rootDeviceEnvironments[rootDeviceIndex] = std::make_unique(*this); } } } } // namespace NEO