mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
20 lines
334 B
C++
20 lines
334 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace NEO {
|
|
|
|
extern const std::string clStdOptionName;
|
|
|
|
bool requiresOpenClCFeatures(const std::string &compileOptions);
|
|
bool requiresAdditionalExtensions(const std::string &compileOptions);
|
|
|
|
} // namespace NEO
|