2020-09-26 21:34:32 +08:00
|
|
|
/*
|
|
|
|
* 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);
|
2020-12-03 20:50:07 +08:00
|
|
|
bool requiresAdditionalExtensions(const std::string &compileOptions);
|
2020-09-26 21:34:32 +08:00
|
|
|
|
|
|
|
} // namespace NEO
|