mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 17:00:59 +08:00
Related-To: NEO-6206 With this commit OpenCL will report cl_khr_integer_dot_product extension in version 2. With all properties enabled. Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
32 lines
883 B
C++
32 lines
883 B
C++
/*
|
|
* Copyright (C) 2018-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "shared/source/utilities/stackvec.h"
|
|
|
|
#include "CL/cl.h"
|
|
|
|
#include <string>
|
|
|
|
using OpenClCFeaturesContainer = StackVec<cl_name_version, 27>;
|
|
|
|
namespace NEO {
|
|
struct HardwareInfo;
|
|
class CompilerProductHelper;
|
|
|
|
namespace Extensions {
|
|
inline constexpr const char *const sharingFormatQuery = "cl_intel_sharing_format_query ";
|
|
}
|
|
|
|
void getOpenclCFeaturesList(const HardwareInfo &hwInfo, OpenClCFeaturesContainer &openclCFeatures, const CompilerProductHelper &compilerProductHelper);
|
|
std::string convertEnabledExtensionsToCompilerInternalOptions(const char *deviceExtensions,
|
|
OpenClCFeaturesContainer &openclCFeatures);
|
|
std::string getOclVersionCompilerInternalOption(unsigned int oclVersion);
|
|
|
|
} // namespace NEO
|