Files
compute-runtime/opencl/source/program/internal_options.cpp
kamdiedrich d015d3633f Add absolute path to include
Change-Id: Ib0782b4ab8d9a26ec358ecfb57721f4fe8d51b06
2020-02-23 08:47:49 +01:00

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