28 lines
615 B
C++
28 lines
615 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/source/program/program.h"
|
|
|
|
#include "compiler_options.h"
|
|
|
|
#include <vector>
|
|
|
|
namespace NEO {
|
|
|
|
const std::vector<ConstStringRef> Program::internalOptionsToExtract = {CompilerOptions::gtpinRera,
|
|
CompilerOptions::greaterThan4gbBuffersRequired};
|
|
|
|
bool Program::isFlagOption(ConstStringRef option) {
|
|
return true;
|
|
}
|
|
|
|
bool Program::isOptionValueValid(ConstStringRef option, ConstStringRef value) {
|
|
return false;
|
|
}
|
|
|
|
}; // namespace NEO
|