mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 09:14:47 +08:00
Rename Metric Context and move OA specific functions and members from Metric Context to OA specific class(MetricSource). This refactoring is done so that additional Metric Source like Stall Sampling could be Seamlessly implemented. Related-To: LOCI-2753 Signed-off-by: Joshua Santosh Ranjan <joshua.santosh.ranjan@intel.com>
156 lines
7.4 KiB
C++
156 lines
7.4 KiB
C++
/*
|
|
* Copyright (C) 2020-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "shared/source/command_stream/preemption_mode.h"
|
|
#include "shared/source/device/device.h"
|
|
#include "shared/source/helpers/hw_helper.h"
|
|
#include "shared/source/helpers/hw_info.h"
|
|
#include "shared/source/os_interface/os_interface.h"
|
|
|
|
#include "level_zero/core/source/debugger/debugger_l0.h"
|
|
#include "level_zero/core/source/driver/driver.h"
|
|
#include "level_zero/core/source/driver/driver_handle.h"
|
|
#include "level_zero/core/source/module/module.h"
|
|
#include <level_zero/ze_api.h>
|
|
#include <level_zero/zet_api.h>
|
|
|
|
#include "CL/cl.h"
|
|
|
|
static_assert(NEO::HwInfoConfig::uuidSize == ZE_MAX_DEVICE_UUID_SIZE);
|
|
|
|
struct _ze_device_handle_t {};
|
|
namespace NEO {
|
|
class Device;
|
|
class MemoryManager;
|
|
class SourceLevelDebugger;
|
|
struct DeviceInfo;
|
|
} // namespace NEO
|
|
|
|
namespace L0 {
|
|
struct DriverHandle;
|
|
struct BuiltinFunctionsLib;
|
|
struct ExecutionEnvironment;
|
|
class MetricDeviceContext;
|
|
struct SysmanDevice;
|
|
struct DebugSession;
|
|
|
|
enum class ModuleType;
|
|
|
|
struct Device : _ze_device_handle_t {
|
|
uint32_t getRootDeviceIndex() const {
|
|
return neoDevice->getRootDeviceIndex();
|
|
}
|
|
NEO::Device *getNEODevice() const {
|
|
return this->neoDevice;
|
|
}
|
|
|
|
virtual ze_result_t canAccessPeer(ze_device_handle_t hPeerDevice, ze_bool_t *value) = 0;
|
|
virtual ze_result_t createCommandList(const ze_command_list_desc_t *desc,
|
|
ze_command_list_handle_t *commandList) = 0;
|
|
|
|
virtual ze_result_t createCommandListImmediate(const ze_command_queue_desc_t *desc,
|
|
ze_command_list_handle_t *commandList) = 0;
|
|
|
|
virtual ze_result_t createCommandQueue(const ze_command_queue_desc_t *desc,
|
|
ze_command_queue_handle_t *commandQueue) = 0;
|
|
|
|
virtual ze_result_t createImage(const ze_image_desc_t *desc, ze_image_handle_t *phImage) = 0;
|
|
|
|
virtual ze_result_t createModule(const ze_module_desc_t *desc, ze_module_handle_t *module,
|
|
ze_module_build_log_handle_t *buildLog, ModuleType type) = 0;
|
|
virtual ze_result_t createSampler(const ze_sampler_desc_t *pDesc,
|
|
ze_sampler_handle_t *phSampler) = 0;
|
|
virtual ze_result_t getComputeProperties(ze_device_compute_properties_t *pComputeProperties) = 0;
|
|
virtual ze_result_t getP2PProperties(ze_device_handle_t hPeerDevice,
|
|
ze_device_p2p_properties_t *pP2PProperties) = 0;
|
|
virtual ze_result_t getKernelProperties(ze_device_module_properties_t *pKernelProperties) = 0;
|
|
virtual ze_result_t getPciProperties(ze_pci_ext_properties_t *pPciProperties) = 0;
|
|
virtual ze_result_t getMemoryProperties(uint32_t *pCount, ze_device_memory_properties_t *pMemProperties) = 0;
|
|
virtual ze_result_t getMemoryAccessProperties(ze_device_memory_access_properties_t *pMemAccessProperties) = 0;
|
|
virtual ze_result_t getProperties(ze_device_properties_t *pDeviceProperties) = 0;
|
|
virtual ze_result_t getSubDevices(uint32_t *pCount, ze_device_handle_t *phSubdevices) = 0;
|
|
virtual ze_result_t getCacheProperties(uint32_t *pCount, ze_device_cache_properties_t *pCacheProperties) = 0;
|
|
virtual ze_result_t reserveCache(size_t cacheLevel, size_t cacheReservationSize) = 0;
|
|
virtual ze_result_t setCacheAdvice(void *ptr, size_t regionSize, ze_cache_ext_region_t cacheRegion) = 0;
|
|
virtual ze_result_t imageGetProperties(const ze_image_desc_t *desc, ze_image_properties_t *pImageProperties) = 0;
|
|
virtual ze_result_t getDeviceImageProperties(ze_device_image_properties_t *pDeviceImageProperties) = 0;
|
|
virtual ze_result_t getExternalMemoryProperties(ze_device_external_memory_properties_t *pExternalMemoryProperties) = 0;
|
|
virtual ze_result_t getGlobalTimestamps(uint64_t *hostTimestamp, uint64_t *deviceTimestamp) = 0;
|
|
|
|
virtual ze_result_t getCommandQueueGroupProperties(uint32_t *pCount,
|
|
ze_command_queue_group_properties_t *pCommandQueueGroupProperties) = 0;
|
|
virtual ze_result_t getDebugProperties(zet_device_debug_properties_t *pDebugProperties) = 0;
|
|
|
|
virtual ze_result_t systemBarrier() = 0;
|
|
|
|
virtual ~Device() = default;
|
|
|
|
virtual void *getExecEnvironment() = 0;
|
|
virtual BuiltinFunctionsLib *getBuiltinFunctionsLib() = 0;
|
|
virtual uint32_t getMOCS(bool l3enabled, bool l1enabled) = 0;
|
|
virtual uint32_t getMaxNumHwThreads() const = 0;
|
|
|
|
virtual NEO::HwHelper &getHwHelper() = 0;
|
|
bool isImplicitScalingCapable() const {
|
|
return implicitScalingCapable;
|
|
}
|
|
virtual const NEO::HardwareInfo &getHwInfo() const = 0;
|
|
virtual NEO::OSInterface &getOsInterface() = 0;
|
|
virtual uint32_t getPlatformInfo() const = 0;
|
|
virtual MetricDeviceContext &getMetricDeviceContext() = 0;
|
|
virtual DebugSession *getDebugSession(const zet_debug_config_t &config) = 0;
|
|
virtual DebugSession *createDebugSession(const zet_debug_config_t &config, ze_result_t &result) = 0;
|
|
virtual void removeDebugSession() = 0;
|
|
|
|
virtual ze_result_t activateMetricGroupsDeferred(uint32_t count,
|
|
zet_metric_group_handle_t *phMetricGroups) = 0;
|
|
virtual void activateMetricGroups() = 0;
|
|
|
|
virtual DriverHandle *getDriverHandle() = 0;
|
|
virtual void setDriverHandle(DriverHandle *driverHandle) = 0;
|
|
|
|
static Device *fromHandle(ze_device_handle_t handle) { return static_cast<Device *>(handle); }
|
|
|
|
inline ze_device_handle_t toHandle() { return this; }
|
|
|
|
static Device *create(DriverHandle *driverHandle, NEO::Device *neoDevice, bool isSubDevice, ze_result_t *returnValue);
|
|
static Device *create(DriverHandle *driverHandle, NEO::Device *neoDevice, bool isSubDevice, ze_result_t *returnValue, L0::Device *deviceL0);
|
|
static Device *deviceReinit(DriverHandle *driverHandle, L0::Device *device, std::unique_ptr<NEO::Device> &neoDevice, ze_result_t *returnValue);
|
|
|
|
virtual NEO::PreemptionMode getDevicePreemptionMode() const = 0;
|
|
virtual const NEO::DeviceInfo &getDeviceInfo() const = 0;
|
|
NEO::SourceLevelDebugger *getSourceLevelDebugger() { return getNEODevice()->getSourceLevelDebugger(); }
|
|
DebuggerL0 *getL0Debugger() {
|
|
auto debugger = getNEODevice()->getDebugger();
|
|
if (debugger) {
|
|
return !debugger->isLegacy() ? static_cast<DebuggerL0 *>(debugger) : nullptr;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
virtual NEO::GraphicsAllocation *getDebugSurface() const = 0;
|
|
|
|
virtual NEO::GraphicsAllocation *allocateManagedMemoryFromHostPtr(void *buffer,
|
|
size_t size, struct CommandList *commandList) = 0;
|
|
|
|
virtual NEO::GraphicsAllocation *allocateMemoryFromHostPtr(const void *buffer, size_t size, bool hostCopyAllowed) = 0;
|
|
virtual void setSysmanHandle(SysmanDevice *pSysmanDevice) = 0;
|
|
virtual SysmanDevice *getSysmanHandle() = 0;
|
|
virtual ze_result_t getCsrForOrdinalAndIndex(NEO::CommandStreamReceiver **csr, uint32_t ordinal, uint32_t index) = 0;
|
|
virtual ze_result_t getCsrForLowPriority(NEO::CommandStreamReceiver **csr) = 0;
|
|
virtual NEO::GraphicsAllocation *obtainReusableAllocation(size_t requiredSize, NEO::GraphicsAllocation::AllocationType type) = 0;
|
|
virtual void storeReusableAllocation(NEO::GraphicsAllocation &alloc) = 0;
|
|
|
|
protected:
|
|
NEO::Device *neoDevice = nullptr;
|
|
bool implicitScalingCapable = false;
|
|
};
|
|
|
|
} // namespace L0
|