mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Related-To: NEO-612 Change-Id: I221f0770ff19b65fd847d802010904646e816f47 Signed-off-by: Hoppe, Mateusz <mateusz.hoppe@intel.com>
25 lines
545 B
C++
25 lines
545 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "runtime/helpers/hw_info.h"
|
|
|
|
#include <string>
|
|
|
|
namespace NEO {
|
|
namespace Extensions {
|
|
constexpr const char *const sharingFormatQuery = "cl_intel_sharing_format_query ";
|
|
}
|
|
extern const char *deviceExtensionsList;
|
|
|
|
std::string getExtensionsList(const HardwareInfo &hwInfo);
|
|
std::string removeLastSpace(std::string &s);
|
|
std::string convertEnabledExtensionsToCompilerInternalOptions(const char *deviceExtensions);
|
|
|
|
} // namespace NEO
|