mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 07:00:17 +08:00
Fix typo
Signed-off-by: Daniel Chabrowski <daniel.chabrowski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
fc4eaa1894
commit
2d92379fe8
@@ -73,7 +73,7 @@ EngineInfo::EngineInfo(Drm *drm, HardwareInfo *hwInfo, const std::vector<EngineC
|
||||
break;
|
||||
}
|
||||
}
|
||||
setSupportedEngiesInfo(hwInfo, computeEngines, bcsInfoMask);
|
||||
setSupportedEnginesInfo(hwInfo, computeEngines, bcsInfoMask);
|
||||
}
|
||||
|
||||
EngineInfo::EngineInfo(Drm *drm, HardwareInfo *hwInfo, uint32_t tileCount, const std::vector<DistanceInfo> &distanceInfos, const std::vector<drm_i915_query_item> &queryItems, const std::vector<EngineCapabilities> &engineInfos)
|
||||
@@ -110,7 +110,7 @@ EngineInfo::EngineInfo(Drm *drm, HardwareInfo *hwInfo, uint32_t tileCount, const
|
||||
}
|
||||
|
||||
BcsInfoMask bcsInfoMask = maxNBitValue(copyEnginesPerTile);
|
||||
setSupportedEngiesInfo(hwInfo, computeEnginesPerTile, bcsInfoMask);
|
||||
setSupportedEnginesInfo(hwInfo, computeEnginesPerTile, bcsInfoMask);
|
||||
}
|
||||
|
||||
const EngineClassInstance *EngineInfo::getEngineInstance(uint32_t tile, aub_stream::EngineType engineType) const {
|
||||
@@ -125,7 +125,7 @@ const EngineClassInstance *EngineInfo::getEngineInstance(uint32_t tile, aub_stre
|
||||
return &iter->second;
|
||||
}
|
||||
|
||||
void EngineInfo::setSupportedEngiesInfo(HardwareInfo *hwInfo, uint32_t numComputeEngines, const BcsInfoMask &bcsInfoMask) {
|
||||
void EngineInfo::setSupportedEnginesInfo(HardwareInfo *hwInfo, uint32_t numComputeEngines, const BcsInfoMask &bcsInfoMask) {
|
||||
auto &ccsInfo = hwInfo->gtSystemInfo.CCSInfo;
|
||||
|
||||
if (numComputeEngines > 0u) {
|
||||
|
||||
@@ -37,7 +37,7 @@ struct EngineInfo {
|
||||
|
||||
protected:
|
||||
static aub_stream::EngineType getBaseCopyEngineType(IoctlHelper *ioctlHelper, uint64_t capabilities);
|
||||
static void setSupportedEngiesInfo(HardwareInfo *hwInfo, uint32_t numComputeEngines, const BcsInfoMask &bcsInfoMask);
|
||||
static void setSupportedEnginesInfo(HardwareInfo *hwInfo, uint32_t numComputeEngines, const BcsInfoMask &bcsInfoMask);
|
||||
|
||||
void assignCopyEngine(aub_stream::EngineType baseEngineType, uint32_t tileId, const EngineClassInstance &engine,
|
||||
BcsInfoMask &bcsInfoMask, uint32_t &numHostLinkCopyEngines, uint32_t &numScaleUpLinkCopyEngines);
|
||||
|
||||
Reference in New Issue
Block a user