41 lines
1007 B
C++
41 lines
1007 B
C++
/*
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/utilities/reference_tracked_object.h"
|
|
|
|
#include <vector>
|
|
|
|
namespace NEO {
|
|
class MemoryManager;
|
|
struct OsEnvironment;
|
|
struct RootDeviceEnvironment;
|
|
|
|
class ExecutionEnvironment : public ReferenceTrackedObject<ExecutionEnvironment> {
|
|
|
|
public:
|
|
ExecutionEnvironment();
|
|
~ExecutionEnvironment() override;
|
|
|
|
MOCKABLE_VIRTUAL bool initializeMemoryManager();
|
|
void calculateMaxOsContextCount();
|
|
void prepareRootDeviceEnvironments(uint32_t numRootDevices);
|
|
void parseAffinityMask();
|
|
void setDebuggingEnabled() {
|
|
debuggingEnabled = true;
|
|
}
|
|
bool isDebuggingEnabled() { return debuggingEnabled; }
|
|
|
|
std::unique_ptr<MemoryManager> memoryManager;
|
|
std::unique_ptr<OsEnvironment> osEnvironment;
|
|
std::vector<std::unique_ptr<RootDeviceEnvironment>> rootDeviceEnvironments;
|
|
|
|
protected:
|
|
bool debuggingEnabled = false;
|
|
};
|
|
} // namespace NEO
|