mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

set proper value in method isMatrixMultiplyAccumulateSupported to be consistent with support of extension *matrix_multiply_accumulate* Signed-off-by: Katarzyna Cencelewska <katarzyna.cencelewska@intel.com>
50 lines
1.5 KiB
C++
50 lines
1.5 KiB
C++
/*
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/source/helpers/cl_hw_helper.h"
|
|
#include "opencl/source/helpers/surface_formats.h"
|
|
|
|
namespace NEO {
|
|
|
|
template <typename GfxFamily>
|
|
inline cl_command_queue_capabilities_intel ClHwHelperHw<GfxFamily>::getAdditionalDisabledQueueFamilyCapabilities(EngineGroupType type) const {
|
|
if (type == EngineGroupType::Copy) {
|
|
return CL_QUEUE_CAPABILITY_CREATE_CROSS_QUEUE_EVENTS_INTEL;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
template <typename GfxFamily>
|
|
cl_ulong ClHwHelperHw<GfxFamily>::getKernelPrivateMemSize(const KernelInfo &kernelInfo) const {
|
|
return kernelInfo.kernelDescriptor.kernelAttributes.perHwThreadPrivateMemorySize;
|
|
}
|
|
|
|
template <typename GfxFamily>
|
|
cl_device_feature_capabilities_intel ClHwHelperHw<GfxFamily>::getSupportedDeviceFeatureCapabilities(const HardwareInfo &hwInfo) const {
|
|
return 0;
|
|
}
|
|
|
|
static const std::vector<cl_image_format> redescribeFormats = {
|
|
{CL_R, CL_UNSIGNED_INT8},
|
|
{CL_R, CL_UNSIGNED_INT16},
|
|
{CL_R, CL_UNSIGNED_INT32},
|
|
{CL_RG, CL_UNSIGNED_INT32},
|
|
{CL_RGBA, CL_UNSIGNED_INT32}};
|
|
|
|
template <typename GfxFamily>
|
|
bool ClHwHelperHw<GfxFamily>::isFormatRedescribable(cl_image_format format) const {
|
|
for (const auto &referenceFormat : redescribeFormats) {
|
|
if (referenceFormat.image_channel_data_type == format.image_channel_data_type &&
|
|
referenceFormat.image_channel_order == format.image_channel_order) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
} // namespace NEO
|