216 lines
8.5 KiB
C++
216 lines
8.5 KiB
C++
/*
|
|
* Copyright (C) 2018-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "shared/source/command_stream/command_stream_receiver.h"
|
|
#include "shared/source/device/root_device.h"
|
|
#include "shared/source/device/sub_device.h"
|
|
#include "shared/source/execution_environment/execution_environment.h"
|
|
#include "shared/source/execution_environment/root_device_environment.h"
|
|
#include "shared/test/common/helpers/default_hw_info.h"
|
|
#include "shared/test/common/helpers/variable_backup.h"
|
|
|
|
namespace NEO {
|
|
class CommandStreamReceiver;
|
|
class DriverInfo;
|
|
|
|
template <typename GfxFamily>
|
|
class UltCommandStreamReceiver;
|
|
|
|
extern CommandStreamReceiver *createCommandStream(ExecutionEnvironment &executionEnvironment,
|
|
uint32_t rootDeviceIndex,
|
|
const DeviceBitfield deviceBitfield);
|
|
|
|
struct MockSubDevice : public SubDevice {
|
|
using Device::allEngines;
|
|
using Device::createEngines;
|
|
using Device::engineInstancedType;
|
|
using SubDevice::engineInstanced;
|
|
using SubDevice::getDeviceBitfield;
|
|
using SubDevice::getGlobalMemorySize;
|
|
using SubDevice::SubDevice;
|
|
|
|
std::unique_ptr<CommandStreamReceiver> createCommandStreamReceiver() const override {
|
|
return std::unique_ptr<CommandStreamReceiver>(createCommandStreamReceiverFunc(*executionEnvironment, getRootDeviceIndex(), getDeviceBitfield()));
|
|
}
|
|
static decltype(&createCommandStream) createCommandStreamReceiverFunc;
|
|
|
|
bool failOnCreateEngine = false;
|
|
bool createEngine(uint32_t deviceCsrIndex, EngineTypeUsage engineTypeUsage) override;
|
|
};
|
|
|
|
class MockDevice : public RootDevice {
|
|
public:
|
|
using Device::addEngineToEngineGroup;
|
|
using Device::allEngines;
|
|
using Device::commandStreamReceivers;
|
|
using Device::createDeviceInternals;
|
|
using Device::createEngine;
|
|
using Device::createSubDevices;
|
|
using Device::defaultBcsEngineIndex;
|
|
using Device::deviceBitfield;
|
|
using Device::deviceInfo;
|
|
using Device::engineInstanced;
|
|
using Device::engineInstancedType;
|
|
using Device::executionEnvironment;
|
|
using Device::generateUuidFromPciBusInfo;
|
|
using Device::getGlobalMemorySize;
|
|
using Device::initializeCaps;
|
|
using Device::isDebuggerActive;
|
|
using Device::regularContextPerBcsEngineAssignmentHelper;
|
|
using Device::regularContextPerCcsEngineAssignmentHelper;
|
|
using Device::regularEngineGroups;
|
|
using Device::rootCsrCreated;
|
|
using Device::rtMemoryBackedBuffer;
|
|
using Device::uuid;
|
|
using RootDevice::createEngines;
|
|
using RootDevice::defaultEngineIndex;
|
|
using RootDevice::getDeviceBitfield;
|
|
using RootDevice::initializeRootCommandStreamReceiver;
|
|
using RootDevice::numSubDevices;
|
|
using RootDevice::subdevices;
|
|
|
|
void setOSTime(OSTime *osTime);
|
|
|
|
static bool createSingleDevice;
|
|
bool createDeviceImpl() override;
|
|
|
|
bool getCpuTime(uint64_t *timeStamp) { return true; };
|
|
MockDevice();
|
|
MockDevice(ExecutionEnvironment *executionEnvironment, uint32_t rootDeviceIndex);
|
|
|
|
void setPreemptionMode(PreemptionMode mode) {
|
|
preemptionMode = mode;
|
|
}
|
|
|
|
void injectMemoryManager(MemoryManager *);
|
|
|
|
void setPerfCounters(std::unique_ptr<PerformanceCounters> perfCounters) {
|
|
performanceCounters = std::move(perfCounters);
|
|
}
|
|
|
|
size_t getMaxParameterSizeFromIGC() const override {
|
|
if (callBaseGetMaxParameterSizeFromIGC) {
|
|
return Device::getMaxParameterSizeFromIGC();
|
|
}
|
|
return maxParameterSizeFromIGC;
|
|
}
|
|
|
|
const char *getProductAbbrev() const;
|
|
|
|
template <typename T>
|
|
UltCommandStreamReceiver<T> &getUltCommandStreamReceiver() {
|
|
return reinterpret_cast<UltCommandStreamReceiver<T> &>(*allEngines[defaultEngineIndex].commandStreamReceiver);
|
|
}
|
|
|
|
template <typename T>
|
|
UltCommandStreamReceiver<T> &getUltCommandStreamReceiverFromIndex(uint32_t index) {
|
|
return reinterpret_cast<UltCommandStreamReceiver<T> &>(*allEngines[index].commandStreamReceiver);
|
|
}
|
|
CommandStreamReceiver &getGpgpuCommandStreamReceiver() const { return *allEngines[defaultEngineIndex].commandStreamReceiver; }
|
|
void resetCommandStreamReceiver(CommandStreamReceiver *newCsr);
|
|
void resetCommandStreamReceiver(CommandStreamReceiver *newCsr, uint32_t engineIndex);
|
|
|
|
void setDebuggerActive(bool active) {
|
|
this->deviceInfo.debuggerActive = active;
|
|
}
|
|
|
|
template <typename T>
|
|
static T *createWithExecutionEnvironment(const HardwareInfo *pHwInfo, ExecutionEnvironment *executionEnvironment, uint32_t rootDeviceIndex) {
|
|
pHwInfo = pHwInfo ? pHwInfo : defaultHwInfo.get();
|
|
executionEnvironment->rootDeviceEnvironments[rootDeviceIndex]->setHwInfoAndInitHelpers(pHwInfo);
|
|
T *device = new T(executionEnvironment, rootDeviceIndex);
|
|
return createDeviceInternals(device);
|
|
}
|
|
|
|
static ExecutionEnvironment *prepareExecutionEnvironment(const HardwareInfo *pHwInfo, uint32_t rootDeviceIndex);
|
|
|
|
template <typename T>
|
|
static T *createWithNewExecutionEnvironment(const HardwareInfo *pHwInfo, uint32_t rootDeviceIndex = 0) {
|
|
auto executionEnvironment = prepareExecutionEnvironment(pHwInfo, rootDeviceIndex);
|
|
return createWithExecutionEnvironment<T>(pHwInfo, executionEnvironment, rootDeviceIndex);
|
|
}
|
|
|
|
SubDevice *createSubDevice(uint32_t subDeviceIndex) override {
|
|
return Device::create<MockSubDevice>(executionEnvironment, subDeviceIndex, *this);
|
|
}
|
|
|
|
SubDevice *createEngineInstancedSubDevice(uint32_t subDeviceIndex, aub_stream::EngineType engineType) override {
|
|
return Device::create<MockSubDevice>(executionEnvironment, subDeviceIndex, *this, engineType);
|
|
}
|
|
|
|
std::unique_ptr<CommandStreamReceiver> createCommandStreamReceiver() const override {
|
|
return std::unique_ptr<CommandStreamReceiver>(createCommandStreamReceiverFunc(*executionEnvironment, getRootDeviceIndex(), getDeviceBitfield()));
|
|
}
|
|
|
|
bool isDebuggerActive() const override {
|
|
if (isDebuggerActiveParentCall) {
|
|
return Device::isDebuggerActive();
|
|
}
|
|
return isDebuggerActiveReturn;
|
|
}
|
|
|
|
bool verifyAdapterLuid() override;
|
|
|
|
void finalizeRayTracing();
|
|
|
|
void setRTDispatchGlobalsForceAllocation() {
|
|
rtDispatchGlobalsForceAllocation = true;
|
|
}
|
|
static ExecutionEnvironment *prepareExecutionEnvironment(const HardwareInfo *pHwInfo);
|
|
static decltype(&createCommandStream) createCommandStreamReceiverFunc;
|
|
|
|
bool isDebuggerActiveParentCall = true;
|
|
bool isDebuggerActiveReturn = false;
|
|
bool callBaseGetMaxParameterSizeFromIGC = false;
|
|
bool callBaseVerifyAdapterLuid = true;
|
|
bool verifyAdapterLuidReturnValue = true;
|
|
size_t maxParameterSizeFromIGC = 0u;
|
|
bool rtDispatchGlobalsForceAllocation = true;
|
|
};
|
|
|
|
template <>
|
|
inline Device *MockDevice::createWithNewExecutionEnvironment<Device>(const HardwareInfo *pHwInfo, uint32_t rootDeviceIndex) {
|
|
auto executionEnvironment = MockDevice::prepareExecutionEnvironment(pHwInfo);
|
|
return Device::create<RootDevice>(executionEnvironment, 0u);
|
|
}
|
|
|
|
class FailDevice : public MockDevice {
|
|
public:
|
|
FailDevice(ExecutionEnvironment *executionEnvironment, uint32_t deviceIndex);
|
|
};
|
|
|
|
class FailDeviceAfterOne : public MockDevice {
|
|
public:
|
|
FailDeviceAfterOne(ExecutionEnvironment *executionEnvironment, uint32_t deviceIndex);
|
|
};
|
|
|
|
class MockAlignedMallocManagerDevice : public MockDevice {
|
|
public:
|
|
MockAlignedMallocManagerDevice(ExecutionEnvironment *executionEnvironment, uint32_t deviceIndex);
|
|
};
|
|
|
|
struct EnvironmentWithCsrWrapper {
|
|
template <typename CsrType>
|
|
void setCsrType() {
|
|
createSubDeviceCsrFuncBackup = EnvironmentWithCsrWrapper::createCommandStreamReceiver<CsrType>;
|
|
createRootDeviceCsrFuncBackup = EnvironmentWithCsrWrapper::createCommandStreamReceiver<CsrType>;
|
|
}
|
|
|
|
template <typename CsrType>
|
|
static CommandStreamReceiver *createCommandStreamReceiver(ExecutionEnvironment &executionEnvironment,
|
|
uint32_t rootDeviceIndex,
|
|
const DeviceBitfield deviceBitfield) {
|
|
return new CsrType(executionEnvironment, rootDeviceIndex, deviceBitfield);
|
|
}
|
|
|
|
VariableBackup<decltype(MockSubDevice::createCommandStreamReceiverFunc)> createSubDeviceCsrFuncBackup{&MockSubDevice::createCommandStreamReceiverFunc};
|
|
VariableBackup<decltype(MockDevice::createCommandStreamReceiverFunc)> createRootDeviceCsrFuncBackup{&MockDevice::createCommandStreamReceiverFunc};
|
|
};
|
|
} // namespace NEO
|