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>
24 lines
593 B
C++
24 lines
593 B
C++
/*
|
|
* Copyright (C) 2020-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "opencl/extensions/public/cl_ext_private.h"
|
|
|
|
#include "CL/cl.h"
|
|
|
|
#include <cstdint>
|
|
namespace NEO {
|
|
class ClDevice;
|
|
struct ClDeviceInfoParam;
|
|
struct HardwareInfo;
|
|
|
|
namespace ClDeviceHelper {
|
|
void getExtraDeviceInfo(const ClDevice &clDevice, cl_device_info paramName, ClDeviceInfoParam ¶m, const void *&src, size_t &size, size_t &retSize);
|
|
cl_device_feature_capabilities_intel getExtraCapabilities(const HardwareInfo &hwInfo);
|
|
}; // namespace ClDeviceHelper
|
|
} // namespace NEO
|