2018-10-02 21:08:23 +08:00
|
|
|
/*
|
2020-02-22 16:28:27 +08:00
|
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
2018-10-02 21:08:23 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-23 05:50:57 +08:00
|
|
|
#include "opencl/source/program/program.h"
|
|
|
|
|
2019-12-01 23:13:21 +08:00
|
|
|
#include "compiler_options.h"
|
|
|
|
|
2018-10-02 21:08:23 +08:00
|
|
|
#include <vector>
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2019-11-27 21:56:48 +08:00
|
|
|
|
2019-12-01 23:13:21 +08:00
|
|
|
const std::vector<ConstStringRef> Program::internalOptionsToExtract = {CompilerOptions::gtpinRera,
|
|
|
|
CompilerOptions::greaterThan4gbBuffersRequired};
|
2019-11-27 21:56:48 +08:00
|
|
|
|
2019-12-01 23:13:21 +08:00
|
|
|
bool Program::isFlagOption(ConstStringRef option) {
|
2019-11-27 21:56:48 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-12-01 23:13:21 +08:00
|
|
|
bool Program::isOptionValueValid(ConstStringRef option, ConstStringRef value) {
|
2019-11-27 21:56:48 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}; // namespace NEO
|