2018-01-15 18:16:50 +01:00
|
|
|
/*
|
2020-02-22 20:22:14 +01:00
|
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
2018-01-15 18:16:50 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-01-15 18:16:50 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/helpers/hw_info.h"
|
2019-02-27 11:39:32 +01:00
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2019-06-03 09:54:55 +02:00
|
|
|
namespace Extensions {
|
|
|
|
|
constexpr const char *const sharingFormatQuery = "cl_intel_sharing_format_query ";
|
|
|
|
|
}
|
2018-01-15 18:16:50 +01:00
|
|
|
extern const char *deviceExtensionsList;
|
|
|
|
|
|
|
|
|
|
std::string getExtensionsList(const HardwareInfo &hwInfo);
|
|
|
|
|
std::string removeLastSpace(std::string &s);
|
|
|
|
|
std::string convertEnabledExtensionsToCompilerInternalOptions(const char *deviceExtensions);
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|