mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 01:48:50 +08:00
Pass features also with -cl-ext option. Change-Id: I1a1c68b655a2108be51c7d57be771591ee0b14e7 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
29 lines
667 B
C++
29 lines
667 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/helpers/compiler_options_parser.h"
|
|
|
|
#include <cstdint>
|
|
#include <sstream>
|
|
|
|
namespace NEO {
|
|
|
|
const std::string clStdOptionName = "-cl-std=CL";
|
|
|
|
bool requiresOpenClCFeatures(const std::string &compileOptions) {
|
|
auto clStdValuePosition = compileOptions.find(clStdOptionName);
|
|
if (clStdValuePosition == std::string::npos) {
|
|
return false;
|
|
}
|
|
std::stringstream ss{compileOptions.c_str() + clStdValuePosition + clStdOptionName.size()};
|
|
uint32_t majorVersion;
|
|
ss >> majorVersion;
|
|
return (majorVersion >= 3);
|
|
}
|
|
|
|
} // namespace NEO
|