mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
Move enable_product.inl to shared
extract api agnostic validators to shared remove not needed opencl includes from neo shared Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:

committed by
Compute-Runtime-Automation

parent
10e4b54986
commit
b1df167632
@ -21,6 +21,7 @@
|
||||
#include "shared/source/helpers/hw_helper.h"
|
||||
#include "shared/source/helpers/hw_info.h"
|
||||
#include "shared/source/helpers/string.h"
|
||||
#include "shared/source/helpers/validators.h"
|
||||
#include "shared/source/os_interface/os_inc_base.h"
|
||||
#include "shared/source/os_interface/os_library.h"
|
||||
|
||||
@ -53,16 +54,6 @@
|
||||
|
||||
namespace NEO {
|
||||
|
||||
template <typename T = void>
|
||||
bool areNotNullptr() {
|
||||
return true;
|
||||
}
|
||||
|
||||
template <typename T, typename... RT>
|
||||
bool areNotNullptr(T t, RT... rt) {
|
||||
return (t != nullptr) && areNotNullptr<RT...>(rt...);
|
||||
}
|
||||
|
||||
CIF::CIFMain *createMainNoSanitize(CIF::CreateCIFMainFunc_t createFunc);
|
||||
|
||||
std::string convertToPascalCase(const std::string &inString) {
|
||||
|
Reference in New Issue
Block a user