mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 18:25:05 +08:00
Removed: - SourceLevelDebugger (with tests) - DebuggerLibrary - DebuggerLibraryRestore - debuggerSupported field from hwInfo.capabilityTable - HasSourceLevelDebuggerSupport matcher - ExperimentalEnableSourceLevelDebugger debug var - EnableMockSourceLevelDebugger debug var - DebuggerOptDisable debug var - lib_names.h.in file - third_party/source_level_debugger/igfx_debug_interchange_types.h Related-To: NEO-7213 Signed-off-by: Fabian Zwolinski <fabian.zwolinski@intel.com>
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
/*
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/utilities/stackvec.h"
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
namespace NEO {
|
|
|
|
struct DeviceInfo {
|
|
StackVec<size_t, 3> maxSubGroups;
|
|
double profilingTimerResolution;
|
|
uint64_t globalMemSize;
|
|
uint64_t localMemSize;
|
|
uint64_t maxMemAllocSize;
|
|
const char *ilVersion;
|
|
size_t image2DMaxHeight;
|
|
size_t image2DMaxWidth;
|
|
size_t image3DMaxDepth;
|
|
size_t imageMaxArraySize;
|
|
size_t imageMaxBufferSize;
|
|
size_t maxNumEUsPerSubSlice;
|
|
size_t maxNumEUsPerDualSubSlice;
|
|
size_t maxParameterSize;
|
|
size_t maxWorkGroupSize;
|
|
size_t maxWorkItemSizes[3];
|
|
size_t outProfilingTimerResolution;
|
|
size_t outProfilingTimerClock;
|
|
size_t printfBufferSize;
|
|
uint32_t addressBits;
|
|
uint32_t computeUnitsUsedForScratch;
|
|
uint32_t errorCorrectionSupport;
|
|
uint32_t globalMemCachelineSize;
|
|
uint32_t imageSupport;
|
|
uint32_t maxClockFrequency;
|
|
uint32_t maxFrontEndThreads;
|
|
uint32_t maxReadImageArgs;
|
|
uint32_t maxSamplers;
|
|
uint32_t maxWriteImageArgs;
|
|
uint32_t numThreadsPerEU;
|
|
StackVec<uint32_t, 6> threadsPerEUConfigs;
|
|
uint32_t vendorId;
|
|
uint32_t vmeAvcSupportsPreemption;
|
|
bool force32BitAddressess;
|
|
std::string name;
|
|
};
|
|
|
|
} // namespace NEO
|