2018-01-16 01:16:50 +08:00
|
|
|
/*
|
2018-09-18 15:11:08 +08:00
|
|
|
* Copyright (C) 2018 Intel Corporation
|
2018-01-16 01:16:50 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-01-16 01:16:50 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace OCLRT {
|
|
|
|
|
|
|
|
extern const char *deviceExtensionsList;
|
|
|
|
|
|
|
|
std::string getExtensionsList(const HardwareInfo &hwInfo);
|
|
|
|
std::string removeLastSpace(std::string &s);
|
|
|
|
std::string convertEnabledExtensionsToCompilerInternalOptions(const char *deviceExtensions);
|
|
|
|
|
|
|
|
} // namespace OCLRT
|